diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 6e8a2fa2060..6f86ecde028 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -97,6 +97,14 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/suit/duster_sleeveless + display_name = "cowboy duster, colorable, sleeveless" + path = /obj/item/clothing/suit/storage/duster/sleeveless + +/datum/gear/suit/duster_sleeveless/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/suit/hazard_vest display_name = "hazard vest selection" path = /obj/item/clothing/suit/storage/hazardvest diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 9518710bf96..dde928f2a7d 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -469,6 +469,13 @@ allowed = list(POCKET_GENERIC, POCKET_EMERGENCY, POCKET_EXPLO) flags_inv = HIDEHOLSTER +/obj/item/clothing/suit/storage/duster/sleeveless + name = "sleeveless duster" + desc = "A duster is a light, loose-fitting long coat. Dusters are meant to protect your clothing from dust and rain. And you know what's cooler than a normal duster? A sleeveless duster! Show off those guns, cowboy. Or cowgirl. Or whatever you identify as." + icon_state = "duster_sleeveless" + blood_overlay_type = "coat" + body_parts_covered = CHEST|LEGS + /obj/item/clothing/suit/storage/toggle/cardigan name = "cardigan" desc = "A cozy cardigan in a classic style." diff --git a/icons/inventory/suit/item.dmi b/icons/inventory/suit/item.dmi index 30a08949cd0..3e40057689e 100644 Binary files a/icons/inventory/suit/item.dmi and b/icons/inventory/suit/item.dmi differ diff --git a/icons/inventory/suit/mob.dmi b/icons/inventory/suit/mob.dmi index 22ba2f46028..d547e4fa37f 100644 Binary files a/icons/inventory/suit/mob.dmi and b/icons/inventory/suit/mob.dmi differ