Adds and reorganises a bunch of custom items.

This commit is contained in:
Ren Erthilo
2012-04-29 02:27:02 +01:00
parent 3a5370d2b9
commit 4e07fa527c
14 changed files with 118 additions and 73 deletions
+10 -5
View File
@@ -383,13 +383,18 @@ THERMAL GLASSES
else if(src.icon_state == "labcoat_pink")
src.icon_state = "labcoat_pink_open"
usr << "You unbutton the labcoat."
else if(src.icon_state == "labcoat_sleeve_open")
src.icon_state = "labcoat_sleeve"
else if(src.icon_state == "labcoat_red_open")
src.icon_state = "labcoat_red"
usr << "You button up the labcoat."
else if(src.icon_state == "labcoat_sleeve")
src.icon_state = "labcoat_sleeve_open"
else if(src.icon_state == "labcoat_red")
src.icon_state = "labcoat_red_open"
usr << "You unbutton the labcoat."
else if(src.icon_state == "labcoat_cdc_open")
src.icon_state = "labcoat_cdc"
usr << "You button up the labcoat."
else if(src.icon_state == "labcoat_cdc")
src.icon_state = "labcoat_cdc_open"
usr << "You unbutton the labcoat."
else
usr << "Sorry! The suit you're wearing doesn't have buttons!"
usr.update_clothing()