mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-13 11:43:31 +00:00
33 lines
941 B
Plaintext
33 lines
941 B
Plaintext
/obj/item/clothing/under/vox
|
|
has_sensor = 0
|
|
species_restricted = list(SPECIES_VOX)
|
|
starting_accessories = list(/obj/item/clothing/accessory/storage/vox) // Dont' start with a backback, so free webbing
|
|
flags = PHORONGUARD
|
|
|
|
/obj/item/clothing/under/vox/vox_casual
|
|
name = "alien clothing"
|
|
desc = "This doesn't look very comfortable."
|
|
icon_state = "vox-casual-1"
|
|
item_state = "vox-casual-1"
|
|
body_parts_covered = LEGS
|
|
|
|
/obj/item/clothing/under/vox/vox_robes
|
|
name = "alien robes"
|
|
desc = "Weird and flowing!"
|
|
icon_state = "vox-casual-2"
|
|
item_state = "vox-casual-2"
|
|
|
|
//Vox Accessories
|
|
/obj/item/clothing/accessory/storage/vox
|
|
name = "alien mesh"
|
|
desc = "An alien mesh. Seems to be made up mostly of pockets and writhing flesh."
|
|
icon_state = "webbing-vox"
|
|
|
|
flags = PHORONGUARD
|
|
|
|
slots = 3
|
|
|
|
/obj/item/clothing/accessory/storage/vox/New()
|
|
..()
|
|
hold.max_storage_space = slots * ITEMSIZE_COST_NORMAL
|
|
hold.max_w_class = ITEMSIZE_NORMAL |