Merge pull request #11977 from kevinz000/xenomorph_balancing_pass

Xenomorph balancing pass
This commit is contained in:
Ghom
2020-04-26 14:03:15 +02:00
committed by GitHub
14 changed files with 33 additions and 20 deletions

View File

@@ -1,8 +1,9 @@
/obj/item/projectile/bullet/neurotoxin
name = "neurotoxin spit"
icon_state = "neurotoxin"
damage = 5
damage = 15
damage_type = TOX
var/stagger_duration = 8 SECONDS
/obj/item/projectile/bullet/neurotoxin/on_hit(atom/target, blocked = FALSE)
if(isalien(target))
@@ -10,5 +11,6 @@
nodamage = TRUE
else if(iscarbon(target))
var/mob/living/L = target
L.DefaultCombatKnockdown(100, TRUE, FALSE, 30, 25)
L.KnockToFloor(TRUE)
L.Stagger(stagger_duration)
return ..()