Skip to content

Commit

Permalink
probability bump after seeing marines purposefully not seeking treatm…
Browse files Browse the repository at this point in the history
…ent still
  • Loading branch information
zzzmike committed Jul 26, 2023
1 parent 3577575 commit 9c66a52
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(3))
if(prob(4))
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(4))
if(prob(5))
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(5))
if(prob(6))
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 9c66a52

Please sign in to comment.