Added alternate CMO labcoat which is slightly less blue. Also some test code for implant only weapons, not implemented.

This commit is contained in:
Ren Erthilo
2012-03-23 20:15:24 +00:00
parent 0b71f0337c
commit c4090c0d3d
7 changed files with 21 additions and 1 deletions
+1
View File
@@ -235,6 +235,7 @@ obj/structure/closet/wardrobe/hop/New()
new /obj/item/clothing/suit/bio_suit/cmo(src)
new /obj/item/clothing/head/bio_hood/general(src)
new /obj/item/clothing/suit/storage/labcoat/cmo(src)
new /obj/item/clothing/suit/storage/labcoat/cmoalt(src)
new /obj/item/clothing/shoes/brown(src)
new /obj/item/clothing/under/rank/chief_medical_officer(src)
+6
View File
@@ -322,6 +322,12 @@ THERMAL GLASSES
else if(src.icon_state == "labcoat_cmo")
src.icon_state = "labcoat_cmo_open"
usr << "You unbutton the labcoat."
else if(src.icon_state == "labcoat_cmoalt_open")
src.icon_state = "labcoat_cmoalt"
usr << "You button up the labcoat."
else if(src.icon_state == "labcoat_cmoalt")
src.icon_state = "labcoat_cmoalt_open"
usr << "You unbutton the labcoat."
else if(src.icon_state == "labcoat_gen_open")
src.icon_state = "labcoat_gen"
usr << "You button up the labcoat."