diff --git a/code/game/objects/items/clothing.dm b/code/game/objects/items/clothing.dm index 76bdf49d2c0..6aafd6c53a8 100644 --- a/code/game/objects/items/clothing.dm +++ b/code/game/objects/items/clothing.dm @@ -396,6 +396,12 @@ THERMAL GLASSES else if(src.icon_state == "labcoat_cdc") src.icon_state = "labcoat_cdc_open" usr << "You unbutton the labcoat." + else if(src.icon_state == "fr_jacket_open") + src.icon_state = "fr_jacket" + usr << "You button up the labcoat." + else if(src.icon_state == "fr_jacket") + src.icon_state = "fr_jacket_open" + usr << "You unbutton the labcoat." else usr << "Sorry! The suit you're wearing doesn't have buttons!" usr.update_clothing() diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index 5166f2707ed..5a2a9e2a5d5 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -45,3 +45,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/fr_jacket + name = "first responder jacket" + desc = "\"The first moments are the most crucial.\"" + icon_state = "fr_jacket_open" diff --git a/icons/mob/items_lefthand.dmi b/icons/mob/items_lefthand.dmi index 58982d49b64..72fc5b63a39 100644 Binary files a/icons/mob/items_lefthand.dmi and b/icons/mob/items_lefthand.dmi differ diff --git a/icons/mob/items_righthand.dmi b/icons/mob/items_righthand.dmi index 3cd258850ac..4a95e0230b2 100644 Binary files a/icons/mob/items_righthand.dmi and b/icons/mob/items_righthand.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 82413797bc5..5d84e860d3e 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/assemblies.dmi b/icons/obj/assemblies.dmi index 4fc3aab8721..aee76f5e3e6 100644 Binary files a/icons/obj/assemblies.dmi and b/icons/obj/assemblies.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index b24ad5eab2c..d642b66699b 100755 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ