diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index cf1a986d949..2e13510f305 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -484,6 +484,15 @@ inv_hide_flags = HIDETIE|HIDEHOLSTER worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL +/obj/item/clothing/suit/storage/cropped_turtleneck + name = "turtleneck cropped" + desc = "A tastefully cropped turtleneck with added, entirely cosmetic shoulder straps and puffy sleeves. The contradictory elements bring out the wearer's personality, and navel." + icon = 'icons/clothing/suit/misc/turtle_crop.dmi' + icon_state = "turtle_crop" + body_cover_flags = UPPER_TORSO|ARMS|LOWER_TORSO + inv_hide_flags = HIDETIE + worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL + /obj/item/clothing/suit/storage/khaki name = "khaki jacket" desc = "A smooth, clean khaki jacket. It stains instantly. In fact, it looks pre-stained so you don't feel bad when someone inevitably pours a single droplet of schnapps that stays there forever." diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 4849bf8f56b..e7ec13dc7fe 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -2259,6 +2259,16 @@ name = "gray leotard skinsuit" icon_state = "skinsuitfemleo_g" +/obj/item/clothing/under/skinsuit_striped + name = "skinsuit striped" + desc = "A dark skinsuit with white stripe embellishments, covering the contours. The latest in the line of skintight outfits that this crew in particular greatly prefers, to the point they now take up 30% of the sector's demands among NT's facilities." + body_cover_flags = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + icon = 'icons/clothing/uniform/misc/skin_taped.dmi' + icon_state = "skinsuit_taped" + worn_render_flags = WORN_RENDER_SLOT_ONE_FOR_ALL + worn_has_rolldown = UNIFORM_HAS_NO_ROLL + worn_has_rollsleeve = UNIFORM_HAS_NO_ROLL + //Alt Bodysuits /obj/item/clothing/under/bodysuit/alt name = "alternate bodysuit" diff --git a/code/modules/loadout/loadout_suit.dm b/code/modules/loadout/loadout_suit.dm index 16254d72f95..2e1abcdd86c 100644 --- a/code/modules/loadout/loadout_suit.dm +++ b/code/modules/loadout/loadout_suit.dm @@ -544,6 +544,11 @@ name = "Bomj Coat" path = /obj/item/clothing/suit/storage/bomj +/datum/loadout_entry/suit/cropped_turtle + name = "Turtleneck Cropped" + path = /obj/item/clothing/suit/storage/cropped_turtleneck + + /datum/loadout_entry/suit/violetjacket name = "Violet Jacket" path = /obj/item/clothing/suit/storage/violet diff --git a/code/modules/loadout/loadout_uniform.dm b/code/modules/loadout/loadout_uniform.dm index 997bdb8d79f..0817c565038 100644 --- a/code/modules/loadout/loadout_uniform.dm +++ b/code/modules/loadout/loadout_uniform.dm @@ -960,6 +960,10 @@ Swimsuits altbodysuitfem_selection[initial(altbodysuitfem_type.name)] = altbodysuitfem_type tweaks += new/datum/loadout_tweak/path(tim_sort(altbodysuitfem_selection, GLOBAL_PROC_REF(cmp_text_asc))) +/datum/loadout_entry/uniform/skinsuit_striped + name = "Skinsuit Striped" + path = /obj/item/clothing/under/skinsuit_striped + /datum/loadout_entry/uniform/ballet name = "Antheia Tutu" path = /obj/item/clothing/under/ballet diff --git a/icons/clothing/suit/misc/turtle_crop.dmi b/icons/clothing/suit/misc/turtle_crop.dmi new file mode 100644 index 00000000000..55ff2fc5e83 Binary files /dev/null and b/icons/clothing/suit/misc/turtle_crop.dmi differ diff --git a/icons/clothing/uniform/misc/skin_taped.dmi b/icons/clothing/uniform/misc/skin_taped.dmi new file mode 100644 index 00000000000..40595ad63d5 Binary files /dev/null and b/icons/clothing/uniform/misc/skin_taped.dmi differ