diff --git a/code/modules/clothing/under/suits.dm b/code/modules/clothing/under/suits.dm index b9f55e695a..b3762608ce 100644 --- a/code/modules/clothing/under/suits.dm +++ b/code/modules/clothing/under/suits.dm @@ -138,3 +138,27 @@ icon_state = "greyturtle" item_state = "greyturtle" can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/science + name = "science turtleneck" + icon_state = "turtle_sci" + item_state = "turtle_sci" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/engineering + name = "engineering turtleneck" + icon_state = "turtle_eng" + item_state = "turtle_eng" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/security + name = "security turtleneck" + icon_state = "turtle_sec" + item_state = "turtle_sec" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/medical + name = "medical turtleneck" + icon_state = "turtle_med" + item_state = "turtle_med" + can_adjust = FALSE diff --git a/icons/mob/clothing/uniform.dmi b/icons/mob/clothing/uniform.dmi index 325f04cede..f2611b3ab7 100644 Binary files a/icons/mob/clothing/uniform.dmi and b/icons/mob/clothing/uniform.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi index 4ad3d4124f..6171e032dd 100644 Binary files a/icons/obj/clothing/uniforms.dmi and b/icons/obj/clothing/uniforms.dmi differ diff --git a/modular_citadel/code/modules/client/loadout/uniform.dm b/modular_citadel/code/modules/client/loadout/uniform.dm index 1484f257a4..96eb2201ef 100644 --- a/modular_citadel/code/modules/client/loadout/uniform.dm +++ b/modular_citadel/code/modules/client/loadout/uniform.dm @@ -236,6 +236,22 @@ name = "Grey Turtleneck" path = /obj/item/clothing/under/suit/turtle/grey +/datum/gear/uniform/sciturtle + name = "Science Turtleneck" + path = /obj/item/clothing/under/suit/turtle/science + +/datum/gear/uniform/engturtle + name = "Engineering Turtleneck" + path = /obj/item/clothing/under/suit/turtle/engineering + +/datum/gear/uniform/medturtle + name = "Medical Turtleneck" + path = /obj/item/clothing/under/suit/turtle/medical + +/datum/gear/uniform/secturtle + name = "Security Turtleneck" + path = /obj/item/clothing/under/suit/turtle/security + /datum/gear/uniform/polyjump name = "Polychromic Jumpsuit" path = /obj/item/clothing/under/misc/polyjumpsuit