mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 23:12:36 +00:00
* Modernizing Radiation -- TL;DR: Radiation is now a status effect healed by tox healing, and contamination is removed * Fixing conflicts * Makes it compile, yeet all the RAD armor from everywhere (thanks RegEx!) * Removing more lingering rad armor (woo) * Damnit powerarmors * Bye bye rad collectors! Co-authored-by: Mothblocks <35135081+Mothblocks@users.noreply.github.com> Co-authored-by: GoldenAlpharex <jerego1234@hotmail.com>
19 lines
833 B
Plaintext
19 lines
833 B
Plaintext
/**
|
|
* # Ninja Hood
|
|
*
|
|
* Space ninja's hood. Provides armor and blocks AI tracking.
|
|
*
|
|
* A hood that only exists as a part of space ninja's starting kit. Provides armor equal of space ninja's suit and disallows an AI to track the wearer.
|
|
*
|
|
*/
|
|
/obj/item/clothing/head/helmet/space/space_ninja
|
|
desc = "What may appear to be a simple black garment is in fact a highly sophisticated nano-weave helmet. Standard issue ninja gear."
|
|
name = "ninja hood"
|
|
icon_state = "s-ninja"
|
|
inhand_icon_state = "s-ninja_mask"
|
|
armor = list(MELEE = 40, BULLET = 30, LASER = 20,ENERGY = 15, BOMB = 30, BIO = 30, FIRE = 100, ACID = 100)
|
|
strip_delay = 12
|
|
resistance_flags = LAVA_PROOF | FIRE_PROOF | ACID_PROOF
|
|
blockTracking = TRUE//Roughly the only unique thing about this helmet.
|
|
flags_inv = HIDEEARS|HIDEEYES|HIDEFACE|HIDEHAIR|HIDEFACIALHAIR
|