mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-30 23:49:21 +01:00
Removes more sleeps from init (#17332)
* splits emotes into original (custom_emote) and automatic (automatic_custom_emote) * no copy paste * immunosuprizine touchup * srcining
This commit is contained in:
@@ -28,18 +28,18 @@
|
||||
A.inflamed = TRUE
|
||||
if(prob(3))
|
||||
to_chat(affected_mob, span_warning("You feel a stabbing pain in your abdomen!"))
|
||||
affected_mob.custom_emote(VISIBLE_MESSAGE, "winces painfully.")
|
||||
affected_mob.automatic_custom_emote(VISIBLE_MESSAGE, "winces painfully.", check_stat = TRUE)
|
||||
affected_mob.Stun(rand(4, 6))
|
||||
affected_mob.adjustToxLoss(1)
|
||||
if(3)
|
||||
if(prob(1))
|
||||
to_chat(affected_mob, span_danger("Your abdomen is a world of pain!"))
|
||||
affected_mob.custom_emote(VISIBLE_MESSAGE, "winces painfully.")
|
||||
affected_mob.automatic_custom_emote(VISIBLE_MESSAGE, "winces painfully.", check_stat = TRUE)
|
||||
affected_mob.Weaken(10)
|
||||
if(prob(1))
|
||||
affected_mob.vomit(95)
|
||||
if(prob(5))
|
||||
to_chat(affected_mob, span_warning("You feel a stabbing pain in your abdomen!"))
|
||||
affected_mob.custom_emote(VISIBLE_MESSAGE, "winces painfully.")
|
||||
affected_mob.automatic_custom_emote(VISIBLE_MESSAGE, "winces painfully.", check_stat = TRUE)
|
||||
affected_mob.Stun(rand(4, 6))
|
||||
affected_mob.adjustToxLoss(2)
|
||||
|
||||
Reference in New Issue
Block a user