diff --git a/code/modules/cargo/packs.dm b/code/modules/cargo/packs.dm index 65e6ceb4133..c6fe20a58fb 100644 --- a/code/modules/cargo/packs.dm +++ b/code/modules/cargo/packs.dm @@ -1300,6 +1300,14 @@ crate_type = /obj/structure/closet/crate/secure/plasma dangerous = TRUE +/datum/supply_pack/medical/cmoturtlenecks + name = "Chief Medical Officer Turtlenecks" + desc = "Contains the CMO's turtleneck and turtleneck skirt. Requires CMO access to open." + cost = CARGO_CRATE_VALUE * 2 + access = ACCESS_CMO + contains = list(/obj/item/clothing/under/rank/medical/chief_medical_officer/turtleneck, + /obj/item/clothing/under/rank/medical/chief_medical_officer/turtleneck/skirt) + ////////////////////////////////////////////////////////////////////////////// //////////////////////////// Science ///////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// diff --git a/code/modules/clothing/under/jobs/medical.dm b/code/modules/clothing/under/jobs/medical.dm index 67df648fd44..76f9dd66439 100644 --- a/code/modules/clothing/under/jobs/medical.dm +++ b/code/modules/clothing/under/jobs/medical.dm @@ -19,6 +19,23 @@ dying_key = DYE_REGISTRY_JUMPSKIRT fitted = FEMALE_UNIFORM_TOP +/obj/item/clothing/under/rank/medical/chief_medical_officer/turtleneck + name = "chief medical officer's turtleneck" + desc = "A light blue turtleneck and tan khakis, for a chief medical officer with a superior sense of style." + icon_state = "cmoturtle" + inhand_icon_state = "b_suit" + can_adjust = TRUE + alt_covers_chest = TRUE + +/obj/item/clothing/under/rank/medical/chief_medical_officer/turtleneck/skirt + name = "chief medical officer's turtleneck skirt" + desc = "A light blue turtleneck and tan khaki skirt, for a chief medical officer with a superior sense of style." + icon_state = "cmoturtle_skirt" + inhand_icon_state = "b_suit" + body_parts_covered = CHEST|GROIN|ARMS + dying_key = DYE_REGISTRY_JUMPSKIRT + fitted = FEMALE_UNIFORM_TOP + /obj/item/clothing/under/rank/medical/virologist desc = "It's made of a special fiber that gives special protection against biohazards. It has a virologist rank stripe on it." name = "virologist's jumpsuit" diff --git a/icons/mob/clothing/under/medical.dmi b/icons/mob/clothing/under/medical.dmi index bcb4c9b9cd3..a02517ed889 100644 Binary files a/icons/mob/clothing/under/medical.dmi and b/icons/mob/clothing/under/medical.dmi differ diff --git a/icons/obj/clothing/under/medical.dmi b/icons/obj/clothing/under/medical.dmi index 7c26bf27586..a22a4f03890 100644 Binary files a/icons/obj/clothing/under/medical.dmi and b/icons/obj/clothing/under/medical.dmi differ