Add colorable tajara fancy uniforms (#22332)

Adds loadout entries for colorable variants of the tajaran fancy uniform
and fancy uniform with skirt.

<img width="320" height="1000" alt="kWG2Cynbbm"
src="https://github.com/user-attachments/assets/49d030b9-7bd5-4598-b3df-6139f5c45911"
/>
<img width="320" height="1000" alt="0OiS9w55Mm"
src="https://github.com/user-attachments/assets/3167f319-e89e-48d5-b418-82f5abbd3965"
/>

Sprites are just recolored/grayscaled versions of the existing sprites.

Also, I had to change the default option for the loadout entry because
the accent color button only shows up if the default option has accent
colors.

Also has variants for gold buttons vs silver buttons. I'm told
apparently there's a way to have a third colorable option but I couldn't
find it and I've already spent 5+ hours today working on a character
then PRing this for that character.

I just want blue. I'm sorry (Not really).
This commit is contained in:
SierraKomodo
2026-04-30 00:59:50 +00:00
committed by GitHub
parent 0c719c6b99
commit f8d967ddf9
4 changed files with 86 additions and 2 deletions
@@ -143,14 +143,18 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara)
/datum/gear/uniform/tajara_colorable
display_name = "tajaran uniform and dress selection (colorable)"
description = "A selection of colorable tajaran native uniforms and dresses."
path = /obj/item/clothing/under/dress/tajaran/long
path = /obj/item/clothing/under/tajaran/fancy/colorable
whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI)
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
sort_category = "Xenowear - Tajara"
/datum/gear/uniform/tajara_colorable/New()
..()
var/list/uniform = list()
uniform["fancy uniform"] = /obj/item/clothing/under/tajaran/fancy/colorable
uniform["fancy uniform, silver buttons"] = /obj/item/clothing/under/tajaran/fancy/colorable/silver
uniform["fancy uniform with skirt"] = /obj/item/clothing/under/dress/tajaran/formal/colorable
uniform["fancy uniform with skirt, silver buttons"] = /obj/item/clothing/under/dress/tajaran/formal/colorable/silver
uniform["tajaran long dress"] = /obj/item/clothing/under/dress/tajaran/long
uniform["new kingdom noble clothes"] = /obj/item/clothing/under/tajaran/nka_noble
gear_tweaks += new /datum/gear_tweak/path(uniform)