mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-26 17:41:05 +00:00
* Defines damage flags. (#53158) * Defines damage flags. (Hopefully without 50+ commits) Co-authored-by: TemporalOroboros <TemporalOroboros@gmail.com>
16 lines
360 B
Plaintext
16 lines
360 B
Plaintext
/obj/projectile/neurotoxin
|
|
name = "neurotoxin spit"
|
|
icon_state = "neurotoxin"
|
|
damage = 5
|
|
damage_type = TOX
|
|
nodamage = FALSE
|
|
paralyze = 100
|
|
flag = BIO
|
|
impact_effect_type = /obj/effect/temp_visual/impact_effect/neurotoxin
|
|
|
|
/obj/projectile/neurotoxin/on_hit(atom/target, blocked = FALSE)
|
|
if(isalien(target))
|
|
paralyze = 0
|
|
nodamage = TRUE
|
|
return ..()
|