mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2025-12-19 22:51:40 +00:00
* Sideports a couple of init unit tests from Neb. * Trying to unfuck initialize logic. * Removing del()s. * Adjusting return values to Initialize(). * Moving some dangerous object logic from obj onto the two types that use it. * Rolling back some init changes and commenting out initialized atom unit test. * this comment formatting is a minor war crime * Removed sleep() from signaler circuit Initialize(). * Additional Init fixes post-rebase. * Uncomments subsystem test since that's passing.
33 lines
952 B
Plaintext
33 lines
952 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/Initialize()
|
|
. = ..()
|
|
hold.max_storage_space = slots * ITEMSIZE_COST_NORMAL
|
|
hold.max_w_class = ITEMSIZE_NORMAL |