mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
[MIRROR] More Remote View Fixes (#11886)
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
680c4d1396
commit
95839714c7
@@ -96,22 +96,22 @@
|
||||
if(prob(5))
|
||||
owner.AdjustWeakened(5)
|
||||
if("permanent weakness")
|
||||
owner.weakened = max(owner.weakened,10)
|
||||
owner.SetWeakened(max(owner.weakened,10))
|
||||
if("temporary sleeping")
|
||||
if(prob(5))
|
||||
owner.AdjustSleeping(5)
|
||||
if("permanent sleeping")
|
||||
owner.sleeping = max(owner.sleeping+10,10)
|
||||
owner.SetSleeping(max(owner.sleeping+10,10))
|
||||
if("jittery")
|
||||
if(owner.get_jittery() < 100)
|
||||
owner.make_jittery(100)
|
||||
if("paralysed")
|
||||
owner.paralysis = max(owner.paralysis,10)
|
||||
owner.SetParalysis(max(owner.paralysis,10))
|
||||
if("cough")
|
||||
if(prob(3))
|
||||
owner.emote("cough")
|
||||
if("confusion")
|
||||
owner.confused = max(owner.confused,10)
|
||||
owner.SetConfused(max(owner.confused,10))
|
||||
|
||||
// Proc for setting all this up for GMs
|
||||
|
||||
|
||||
Reference in New Issue
Block a user