Adds colorable hazard vests to the loadout (#19679)

As the changelog says, the first variation just has yellow stripes,
whereas the alternate has both colorable vest _and_ stripes.

![image](https://github.com/user-attachments/assets/87f2b674-645b-4961-8ff4-919cbd0d3f84)

![image](https://github.com/user-attachments/assets/6627d448-013e-432f-afdc-812d14c84c12)
This commit is contained in:
feartheblackout
2024-09-11 18:06:32 +00:00
committed by GitHub
parent b99f7784b2
commit 2651a4191b
4 changed files with 82 additions and 0 deletions
@@ -582,3 +582,15 @@ ABSTRACT_TYPE(/datum/gear/suit/miscellaneous)
description = "A heavy threaded tweed gray jacket. For a different sort of Gentleman."
path = /obj/item/clothing/suit/storage/toggle/wizrobe/gentlecoat
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
/datum/gear/suit/hazard_vest_colorable
display_name = "colorable hazard vest selection"
path = /obj/item/clothing/suit/storage/hazardvest/colorable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
/datum/gear/suit/hazard_vest_colorable/New()
..()
var/list/hazard_vest = list()
hazard_vest["colorable hazard vest"] = /obj/item/clothing/suit/storage/hazardvest/colorable
hazard_vest["colorable hazard vest, alt"] = /obj/item/clothing/suit/storage/hazardvest/colorable/alt
gear_tweaks += new /datum/gear_tweak/path(hazard_vest)