Unathi jizixi dress resprite + colorables (and one new variant) (#21232)

After some tajara clothing resprites, I decided I am satisfied with
their sprites, so now I move onto the unathi sprites as they have a
veritable mine of sovlful sprites.

Stuff from the changelog:
> imageadd: "Resprited the unathi jizixi dress, and added a colorable
version of it."
> imageadd: "Added a blank, unpatterned version of the unathi jizixi
dress."
> rscdel: "Removed the ability to change the colors of the jizixi dress
due to a colorable version now existing."

Images, as always, in the details below
Old (current) sprites on the top, new on the bottom.


<details>
<summary>Jizixi dress: </summary>
<img width="2561" height="1025" alt="jizixi comparison"
src="https://github.com/user-attachments/assets/9df5c334-7af6-4f1e-9379-9d3d28c2852c"
/>
</details>


<details>
<summary>New, unpatterned jizixi dress version: </summary>
<img width="1025" height="1025" alt="unpatterned jizixi"
src="https://github.com/user-attachments/assets/54f93e57-db4c-4be9-8f4a-2f472fb87c20"
/>
</details>

<details>
<summary>A few, random, in-game examples of colorable jizixi dress
version (warning: long): </summary>
<img width="640" height="1986" alt="1"
src="https://github.com/user-attachments/assets/9acfa561-20b6-4357-8546-6d795c23176f"
/>
<img width="640" height="1986" alt="2"
src="https://github.com/user-attachments/assets/3ec0e3dd-f0a9-46c0-bd50-d906b4c07c4f"
/>
<img width="640" height="1986" alt="3"
src="https://github.com/user-attachments/assets/3ec61011-fa64-4871-b769-32a9e35bba29"
/>
</details>

And, of course,
Give Yizarius back his planet.
This commit is contained in:
ElorgRHG
2025-08-26 18:59:21 +00:00
committed by GitHub
parent 0eb0459f9c
commit 94a474a162
5 changed files with 96 additions and 10 deletions
@@ -518,6 +518,7 @@ ABSTRACT_TYPE(/datum/gear/accessory/diona)
whitelisted = list(SPECIES_DIONA, SPECIES_DIONA_COEUS)
origin_restriction = list(/singleton/origin_item/origin/viridis_noble)
sort_category = "Xenowear - Diona"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
/datum/gear/uniform/diona/jizixi/New()
..()
@@ -527,8 +528,27 @@ ABSTRACT_TYPE(/datum/gear/accessory/diona)
jizixi["jizixi dress, blue"] = /obj/item/clothing/under/unathi/jizixi/blue
jizixi["jizixi dress, white"] = /obj/item/clothing/under/unathi/jizixi/white
jizixi["jizixi dress, orange"] = /obj/item/clothing/under/unathi/jizixi/orange
jizixi["jizixi dress, black"] = /obj/item/clothing/under/unathi/jizixi/black
gear_tweaks += new /datum/gear_tweak/path(jizixi)
/datum/gear/uniform/diona/jizixi_colorable
display_name = "jizixi dress (colorable)"
path = /obj/item/clothing/under/unathi/jizixi/colorable
whitelisted = list(SPECIES_DIONA, SPECIES_DIONA_COEUS)
sort_category = "Xenowear - Diona"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
/datum/gear/uniform/diona/jizixi_colorable/New()
..()
var/list/jizixi_colorable = list()
jizixi_colorable["jizixi dress, colorable"] = /obj/item/clothing/under/unathi/jizixi/colorable
jizixi_colorable["jizixi dress, pattern 1"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent1
jizixi_colorable["jizixi dress, pattern 2"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent2
jizixi_colorable["jizixi dress, pattern 3"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent3
jizixi_colorable["jizixi dress, pattern 4"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent4
jizixi_colorable["jizixi dress, pattern 5"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent5
gear_tweaks += new /datum/gear_tweak/path(jizixi_colorable)
/datum/gear/accessory/consortium_passport
display_name = "consortium of hieroaetheria passport"
path = /obj/item/clothing/accessory/badge/passport/consortium
@@ -269,6 +269,7 @@
path = /obj/item/clothing/under/unathi/jizixi
whitelisted = list(SPECIES_UNATHI)
sort_category = "Xenowear - Unathi"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
/datum/gear/uniform/unathi/jizixi/New()
..()
@@ -278,8 +279,27 @@
jizixi["jizixi dress, blue"] = /obj/item/clothing/under/unathi/jizixi/blue
jizixi["jizixi dress, white"] = /obj/item/clothing/under/unathi/jizixi/white
jizixi["jizixi dress, orange"] = /obj/item/clothing/under/unathi/jizixi/orange
jizixi["jizixi dress, black"] = /obj/item/clothing/under/unathi/jizixi/black
gear_tweaks += new /datum/gear_tweak/path(jizixi)
/datum/gear/uniform/unathi/jizixi_colorable
display_name = "jizixi dress (colorable)"
path = /obj/item/clothing/under/unathi/jizixi/colorable
whitelisted = list(SPECIES_UNATHI)
sort_category = "Xenowear - Unathi"
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION | GEAR_HAS_ACCENT_COLOR_SELECTION
/datum/gear/uniform/unathi/jizixi_colorable/New()
..()
var/list/jizixi_colorable = list()
jizixi_colorable["jizixi dress, colorable"] = /obj/item/clothing/under/unathi/jizixi/colorable
jizixi_colorable["jizixi dress, pattern 1"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent1
jizixi_colorable["jizixi dress, pattern 2"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent2
jizixi_colorable["jizixi dress, pattern 3"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent3
jizixi_colorable["jizixi dress, pattern 4"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent4
jizixi_colorable["jizixi dress, pattern 5"] = /obj/item/clothing/under/unathi/jizixi/colorable/accent5
gear_tweaks += new /datum/gear_tweak/path(jizixi_colorable)
/datum/gear/uniform/unathi/sashes
display_name = "gyzao sashes"
path = /obj/item/clothing/under/unathi/sashes
+41 -10
View File
@@ -13,26 +13,57 @@
/obj/item/clothing/under/unathi/jizixi
name = "jizixi dress"
desc = "A striking, modern dress typically worn by Moghean women of high birth."
icon_state = "jizixi"
item_state = "jizixi"
icon_state = "jizixi_red"
item_state = "jizixi_red"
build_from_parts = FALSE
has_accents = FALSE
/obj/item/clothing/under/unathi/jizixi/green
icon_state = "jizixi2"
item_state = "jizixi2"
icon_state = "jizixi_green"
item_state = "jizixi_green"
/obj/item/clothing/under/unathi/jizixi/blue
icon_state = "jizixi3"
item_state = "jizixi3"
icon_state = "jizixi_blue"
item_state = "jizixi_blue"
/obj/item/clothing/under/unathi/jizixi/white
icon_state = "jizixi4"
item_state = "jizixi4"
icon_state = "jizixi_white"
item_state = "jizixi_white"
/obj/item/clothing/under/unathi/jizixi/orange
icon_state = "jizixi5"
item_state = "jizixi5"
icon_state = "jizixi_orange"
item_state = "jizixi_orange"
/obj/item/clothing/under/unathi/jizixi/black
icon_state = "jizixi_black"
item_state = "jizixi_black"
/obj/item/clothing/under/unathi/jizixi/colorable
icon_state = "jizixi_colorable"
item_state = "jizixi_colorable"
contained_sprite = TRUE
build_from_parts = TRUE
has_accents = TRUE
/obj/item/clothing/under/unathi/jizixi/colorable/accent1
icon_state = "jizixi_colorable_accent1"
item_state = "jizixi_colorable_accent1"
/obj/item/clothing/under/unathi/jizixi/colorable/accent2
icon_state = "jizixi_colorable_accent2"
item_state = "jizixi_colorable_accent2"
/obj/item/clothing/under/unathi/jizixi/colorable/accent3
icon_state = "jizixi_colorable_accent3"
item_state = "jizixi_colorable_accent3"
/obj/item/clothing/under/unathi/jizixi/colorable/accent4
icon_state = "jizixi_colorable_accent4"
item_state = "jizixi_colorable_accent4"
/obj/item/clothing/under/unathi/jizixi/colorable/accent5
icon_state = "jizixi_colorable_accent5"
item_state = "jizixi_colorable_accent5"
/obj/item/clothing/under/unathi/sashes
name = "gy'zao sashes"