Skip to content

Commit

Permalink
after watching tm rounds, it doesn't seem noticeable, so upping paral…
Browse files Browse the repository at this point in the history
…yze chances a little
  • Loading branch information
zzzmike committed Jul 24, 2023
1 parent bf15b4c commit 3577575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions code/modules/mob/living/carbon/xenomorph/Embryo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@

switch(stage)
if(2)
if(prob(1))
if(prob(3))
if(affected_mob.knocked_out < 1)
affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK)
affected_mob.visible_message(SPAN_DANGER("[affected_mob] starts shaking uncontrollably!"), \
Expand All @@ -121,7 +121,7 @@
affected_mob.take_limb_damage(1)
else if(prob(2))
affected_mob.emote("[pick("sneeze", "cough")]")
if(prob(3))
if(prob(4))
if(affected_mob.knocked_out < 1)
affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK)
affected_mob.visible_message(SPAN_DANGER("\The [affected_mob] starts shaking uncontrollably!"), \
Expand All @@ -137,7 +137,7 @@
to_chat(affected_mob, message)
if(prob(50))
affected_mob.emote("scream")
if(prob(4))
if(prob(5))
if(affected_mob.knocked_out < 1)
affected_mob.pain.apply_pain(PAIN_CHESTBURST_WEAK)
affected_mob.visible_message(SPAN_DANGER("[affected_mob] starts shaking uncontrollably!"), \
Expand Down

0 comments on commit 3577575

Please sign in to comment.