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:
uporotiy
2010-10-19 17:19:38 +00:00
parent a20fb67f63
commit 6752bc066e
7 changed files with 50 additions and 8 deletions

View File

@@ -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()