diff --git a/code/modules/client/preference_setup/loadout/items/suit.dm b/code/modules/client/preference_setup/loadout/items/suit.dm index 46cfe6ebe95..d2a14cbdc0f 100644 --- a/code/modules/client/preference_setup/loadout/items/suit.dm +++ b/code/modules/client/preference_setup/loadout/items/suit.dm @@ -81,6 +81,7 @@ l_hoodie["short-sleeved hoodie"] = /obj/item/clothing/suit/storage/hooded/wintercoat/hoodie/short l_hoodie["crop top hoodie"] = /obj/item/clothing/suit/storage/hooded/wintercoat/hoodie/crop l_hoodie["sleeveless hoodie"] = /obj/item/clothing/suit/storage/hooded/wintercoat/hoodie/sleeveless + l_hoodie["sleeveless crop top hoodie"] = /obj/item/clothing/suit/storage/hooded/wintercoat/hoodie/sleeveless_crop gear_tweaks += new /datum/gear_tweak/path(l_hoodie) /datum/gear/suit/mars diff --git a/code/modules/clothing/suits/hoodies.dm b/code/modules/clothing/suits/hoodies.dm index 01c6cb1dfd7..1448bf5843b 100644 --- a/code/modules/clothing/suits/hoodies.dm +++ b/code/modules/clothing/suits/hoodies.dm @@ -323,6 +323,10 @@ icon_state = "hoodie_sleeveless" item_state = "hoodie_sleeveless" +/obj/item/clothing/suit/storage/hooded/wintercoat/hoodie/sleeveless_crop + icon_state = "hoodie_sleeveless_crop" + item_state = "hoodie_sleeveless_crop" + /obj/item/clothing/suit/storage/hooded/wintercoat/konyang name = "konyang village coat" desc = "A highly prized hooded coat with unmatched breathability and insulation. Imported from Konyang, this garment is made with a weave derived from the feathers of indigenous birds." diff --git a/html/changelogs/geeves-sleeveless_crop_top.yml b/html/changelogs/geeves-sleeveless_crop_top.yml new file mode 100644 index 00000000000..f35d3c1d523 --- /dev/null +++ b/html/changelogs/geeves-sleeveless_crop_top.yml @@ -0,0 +1,7 @@ +author: Geeves + +delete-after: True + +changes: + - rscadd: "Added a sleeveless crop top hoodie." + - imageadd: "Tweaked a single pixel on the hoodie south facing sprite to make both sides symmetrical." \ No newline at end of file diff --git a/icons/obj/clothing/hoodies.dmi b/icons/obj/clothing/hoodies.dmi index f0d85809ef8..eae50346b65 100644 Binary files a/icons/obj/clothing/hoodies.dmi and b/icons/obj/clothing/hoodies.dmi differ