Skip to content

Commit

Permalink
vampire lurkers no longer "throw it back" after hitting somebody
Browse files Browse the repository at this point in the history
  • Loading branch information
InsaneRed committed May 27, 2024
1 parent 8f3d854 commit 91959fe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -267,14 +267,14 @@

if(iscarbon(hit_target) && !xeno.can_not_harm(hit_target) && hit_target.stat != DEAD)
if(targeted_atom == hit_target) //reward for a direct hit
to_chat(xeno, SPAN_XENOHIGHDANGER("We directly slam [hit_target] with our tail, throwing it back after impaling it on our tail!"))
to_chat(xeno, SPAN_XENOHIGHDANGER("We directly slam [hit_target], knocking them down with our tail!"))
hit_target.apply_armoured_damage(15, ARMOR_MELEE, BRUTE, "chest")
if (hit_target.mob_size < MOB_SIZE_BIG)
hit_target.apply_effect(0.5, WEAKEN)
else
hit_target.apply_effect(0.5, SLOW)
else
to_chat(xeno, SPAN_XENODANGER("We attack [hit_target] with our tail, throwing it back after stabbing it with our tail!"))
to_chat(xeno, SPAN_XENODANGER("We attack [hit_target], slowing them down with our tail!"))
hit_target.apply_effect(0.5, SLOW)
else
xeno.visible_message(SPAN_XENOWARNING("\The [xeno] swipes their tail through the air!"), SPAN_XENOWARNING("We swipe our tail through the air!"))
Expand Down

0 comments on commit 91959fe

Please sign in to comment.