diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 00a9918447..e2e6e2b563 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -97,6 +97,12 @@ if("labgreen") src.icon_state = "labgreen_open" usr << "You unbutton the labcoat." + if ("labcoat_black_open") + src.icon_state = "labcoat_black" + usr << "You button up the labcoat." + if ("labcoat_black") + src.icon_state = "labcoat_black_open" + usr << "You unbutton the labcoat." else usr << "You attempt to button-up the velcro on your [src], before promptly realising how silly you are." return diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 0f39af7d0e..57e45c8bba 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -865,6 +865,13 @@ icon_state = "mitlabcoat" item_state = "mitlabcoat" +/obj/item/clothing/suit/storage/labcoat/fluff/epsilon //Devildabeast: Looping Song + name = "e UMi labcoat" + desc = "A suit that protects against minor chemical spills. Has a black stripe on the shoulder. The abbreviation \"e UMi\" is written on the back in bold text." + icon = 'icons/obj/custom_items.dmi' + icon_state = "labcoat_black_open" + item_state = "labcoat_black" + /obj/item/clothing/suit/storage/det_suit/fluff/leatherjack //atomicdog92: Seth Sealis name = "leather jacket" desc = "A black leather coat, popular amongst punks, greasers, and other galactic scum." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 127de82364..be8b3c2b63 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 691e34e194..beae558e4c 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ