diff --git a/code/modules/clothing/under/suits.dm b/code/modules/clothing/under/suits.dm index b9f55e695a..7f0ecf3d70 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/purple + name = "purple turtleneck" + icon_state = "turtle_sci" + item_state = "turtle_sci" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/orange + name = "orange turtleneck" + icon_state = "turtle_eng" + item_state = "turtle_eng" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/red + name = "red turtleneck" + icon_state = "turtle_sec" + item_state = "turtle_sec" + can_adjust = FALSE + +/obj/item/clothing/under/suit/turtle/blue + name = "blue 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..022d823291 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/purpleturtle + name = "Purple Turtleneck" + path = /obj/item/clothing/under/suit/turtle/purple + +/datum/gear/uniform/orangeturtle + name = "Orange Turtleneck" + path = /obj/item/clothing/under/suit/turtle/orange + +/datum/gear/uniform/blueturtle + name = "Blue Turtleneck" + path = /obj/item/clothing/under/suit/turtle/blue + +/datum/gear/uniform/redturtle + name = "Red Turtleneck" + path = /obj/item/clothing/under/suit/turtle/red + /datum/gear/uniform/polyjump name = "Polychromic Jumpsuit" path = /obj/item/clothing/under/misc/polyjumpsuit