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 10:56:58 +00: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
@@ -14,6 +14,13 @@ ABSTRACT_TYPE(/obj/item/clothing/accessory/armband)
icon_state = "armband_colourable"
item_state = "armband_colourable"
/obj/item/clothing/accessory/armband/colourable/double
name = "double armband"
desc = "A double armband in 16,777,216 designer colours."
icon_state = "armband_colourable_double"
item_state = "armband_colourable_double"
flippable = FALSE
// Colours
/obj/item/clothing/accessory/armband/white
name = "white armband"
@@ -0,0 +1,6 @@
author: SleepyGemmy
delete-after: True
changes:
- rscadd: "Added a colourable double armband."
Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 6.0 KiB