diff --git a/_maps/shuttles/independent/independent_rigger.dmm b/_maps/shuttles/independent/independent_rigger.dmm index 15265d30016b..d0334b197e28 100644 --- a/_maps/shuttles/independent/independent_rigger.dmm +++ b/_maps/shuttles/independent/independent_rigger.dmm @@ -1430,7 +1430,7 @@ /obj/item/clothing/shoes/cowboy, /obj/item/clothing/under/rank/security/officer/blueshirt, /obj/item/clothing/glasses/hud/security/sunglasses, -/obj/item/clothing/suit/armor/vest/duster, +/obj/item/clothing/suit/jacket/leather/duster/black, /obj/item/clothing/head/cowboy/sec, /obj/machinery/atmospherics/pipe/manifold/supply/hidden/layer2{ dir = 1 diff --git a/code/modules/client/loadout/loadout_suit.dm b/code/modules/client/loadout/loadout_suit.dm index 217998802d48..8574dfc4734a 100644 --- a/code/modules/client/loadout/loadout_suit.dm +++ b/code/modules/client/loadout/loadout_suit.dm @@ -23,14 +23,14 @@ display_name = "leather jacket" path = /obj/item/clothing/suit/jacket/leather -/datum/gear/suit/jacket/leather/overcoat - display_name = "leather overcoat" - path = /obj/item/clothing/suit/jacket/leather/overcoat - /datum/gear/suit/jacket/leather/duster display_name = "leather duster" path = /obj/item/clothing/suit/jacket/leather/duster +/datum/gear/suit/jacket/leather/duster/black + display_name = "black duster" + path = /obj/item/clothing/suit/jacket/leather/duster/black + /datum/gear/suit/jacket/military display_name = "military jacket" path = /obj/item/clothing/suit/jacket/miljacket diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index a16680353b6f..2b34b9033872 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -76,14 +76,6 @@ item_state = "blueshift" custom_premium_price = 750 -/obj/item/clothing/suit/armor/vest/duster - name = "black duster" - desc = "A long, intimidating black coat. This one is reinforced and ideal for protecting its wearer from rain, sun, dust, and bullets." - icon_state = "armor_duster" - item_state = "duster_sec" - cold_protection = CHEST|GROIN|LEGS|ARMS - heat_protection = CHEST|GROIN|LEGS|ARMS - /obj/item/clothing/suit/armor/hos name = "armored greatcoat" desc = "A greatcoat enhanced with a special alloy for some extra protection and style for those with a commanding presence." diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index f8e8c3f69909..7361341c911b 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -425,6 +425,12 @@ cold_protection = CHEST|GROIN|ARMS|LEGS supports_variations = VOX_VARIATION +/obj/item/clothing/suit/jacket/leather/duster/black + name = "black duster" + desc = "A long, intimidating black coat. Ideal for protecting its wearer from rain, sun, and dust." + icon_state = "duster_black" + item_state = "duster_black" + /obj/item/clothing/suit/jacket/leather/duster/command name = "officer's duster" desc = "A long, supple leather coat. Ideal for protecting its wearer from rain, sun, dust, and paperwork." diff --git a/icons/mob/clothing/suit.dmi b/icons/mob/clothing/suit.dmi index ca1eb949aa40..46225abcdf4c 100644 Binary files a/icons/mob/clothing/suit.dmi and b/icons/mob/clothing/suit.dmi differ diff --git a/icons/mob/clothing/suits/armor.dmi b/icons/mob/clothing/suits/armor.dmi index 4c37ff4d8bff..48cb54754402 100644 Binary files a/icons/mob/clothing/suits/armor.dmi and b/icons/mob/clothing/suits/armor.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index d325c5098a73..d2cada368f28 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ diff --git a/icons/obj/clothing/suits/armor.dmi b/icons/obj/clothing/suits/armor.dmi index 232a2f6ec2bd..ae4afa4fd6a2 100644 Binary files a/icons/obj/clothing/suits/armor.dmi and b/icons/obj/clothing/suits/armor.dmi differ