mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 18:22:39 +00:00
Replaces ugly way of checking for coverage/slots with GinjaNinja32's way.
This commit is contained in:
@@ -91,6 +91,37 @@ var/global/list/endgame_exits = list()
|
||||
var/global/list/endgame_safespawns = list()
|
||||
|
||||
var/global/list/syndicate_access = list(access_maint_tunnels, access_syndicate, access_external_airlocks)
|
||||
|
||||
// Strings which corraspond to bodypart covering flags, useful for outputting what something covers.
|
||||
var/global/list/string_part_flags = list(
|
||||
"head" = HEAD,
|
||||
"face" = FACE,
|
||||
"eyes" = EYES,
|
||||
"upper body" = UPPER_TORSO,
|
||||
"lower body" = LOWER_TORSO,
|
||||
"legs" = LEGS,
|
||||
"feet" = FEET,
|
||||
"arms" = ARMS,
|
||||
"hands" = HANDS
|
||||
)
|
||||
|
||||
// Strings which corraspond to slot flags, useful for outputting what slot something is.
|
||||
var/global/list/string_slot_flags = list(
|
||||
"back" = SLOT_BACK,
|
||||
"face" = SLOT_MASK,
|
||||
"waist" = SLOT_BELT,
|
||||
"ID slot" = SLOT_ID,
|
||||
"ears" = SLOT_EARS,
|
||||
"eyes" = SLOT_EYES,
|
||||
"hands" = SLOT_GLOVES,
|
||||
"head" = SLOT_HEAD,
|
||||
"feet" = SLOT_FEET,
|
||||
"exo slot" = SLOT_OCLOTHING,
|
||||
"body" = SLOT_ICLOTHING,
|
||||
"uniform" = SLOT_TIE,
|
||||
"holster" = SLOT_HOLSTER
|
||||
)
|
||||
|
||||
//////////////////////////
|
||||
/////Initial Building/////
|
||||
//////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user