Double Armband (#22316)

adds a colourable double armband.

<img width="128" height="128" alt="image"
src="https://github.com/user-attachments/assets/2ece5e39-5017-4758-af87-ed4dfa5cc75b"
/>
This commit is contained in:
SleepyGemmy
2026-04-26 12:56:58 +02:00
committed by GitHub
parent 61bd113497
commit 9aed55959f
4 changed files with 22 additions and 2 deletions
@@ -34,11 +34,18 @@ ABSTRACT_TYPE(/datum/gear/accessory)
chaps["chaps, black"] = /obj/item/clothing/accessory/chaps/black
gear_tweaks += new /datum/gear_tweak/path(chaps)
/datum/gear/accessory/armband_coloured
display_name = "armband (colourable)"
/datum/gear/accessory/armband_colourable
display_name = "armband selection (colourable)"
path = /obj/item/clothing/accessory/armband/colourable
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/accessory/armband_colourable/New()
..()
var/list/armbands_colourable = list()
armbands_colourable["colourable armband"] = /obj/item/clothing/accessory/armband/colourable
armbands_colourable["colourable armband, double"] = /obj/item/clothing/accessory/armband/colourable/double
gear_tweaks += new /datum/gear_tweak/path(armbands_colourable)
/datum/gear/accessory/armband
display_name = "armband selection"
path = /obj/item/clothing/accessory/armband/white