mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-26 01:52:15 +00:00
Adds more vaurca related xenogear loadout options (#6252)
This commit is contained in:
@@ -9,14 +9,14 @@
|
||||
display_name = "mandible garment"
|
||||
path = /obj/item/clothing/mask/breath/vaurca
|
||||
cost = 1
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior",)
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/mask/vaurca_expression
|
||||
display_name = "human expression mask"
|
||||
path = /obj/item/clothing/mask/breath/vaurca/expression
|
||||
cost = 1
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior",)
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/mask/vaurca_expression/New()
|
||||
@@ -27,18 +27,22 @@
|
||||
display_name = "skrell expression mask"
|
||||
path = /obj/item/clothing/mask/breath/vaurca/expression/skrell
|
||||
|
||||
/datum/gear/mask/vaurca_expression/shaper
|
||||
display_name = "shaper helmet"
|
||||
path = /obj/item/clothing/mask/breath/vaurca/shaper
|
||||
|
||||
/datum/gear/cape
|
||||
display_name = "tunnel cloak"
|
||||
path = /obj/item/weapon/storage/backpack/cloak
|
||||
cost = 1
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior",)
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/vaurca_robe
|
||||
display_name = "hive cloak"
|
||||
path = /obj/item/clothing/suit/vaurca
|
||||
cost = 1
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior",)
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/vaurca_robe/New()
|
||||
@@ -49,3 +53,25 @@
|
||||
cloaks["hive cloak, brown and silver"] = /obj/item/clothing/suit/vaurca/brown
|
||||
cloaks["hive cloak, blue and golden"] = /obj/item/clothing/suit/vaurca/blue
|
||||
gear_tweaks += new/datum/gear_tweak/path(cloaks)
|
||||
|
||||
/datum/gear/uniform/vaurca
|
||||
display_name = "vaurca clothes"
|
||||
path = /obj/item/clothing/under/vaurca
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
|
||||
/datum/gear/uniform/vaurca/New()
|
||||
..()
|
||||
gear_tweaks = list(gear_tweak_free_color_choice)
|
||||
|
||||
/datum/gear/suit/vaurca
|
||||
display_name = "shaper robes"
|
||||
path = /obj/item/clothing/suit/vaurca/shaper
|
||||
slot = slot_wear_suit
|
||||
whitelisted = list("Vaurca Worker", "Vaurca Warrior")
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
cost = 1
|
||||
|
||||
/datum/gear/suit/vaurca/New()
|
||||
..()
|
||||
gear_tweaks = list(gear_tweak_free_color_choice)
|
||||
@@ -166,4 +166,12 @@
|
||||
/obj/item/clothing/suit/vaurca/blue
|
||||
desc = "A fashionable robe tailored for nonhuman proportions, this one is blue and golden."
|
||||
icon_state = "robeblue"
|
||||
item_state = "robeblue"
|
||||
item_state = "robeblue"
|
||||
|
||||
/obj/item/clothing/suit/vaurca/shaper
|
||||
name = "shaper robes"
|
||||
desc = "A fashionable robe tailored for nonhuman proportions, this one is blue and golden."
|
||||
icon_state = "shaper_robes"
|
||||
item_state = "shaper_robes"
|
||||
species_restricted = list("Vaurca")
|
||||
|
||||
|
||||
7
code/modules/clothing/under/xenos/vaurca.dm
Normal file
7
code/modules/clothing/under/xenos/vaurca.dm
Normal file
@@ -0,0 +1,7 @@
|
||||
/obj/item/clothing/under/vaurca
|
||||
name = "vaurca clothes"
|
||||
desc = "A vaurcan take on human fashion, these tight fitting clothes buckle snuggly against a carapace."
|
||||
icon = 'icons/obj/vaurca_items.dmi'
|
||||
icon_state = "vaurca_clothes"
|
||||
item_state = "vaurca_clothes"
|
||||
contained_sprite = TRUE
|
||||
Reference in New Issue
Block a user