From bf15b4c30d465c003ddaaa5b7472a67728d81b53 Mon Sep 17 00:00:00 2001 From: zzzmike <85382350+zzzmike@users.noreply.github.com> Date: Sat, 22 Jul 2023 03:52:37 -0700 Subject: [PATCH] since paralyze will be happening more often, lessens duration again to make it less overbearing --- code/modules/mob/living/carbon/xenomorph/Embryo.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/Embryo.dm b/code/modules/mob/living/carbon/xenomorph/Embryo.dm index 31406e5329d0..5ba33f807017 100644 --- a/code/modules/mob/living/carbon/xenomorph/Embryo.dm +++ b/code/modules/mob/living/carbon/xenomorph/Embryo.dm @@ -105,7 +105,7 @@ affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK) affected_mob.visible_message(SPAN_DANGER("[affected_mob] starts shaking uncontrollably!"), \ SPAN_DANGER("You feel something moving inside you! You start shaking uncontrollably!")) - affected_mob.apply_effect(3, PARALYZE) + affected_mob.apply_effect(1, PARALYZE) affected_mob.make_jittery(105) affected_mob.take_limb_damage(1) if(prob(2)) @@ -126,7 +126,7 @@ affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK) affected_mob.visible_message(SPAN_DANGER("\The [affected_mob] starts shaking uncontrollably!"), \ SPAN_DANGER("You feel something moving inside you! You start shaking uncontrollably!")) - affected_mob.apply_effect(4, PARALYZE) + affected_mob.apply_effect(2, PARALYZE) affected_mob.make_jittery(105) affected_mob.take_limb_damage(1) if(4) @@ -142,7 +142,7 @@ affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK) affected_mob.visible_message(SPAN_DANGER("[affected_mob] starts shaking uncontrollably!"), \ SPAN_DANGER("You feel something moving inside you! You start shaking uncontrollably!")) - affected_mob.apply_effect(5, PARALYZE) + affected_mob.apply_effect(3, PARALYZE) affected_mob.make_jittery(105) affected_mob.take_limb_damage(1) if(5)