examine text helper list

let's name the chassis something different than the icon state haha
This commit is contained in:
Cactus
2019-08-21 19:00:56 -04:00
parent e2832173a5
commit a95073eaed
@@ -71,3 +71,20 @@
chassis = possible_chassis[choice]
verbs |= /mob/living/proc/hide
update_icon()
//Invert list of the chassis list if you need the name of the chassis but only have the chassis's icon state
/mob/living/silicon/pai
var/list/chassis_names = list(
"repairbot" = "Drone",
"cat" = "Cat",
"mouse" = "Mouse",
"monkey" = "Monkey",
"borgi" = "Corgi",
"fox" = "Fox",
"parrot" = "Parrot",
"rabbit" = "Rabbit",
"bear" = "Bear",
"raccoon" = "Raccoon",
"rat" = "rat",
"panther" = "Panther"
)