mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-21 21:10:30 +01:00
Colorable Tajara cloaks and fur scarf (#21085)
Just what the title says, no need for an elaborate description. Images, as always, in details. <details> <summary> Click here for images. </summary> <details> <summary> Colorable gruff cloak: </summary> <img width="368" height="1711" alt="image" src="https://github.com/user-attachments/assets/754c2cb0-4346-402f-b131-f6594eb9a3e3" /> </details> <details> <summary> Colorable fancy cloak: </summary> <img width="410" height="1686" alt="image" src="https://github.com/user-attachments/assets/ae6c0b57-7a4b-46cb-99cc-81d64641dfce" /> </details> <details> <summary> Colorable royal(ist) cloak: </summary> <img width="450" height="1717" alt="image" src="https://github.com/user-attachments/assets/e1c19fb4-f93a-471a-9126-eceaf8616b5f" /> </details> <details> <summary> Colorable amohda cloak: </summary> <img width="384" height="1703" alt="image" src="https://github.com/user-attachments/assets/c83b4b81-3900-4dd5-9e95-4143e21edab2" /> </details> <details> <summary> Colorable fur scarf: </summary> <img width="382" height="1684" alt="image" src="https://github.com/user-attachments/assets/4e451e0d-946e-44e5-b029-0616dc40a738" /> </details> </details> As for attributions, it is current assets but with a colorable palette, so, not needed. And, of course, Suns bless the north.
This commit is contained in:
@@ -748,3 +748,29 @@ ABSTRACT_TYPE(/datum/gear/shoes/tajara)
|
||||
sort_category = "Xenowear - Tajara"
|
||||
whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI)
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/accessory/tajara_colorable_fur_scarf
|
||||
display_name = "fur scarf (colorable)"
|
||||
path = /obj/item/clothing/accessory/tajaran/colorable
|
||||
whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI)
|
||||
sort_category = "Xenowear - Tajara"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/colorable_tajara_cloak
|
||||
display_name = "tajara cloaks selection (colorable)"
|
||||
description = "A selection of colorable tajaran native cloaks."
|
||||
path = /obj/item/clothing/accessory/poncho/tajarancloak/colorable
|
||||
whitelisted = list(SPECIES_TAJARA, SPECIES_TAJARA_ZHAN, SPECIES_TAJARA_MSAI)
|
||||
sort_category = "Xenowear - Tajara"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/colorable_tajara_cloak/New()
|
||||
..()
|
||||
var/list/colorable_cloaks = list()
|
||||
colorable_cloaks["gruff cloak"] = /obj/item/clothing/suit/storage/hooded/tajaran/colorable
|
||||
colorable_cloaks["fancy cloak"] = /obj/item/clothing/accessory/poncho/tajarancloak/colorable
|
||||
colorable_cloaks["fancy cloak (hooded)"] = /obj/item/clothing/suit/storage/hooded/tajaran/colorable/fancy
|
||||
colorable_cloaks["royal cloak"] = /obj/item/clothing/accessory/poncho/tajarancloak/colorable/royal
|
||||
colorable_cloaks["royal cloak (hooded)"] = /obj/item/clothing/suit/storage/hooded/tajaran/colorable/royal
|
||||
colorable_cloaks["amohda cloak"] = /obj/item/clothing/suit/storage/hooded/tajaran/colorable/amohda
|
||||
gear_tweaks += new /datum/gear_tweak/path(colorable_cloaks)
|
||||
|
||||
Reference in New Issue
Block a user