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 ee4da5e04c5..8ec92fa0093 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm @@ -66,6 +66,7 @@ capes["nebula cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nebula capes["nova cape"] = /obj/item/clothing/accessory/poncho/shouldercape/nova capes["galaxy cape"] = /obj/item/clothing/accessory/poncho/shouldercape/galaxy + capes["cosmic cape"] = /obj/item/clothing/accessory/poncho/shouldercape/cosmic gear_tweaks += new /datum/gear_tweak/path(capes) /datum/gear/accessory/qeblak diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 6b29b2c2959..0351b2225ab 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -593,7 +593,7 @@ /obj/item/clothing/accessory/poncho/shouldercape/nova name = "nova cape" - desc = "A heavily decorated cape with emblems on the shoulders. An ornate starry design has been woven into the fabric of it" + desc = "A heavily decorated cape with emblems on the shoulders. An ornate starry design has been woven into the fabric of it." icon_state = "novacape" item_state = "novacape" overlay_state = "novacape" @@ -605,6 +605,13 @@ item_state = "galaxycape" overlay_state = "galaxycape" +/obj/item/clothing/accessory/poncho/shouldercape/cosmic + name = "cosmic cape" + desc = "A heavily decorated cape with emblems on the shoulders. An ornate starry design has been woven into the fabric of it, of constellations and stars visible from Qerrbalak." + icon_state = "cosmiccape" + item_state = "cosmiccape" + overlay_state = "cosmiccape" + /obj/item/clothing/accessory/poncho/shouldercape/qeblak name = "qeblak mantle" desc = "A mantle denoting the wearer as a member fo the Qeblak faith." diff --git a/html/changelogs/DreamySkrell-PR-14543.yml b/html/changelogs/DreamySkrell-PR-14543.yml new file mode 100644 index 00000000000..dbb358a3e53 --- /dev/null +++ b/html/changelogs/DreamySkrell-PR-14543.yml @@ -0,0 +1,6 @@ +author: DreamySkrell + +delete-after: True + +changes: + - rscadd: "Adds new skrell cape (cosmic cape; alternative to star/nova/nebula/galaxy capes already in game)." diff --git a/icons/mob/ties.dmi b/icons/mob/ties.dmi index a1dbe6981d9..1462b188607 100644 Binary files a/icons/mob/ties.dmi and b/icons/mob/ties.dmi differ