mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-22 05:17:38 +01:00
Bug(Vaurca) Clothes (#14242)
This commit is contained in:
@@ -92,6 +92,30 @@
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/uniform/vaurca_harness
|
||||
display_name = "vaurcan gear harness"
|
||||
description = "A selection of vaurca colored gear harnesses."
|
||||
path = /obj/item/clothing/under/vaurca/gearharness
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
|
||||
|
||||
/datum/gear/uniform/vaurca_harness/New()
|
||||
..()
|
||||
var/list/harness = list()
|
||||
harness["vaurcan gear harness, brown"] = /obj/item/clothing/under/vaurca/gearharness
|
||||
harness["vaurcan gear harness, white"] = /obj/item/clothing/under/vaurca/gearharness/white
|
||||
harness["vaurcan gear harness, black"] = /obj/item/clothing/under/vaurca/gearharness/black
|
||||
gear_tweaks += new /datum/gear_tweak/path(harness)
|
||||
|
||||
/datum/gear/uniform/vaurca_harness_colorable
|
||||
display_name = "vaurcan gear harness (colorable)"
|
||||
description = "A tight-fitting gear harness designed for the Vaurcan form. Mass-produced from equally mass-produced materials."
|
||||
path = /obj/item/clothing/under/vaurca/gearharness/colorable
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/vaurca
|
||||
display_name = "shaper robes"
|
||||
path = /obj/item/clothing/suit/vaurca/shaper
|
||||
@@ -126,6 +150,15 @@
|
||||
shrouds["vaurcan shroud, brown"] = /obj/item/clothing/head/shroud/brown
|
||||
gear_tweaks += new /datum/gear_tweak/path(shrouds)
|
||||
|
||||
/datum/gear/suit/vaurca_shroud_colorable
|
||||
display_name = "vaurcan shroud (colorable)"
|
||||
description = "A selection of vaurca colored shrouds."
|
||||
path = /obj/item/clothing/head/shroud/colorable
|
||||
cost = 1
|
||||
whitelisted = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR)
|
||||
sort_category = "Xenowear - Vaurca"
|
||||
flags = GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/accessory/vaurca_mantle
|
||||
display_name = "vaurcan mantle"
|
||||
path = /obj/item/clothing/accessory/poncho/vaurca
|
||||
|
||||
@@ -4,6 +4,8 @@
|
||||
icon = 'icons/obj/vaurca_items.dmi'
|
||||
icon_state = "vaurca_shoes"
|
||||
item_state = "vaurca_shoes"
|
||||
worn_overlay = "over"
|
||||
build_from_parts = TRUE
|
||||
|
||||
armor = list(
|
||||
melee = ARMOR_MELEE_MINOR
|
||||
@@ -26,6 +28,8 @@
|
||||
contained_sprite = FALSE
|
||||
species_restricted = list(BODYTYPE_VAURCA_BREEDER)
|
||||
sprite_sheets = list(BODYTYPE_VAURCA_BREEDER = 'icons/mob/species/breeder/shoes.dmi')
|
||||
worn_overlay = null
|
||||
build_from_parts = FALSE
|
||||
|
||||
/obj/item/clothing/shoes/vaurca/breeder_klax
|
||||
name = "k'lax representative shoes"
|
||||
@@ -36,6 +40,8 @@
|
||||
contained_sprite = FALSE
|
||||
species_restricted = list(BODYTYPE_VAURCA_BREEDER)
|
||||
sprite_sheets = list(BODYTYPE_VAURCA_BREEDER = 'icons/mob/species/breeder/shoes.dmi')
|
||||
worn_overlay = null
|
||||
build_from_parts = FALSE
|
||||
|
||||
/obj/item/clothing/shoes/vaurca/breeder_cthur
|
||||
name = "c'thur representative shoes"
|
||||
@@ -45,4 +51,6 @@
|
||||
icon_state = "typec_shoes_cthur"
|
||||
contained_sprite = FALSE
|
||||
species_restricted = list(BODYTYPE_VAURCA_BREEDER)
|
||||
sprite_sheets = list(BODYTYPE_VAURCA_BREEDER = 'icons/mob/species/breeder/shoes.dmi')
|
||||
sprite_sheets = list(BODYTYPE_VAURCA_BREEDER = 'icons/mob/species/breeder/shoes.dmi')
|
||||
worn_overlay = null
|
||||
build_from_parts = FALSE
|
||||
@@ -6,3 +6,30 @@
|
||||
item_state = "vaurca_clothes"
|
||||
contained_sprite = TRUE
|
||||
body_parts_covered = UPPER_TORSO|LOWER_TORSO
|
||||
|
||||
/obj/item/clothing/under/vaurca/gearharness
|
||||
name = "brown vaurca harness"
|
||||
desc = "A tight-fitting gear harness designed for the Vaurcan form. Mass-produced from sturdy brown fabric."
|
||||
icon = 'icons/obj/vaurca_items.dmi'
|
||||
icon_state = "harness_brown"
|
||||
item_state = "harness_brown"
|
||||
body_parts_covered = 0
|
||||
species_restricted = list(BODYTYPE_VAURCA, BODYTYPE_VAURCA_WARFORM)
|
||||
|
||||
/obj/item/clothing/under/vaurca/gearharness/white
|
||||
name = "white vaurca harness"
|
||||
desc = "A tight-fitting gear harness designed for the Vaurcan form. Mass-produced from sterile white fabric."
|
||||
icon_state = "harness_white"
|
||||
item_state = "harness_white"
|
||||
|
||||
/obj/item/clothing/under/vaurca/gearharness/black
|
||||
name = "black vaurca harness"
|
||||
desc = "A tight-fitting gear harness designed for the Vaurcan form. Mass-produced from robust black fabric."
|
||||
icon_state = "harness_black"
|
||||
item_state = "harness_black"
|
||||
|
||||
/obj/item/clothing/under/vaurca/gearharness/colorable
|
||||
name = "vaurca harness"
|
||||
desc = "A tight-fitting gear harness designed for the Vaurcan form. Mass-produced from equally mass-produced materials."
|
||||
icon_state = "harness_col"
|
||||
item_state = "harness_col"
|
||||
Reference in New Issue
Block a user