diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index b115d3fad45..903ce2b7ca3 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -14,6 +14,13 @@ path = /obj/item/clothing/accessory/wcoat_rec flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION +/datum/gear/accessory/waistcoat/New() + ..() + var/list/waistcoats = list() + waistcoats["waistcoat"] = /obj/item/clothing/accessory/wcoat_rec + waistcoats["waistcoat, alt"] = /obj/item/clothing/accessory/silversun/wcoat + gear_tweaks += new /datum/gear_tweak/path(waistcoats) + /datum/gear/accessory/chaps display_name = "chaps selection" path = /obj/item/clothing/accessory/chaps diff --git a/code/modules/clothing/under/accessories/shirts.dm b/code/modules/clothing/under/accessories/shirts.dm index d0263bb9520..3c810359d50 100644 --- a/code/modules/clothing/under/accessories/shirts.dm +++ b/code/modules/clothing/under/accessories/shirts.dm @@ -282,6 +282,14 @@ icon_state = "hawaii_red" color = color_rotation(rand(-11,12)*15) +/obj/item/clothing/accessory/silversun/wcoat + name = "waistcoat" + desc = "A slick waistcoat." + icon = 'icons/obj/clothing/ties.dmi' + icon_state = "det_vest" + item_state = "det_vest" + contained_sprite = FALSE + /obj/item/clothing/accessory/university name = "university sweatshirt" desc = "A comfy university sweatshirt. This one is grey." diff --git a/html/changelogs/NewWaistCoat.yml b/html/changelogs/NewWaistCoat.yml new file mode 100644 index 00000000000..09d5ba4d1a1 --- /dev/null +++ b/html/changelogs/NewWaistCoat.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added a new waistcoat to the loadout. It has been combined with the old one under acccesories into a selection." diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index a66aa834671..5454003e319 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index bbf58677d9f..4423aefd1e2 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ