diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm index fd73ea9415e8..73afb92bdf80 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm @@ -112,7 +112,8 @@ new /obj/item/clothing/suit/toggle/labcoat/emt(src) new /obj/item/clothing/head/soft/emt(src) new /obj/item/defibrillator/loaded(src) - new /obj/item/clothing/suit/toggle/labcoat/pmedic_jacket(src) + new /obj/item/clothing/suit/toggle/labcoat/emt/green(src) + new /obj/item/clothing/head/soft/emt/green (src) new /obj/item/radio/headset/headset_med(src) new /obj/item/storage/belt/medical(src) diff --git a/code/modules/clothing/head/soft_caps.dm b/code/modules/clothing/head/soft_caps.dm index a87b0f303c56..4b700b9a777e 100644 --- a/code/modules/clothing/head/soft_caps.dm +++ b/code/modules/clothing/head/soft_caps.dm @@ -129,3 +129,10 @@ icon_state = "emtsoft" item_color = "emt" dog_fashion = null + +/obj/item/clothing/head/soft/emt/green + name = "green EMT cap" + desc = "It's a baseball hat with a green color and a reflective cross on the top." + icon_state = "emtgrsoft" + item_color = "emt" + dog_fashion = null diff --git a/code/modules/clothing/suits/labcoat.dm b/code/modules/clothing/suits/labcoat.dm index f05a14dab862..226c9190ba54 100644 --- a/code/modules/clothing/suits/labcoat.dm +++ b/code/modules/clothing/suits/labcoat.dm @@ -24,6 +24,13 @@ icon_state = "labcoat_emt" item_state = "labcoat_cmo" +/obj/item/clothing/suit/toggle/labcoat/emt/green + name = "\improper green EMT's jacket" + desc = "A green jacket with reflective strips for emergency medical technicians." + alternate_worn_icon = 'icons/mob/suit.dmi' //yogs - subtype of labcoat, retains worn sprite + icon_state = "labcoat_emtgr" + item_state = "labcoat_cmo" + /obj/item/clothing/suit/toggle/labcoat/mad name = "\proper The Mad's labcoat" desc = "It makes you look capable of konking someone on the noggin and shooting them into space." diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index 472e6f348032..0fd8c6f87f2b 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index a0f213afe767..fff2d2046a63 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 220cd2bc61d4..ef5dcbe4dfaa 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index eb9a1887f2ac..6475d25cc4e4 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/yogstation/code/modules/clothing/suits/miscellaneous.dm b/yogstation/code/modules/clothing/suits/miscellaneous.dm index 94cc30bbfd09..613c8bea6f6b 100644 --- a/yogstation/code/modules/clothing/suits/miscellaneous.dm +++ b/yogstation/code/modules/clothing/suits/miscellaneous.dm @@ -248,14 +248,6 @@ icon_state = "janitor_coat" item_state = "janitor_item" -/obj/item/clothing/suit/toggle/labcoat/pmedic_jacket - name = "yellow paramedic jacket" - desc = "Bright yellow so people can see you coming from a mile away." - icon = 'yogstation/icons/obj/clothing/suits.dmi' - alternate_worn_icon = 'yogstation/icons/mob/suit.dmi' - icon_state = "pmedic_jacket" - item_state = "pmedic_jacket" - /obj/item/clothing/suit/yogs/detectivecoat name = "detective long coat" desc = "For those detectives that value fashion over function." diff --git a/yogstation/icons/mob/suit.dmi b/yogstation/icons/mob/suit.dmi index c9e75b20e352..92ae0ee05c83 100644 Binary files a/yogstation/icons/mob/suit.dmi and b/yogstation/icons/mob/suit.dmi differ