Minor buffs to baby drake spit so it isn't literally useless on simplemobs.

This commit is contained in:
MistakeNot4892
2023-01-28 06:13:01 +11:00
parent 9204ecb118
commit 21c3a4e701

View File

@@ -95,15 +95,15 @@ Field studies suggest analytical abilities on par with some species of cepholapo
/obj/item/projectile/drake_spit/on_hit(atom/target, blocked, def_zone)
// Stun is needed to effectively hunt simplemobs, but it's OP against humans.
if(ishuman(target))
var/mob/living/carbon/human/victim = target
victim.AdjustConfused(max(stun, weaken))
stun = 0
weaken = 0
var/mob/living/carbon/human/victim = target
victim.AdjustConfused(3)
. = ..()
. = ..()
/obj/item/projectile/drake_spit/weak
stun = 0
weaken = 0
stun = 1
weaken = 1
eyeblur = 2
/mob/living/simple_mob/animal/sif/grafadreka/rainbow/setup_colours()