diff --git a/aurorastation.dme b/aurorastation.dme index 6f826e9a913..12f285cbfc3 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1566,6 +1566,7 @@ #include "code\modules\clothing\head\misc_special.dm" #include "code\modules\clothing\head\pilot_helmet.dm" #include "code\modules\clothing\head\soft_caps.dm" +#include "code\modules\clothing\head\xenos\skrell.dm" #include "code\modules\clothing\head\xenos\tajara.dm" #include "code\modules\clothing\head\xenos\unathi.dm" #include "code\modules\clothing\masks\boxing.dm" 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 0a6335d68e9..f7311a22156 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/skrell.dm @@ -87,6 +87,20 @@ sort_category = "Xenowear - Skrell" flags = GEAR_HAS_DESC_SELECTION +/datum/gear/uniform/skrell/slugger + display_name = "prescient republic of the qar wetsuit" + path = /obj/item/clothing/under/skrell/slugger + whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI) + sort_category = "Xenowear - Skrell" + flags = GEAR_HAS_DESC_SELECTION + +/datum/gear/head/skrell + display_name = "zipluax mantle" + path = /obj/item/clothing/head/skrell + whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI) + sort_category = "Xenowear - Skrell" + flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION + /datum/gear/stellascope display_name = "stellascope" path = /obj/item/stellascope diff --git a/code/modules/clothing/head/xenos/skrell.dm b/code/modules/clothing/head/xenos/skrell.dm new file mode 100644 index 00000000000..2ca4dc3a2aa --- /dev/null +++ b/code/modules/clothing/head/xenos/skrell.dm @@ -0,0 +1,9 @@ +/obj/item/clothing/head/skrell + name = "zi'pluax mantle" + desc = "A mantle used to cover the headtails of members of the Zi'Pluax generational fleet." + icon = 'icons/obj/skrell_items.dmi' + item_state = "dreamer_mantle" + icon_state = "dreamer_mantle" + contained_sprite = TRUE + species_restricted = list(BODYTYPE_SKRELL) + flags_inv = BLOCKHAIR \ No newline at end of file diff --git a/code/modules/clothing/under/xenos/skrell.dm b/code/modules/clothing/under/xenos/skrell.dm index 4554f72e505..40c576e234f 100644 --- a/code/modules/clothing/under/xenos/skrell.dm +++ b/code/modules/clothing/under/xenos/skrell.dm @@ -42,6 +42,11 @@ update_icon() usr.update_inv_w_uniform() +/obj/item/clothing/under/skrell/slugger + name = "prescient republic of the qar wetsuit" + desc = "A wetsuit worn by members of Prescient Republic of the Qar generational fleet." + item_state = "slugger_wetsuit" + icon_state = "slugger_wetsuit" // Skrell Ox clothing /obj/item/clothing/under/skrell/ox diff --git a/html/changelogs/llywelwyn-genner-items.yml b/html/changelogs/llywelwyn-genner-items.yml new file mode 100644 index 00000000000..954c3236267 --- /dev/null +++ b/html/changelogs/llywelwyn-genner-items.yml @@ -0,0 +1,7 @@ +author: Llywelwyn + +delete-after: True + +changes: + - rscadd: "Added zi'pluax mantle and prescient republic of the qar wetsuit to Skrell loadout." + - bugfix: "Adds missing sprites when some Skrell items were equipped on ears." diff --git a/icons/obj/skrell_items.dmi b/icons/obj/skrell_items.dmi index 63e5550aa3c..6c6669e4a54 100644 Binary files a/icons/obj/skrell_items.dmi and b/icons/obj/skrell_items.dmi differ