mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-28 16:53:46 +01:00
b3a0c9a975
- Also adds ABSTRACT and NODROP flags in preparation for removal of canremove and abstract vars. - Sorts some of the setup.dm flags so they're in order. - Replaces 'flags & 2' in policetape.dm with pass_flags & PASSTABLE, should have the same effect.
57 lines
1.9 KiB
Plaintext
57 lines
1.9 KiB
Plaintext
//Contains: Engineering department jumpsuits
|
|
/obj/item/clothing/under/rank/chief_engineer
|
|
desc = "It's a high visibility jumpsuit given to those engineers insane enough to achieve the rank of \"Chief engineer\". It has minor radiation shielding."
|
|
name = "chief engineer's jumpsuit"
|
|
icon_state = "chiefengineer"
|
|
item_state = "g_suit"
|
|
_color = "chief"
|
|
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10)
|
|
flags = ONESIZEFITSALL
|
|
species_fit = list("Vox")
|
|
sprite_sheets = list(
|
|
"Vox" = 'icons/mob/species/vox/uniform.dmi'
|
|
)
|
|
|
|
/obj/item/clothing/under/rank/atmospheric_technician
|
|
desc = "It's a jumpsuit worn by atmospheric technicians."
|
|
name = "atmospheric technician's jumpsuit"
|
|
icon_state = "atmos"
|
|
item_state = "atmos_suit"
|
|
_color = "atmos"
|
|
flags = ONESIZEFITSALL
|
|
species_fit = list("Vox")
|
|
sprite_sheets = list(
|
|
"Vox" = 'icons/mob/species/vox/uniform.dmi'
|
|
)
|
|
|
|
/obj/item/clothing/under/rank/engineer
|
|
desc = "It's an orange high visibility jumpsuit worn by engineers. It has minor radiation shielding."
|
|
name = "engineer's jumpsuit"
|
|
icon_state = "engine"
|
|
item_state = "engi_suit"
|
|
_color = "engine"
|
|
armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10)
|
|
flags = ONESIZEFITSALL
|
|
species_fit = list("Vox")
|
|
sprite_sheets = list(
|
|
"Vox" = 'icons/mob/species/vox/uniform.dmi'
|
|
)
|
|
|
|
/obj/item/clothing/under/rank/roboticist
|
|
desc = "It's a slimming black with reinforced seams; great for industrial work."
|
|
name = "roboticist's jumpsuit"
|
|
icon_state = "robotics"
|
|
item_state = "robotics"
|
|
_color = "robotics"
|
|
flags = ONESIZEFITSALL
|
|
species_fit = list("Vox")
|
|
sprite_sheets = list(
|
|
"Vox" = 'icons/mob/species/vox/uniform.dmi'
|
|
)
|
|
|
|
/obj/item/clothing/under/rank/mechanic
|
|
desc = "It's a pair of overalls worn by mechanics."
|
|
name = "mechanic's overalls"
|
|
icon_state = "mechanic"
|
|
item_state = "mechanic"
|
|
_color = "mechanic" |