diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm index 3e281b9d148..d45220d1c16 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm @@ -69,6 +69,12 @@ capes["galaxy cape"] = /obj/item/clothing/accessory/poncho/shouldercape/galaxy gear_tweaks += new /datum/gear_tweak/path(capes) +/datum/gear/accessory/qeblak + display_name = "qeblak mantle" + path = /obj/item/clothing/accessory/poncho/shouldercape/qeblak + whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI, SPECIES_DIONA, SPECIES_DIONA_COEUS) + sort_category = "Xenowear - Skrell" + /datum/gear/uniform/skrell display_name = "qeblak ceremonial garment" path = /obj/item/clothing/under/skrell/qeblak diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 22a980aa030..4f3a7bb0476 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -562,6 +562,17 @@ item_state = "galaxycape" overlay_state = "galaxycape" +/obj/item/clothing/accessory/poncho/shouldercape/qeblak + name = "qeblak mantle" + desc = "A mantle denoting the wearer as a member fo the Qeblak faith." + desc_fluff = "This mantle denotes the wearer as a member of the Qeblak faith. \ + It is given to followers after they have completed their coming of age ceremony. \ + The symbol on the back is of a protostar as it transitions into a main sequence star, \ + representing the the wearer becoming an adult." + icon_state = "qeblak_cape" + item_state = "qeblak_cape" + flippable = FALSE + /obj/item/clothing/accessory/poncho/trinary name = "trinary perfection cape" desc = "A brilliant red and brown cape, commonly worn by those who serve the Trinary Perfection." diff --git a/html/changelogs/SkrellMantle.yml b/html/changelogs/SkrellMantle.yml new file mode 100644 index 00000000000..2bc8da6d981 --- /dev/null +++ b/html/changelogs/SkrellMantle.yml @@ -0,0 +1,7 @@ +author: TheGreyWolf & RyverStyx + +delete-after: True + +changes: + - rscadd: "Added the qeblak mantle to the skrell loadout. It is selectable by skrell & diona." + - bugfix: "Fixed the various skrell capes not showing up when worn in the suit slot." diff --git a/icons/mob/suit.dmi b/icons/mob/suit.dmi index 3cda6ad1538..e7e02089e25 100644 Binary files a/icons/mob/suit.dmi and b/icons/mob/suit.dmi differ diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index 4662bc322d0..a66aa834671 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ diff --git a/icons/obj/clothing/ties.dmi b/icons/obj/clothing/ties.dmi index acabba85682..bbf58677d9f 100644 Binary files a/icons/obj/clothing/ties.dmi and b/icons/obj/clothing/ties.dmi differ