diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index d259e39a195..86959247ed1 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -14,6 +14,11 @@ cost = 2 flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION +datum/gear/suit/colorvest + display_name = "colorable vest" + path = /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless/colorable + flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/suit/leather display_name = "jacket selection" description = "A selection of jackets." diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index b4bc0e60b05..27e6348ae7a 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -287,6 +287,12 @@ item_state = "brown_jacket_sleeveless" body_parts_covered = UPPER_TORSO +/obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless/colorable + name = "vest" + desc = "A vest made of synthetic fiber." + icon_state = "colored_vest" + item_state = "colored_vest" + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen desc = "A brown leather coat. A corporate logo is proudly displayed on the back." icon_state = "brown_jacket_nt" diff --git a/html/changelogs/ColorVest.yml b/html/changelogs/ColorVest.yml new file mode 100644 index 00000000000..c2803f630ba --- /dev/null +++ b/html/changelogs/ColorVest.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Added a colorable vest to the loadout." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index f0373a5ab87..e735be5d7b3 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/obj/clothing/suits.dmi b/icons/obj/clothing/suits.dmi index d3c49178539..a70beca324e 100644 Binary files a/icons/obj/clothing/suits.dmi and b/icons/obj/clothing/suits.dmi differ