Adds Srom masks, renames Dreamer mantle (#14024)

This commit is contained in:
Llywelwyn
2022-05-23 12:43:07 +02:00
committed by GitHub
parent c93da67900
commit 39a114c7ec
6 changed files with 71 additions and 3 deletions
@@ -95,7 +95,7 @@
flags = GEAR_HAS_DESC_SELECTION
/datum/gear/head/skrell
display_name = "zipluax mantle"
display_name = "skrell mantle"
path = /obj/item/clothing/head/skrell
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
sort_category = "Xenowear - Skrell"
@@ -151,6 +151,25 @@
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
sort_category = "Xenowear - Skrell"
/datum/gear/mask/skrell/srom
display_name = "srom masks"
path = /obj/item/clothing/mask/skrell
whitelisted = list(SPECIES_SKRELL, SPECIES_SKRELL_AXIORI)
sort_category = "Xenowear - Skrell"
flags = GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
/datum/gear/mask/skrell/srom/New()
..()
var/list/mask = list()
mask["pinhole mask"] = /obj/item/clothing/mask/skrell
mask["skull mask"] = /obj/item/clothing/mask/skrell/skull
mask["weeping mask"] = /obj/item/clothing/mask/skrell/weeping
mask["watcher mask"] = /obj/item/clothing/mask/skrell/watcher
mask["third eye mask"] = /obj/item/clothing/mask/skrell/thirdeye
mask["half mask"] = /obj/item/clothing/mask/skrell/half
mask["horned mask"] = /obj/item/clothing/mask/skrell/horned
gear_tweaks += new /datum/gear_tweak/path(mask)
/datum/gear/ears/skrell/scrunchy
display_name = "tentacle tie"
path = /obj/item/clothing/ears/skrell/scrunchy
+2 -2
View File
@@ -1,6 +1,6 @@
/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."
name = "skrell mantle"
desc = "A mantle used to cover the headtails of a Skrell."
icon = 'icons/obj/contained_items/skrell/dreamer_mantle.dmi'
item_state = "dreamer_mantle"
icon_state = "dreamer_mantle"
@@ -0,0 +1,41 @@
/obj/item/clothing/mask/skrell
name = "pinhole mask"
desc = "Masks used within the Srom to hide the face, whether for cultural or personal reasons."
icon = 'icons/obj/contained_items/skrell/srom_masks.dmi'
icon_state = "pinhole"
item_state = "pinhole"
contained_sprite = TRUE
body_parts_covered = FACE
item_flags = FLEXIBLEMATERIAL
flags_inv = HIDEFACE
sprite_sheets = null
/obj/item/clothing/mask/skrell/skull
name = "skull mask"
icon_state = "skull"
item_state = "skull"
/obj/item/clothing/mask/skrell/weeping
name = "weeping mask"
icon_state = "weeping"
item_state = "weeping"
/obj/item/clothing/mask/skrell/watcher
name = "watcher mask"
icon_state = "watcher"
item_state = "watcher"
/obj/item/clothing/mask/skrell/thirdeye
name = "third eye mask"
icon_state = "third_eye"
item_state = "third_eye"
/obj/item/clothing/mask/skrell/half
name = "half mask"
icon_state = "half"
item_state = "half"
/obj/item/clothing/mask/skrell/horned
name = "horned mask"
icon_state = "horned"
item_state = "horned"