Update neurotoxin.dm

This commit is contained in:
kevinz000
2018-12-08 04:14:36 -08:00
committed by GitHub
parent 1a2a8ec6ae
commit 6ba2d56435
@@ -3,10 +3,12 @@
icon_state = "neurotoxin"
damage = 5
damage_type = TOX
knockdown = 100
/obj/item/projectile/bullet/neurotoxin/on_hit(atom/target, blocked = FALSE)
if(isalien(target))
knockdown = 0
nodamage = TRUE
else if(isliving(target))
var/mob/living/L = target
L.Knockdown(100, override_duration = 30, override_stam = 25)
return ..()