mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
Fixed brainrot.
Started work on beesease. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@324 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
@@ -9,7 +9,7 @@
|
||||
curable = 0
|
||||
cure_chance = 10
|
||||
|
||||
/datum/disease/brainrot/stage_act()
|
||||
/datum/disease/brainrot/stage_act() //Removed toxloss because damaging diseases are pretty horrible. Last round it killed the entire station because the cure didn't work -- Urist
|
||||
..()
|
||||
switch(stage)
|
||||
if(2)
|
||||
@@ -28,25 +28,26 @@
|
||||
if(prob(2))
|
||||
affected_mob.emote("drool")
|
||||
if(prob(10))
|
||||
affected_mob.brainloss += 2
|
||||
if(affected_mob.brainloss<=98) //shouldn't retard you to death now
|
||||
affected_mob.brainloss += 2
|
||||
affected_mob.updatehealth()
|
||||
if(prob(2))
|
||||
affected_mob << "\red Your try to remember something important...but can't."
|
||||
if(prob(10))
|
||||
/* if(prob(10))
|
||||
affected_mob.toxloss +=3
|
||||
affected_mob.updatehealth()
|
||||
if(prob(2))
|
||||
affected_mob << "\red Your head hurts."
|
||||
affected_mob << "\red Your head hurts." */
|
||||
if(4)
|
||||
if(prob(2))
|
||||
affected_mob.emote("stare")
|
||||
if(prob(2))
|
||||
affected_mob.emote("drool")
|
||||
if(prob(15))
|
||||
/* if(prob(15))
|
||||
affected_mob.toxloss +=4
|
||||
affected_mob.updatehealth()
|
||||
if(prob(2))
|
||||
affected_mob << "\red Your head hurts."
|
||||
affected_mob << "\red Your head hurts." */
|
||||
if(prob(15))
|
||||
affected_mob.brainloss +=3
|
||||
affected_mob.updatehealth()
|
||||
|
||||
Reference in New Issue
Block a user