diff --git a/code/WorkInProgress/Mini/customitems.dm b/code/WorkInProgress/Mini/customitems.dm index 3e8c025e27c..3651dc71162 100644 --- a/code/WorkInProgress/Mini/customitems.dm +++ b/code/WorkInProgress/Mini/customitems.dm @@ -7,6 +7,7 @@ var/list/CustomItemList = list( // ckey real_name item path list("skymarshal", "Phillip Oswald", /obj/item/weapon/coin/silver), //Phillip likes to chew on cigars. Just unlit cigars, don't ask me why. Must be a clone thing. (Cigarette machines dispense cigars if they have a coin in them) --SkyMarshal list("spaceman96", "Trenna Seber", /obj/item/weapon/pen/multi), //For Spesss. + list("spaceman96", "Trenna Seber", /obj/item/clothing/suit/storage/labcoat/pink), //For Spesss. list("asanadas", "Book Berner", /obj/item/clothing/under/chameleon/psyche) ) diff --git a/code/game/objects/items/clothing.dm b/code/game/objects/items/clothing.dm index 550c7b13685..1ae417144ea 100644 --- a/code/game/objects/items/clothing.dm +++ b/code/game/objects/items/clothing.dm @@ -349,6 +349,12 @@ THERMAL GLASSES else if(src.icon_state == "labgreen") src.icon_state = "labgreen_open" usr << "You unbutton the labcoat." + if(src.icon_state == "labcoat_pink_open") + src.icon_state = "labcoat_pink" + usr << "You button up the labcoat." + else if(src.icon_state == "labcoat_pink") + src.icon_state = "labcoat_pink_open" + usr << "You unbutton the labcoat." else usr << "Sorry! The suit you're wearing doesn't have buttons!" diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 111d74e0644..36b22c4ac9f 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -41,3 +41,8 @@ name = "Scientist Labcoat" desc = "A suit that protects against minor chemical spills. Has a purple stripe on the shoulder." icon_state = "labcoat_tox_open" + +/obj/item/clothing/suit/storage/labcoat/pink + name = "Pink Labcoat" + desc = "A suit that protects against minor chemical spills. Has a pink stripe down from the shoulders." + icon_state = "labcoat_pink_open" diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 2f70d43f555..a32f3e306c8 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ