brainloss is now only referenced via procs.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@2874 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
rockdtben
2011-12-30 17:47:35 +00:00
parent d203ae189d
commit 5b691f8727
11 changed files with 18 additions and 18 deletions
+5 -5
View File
@@ -23,15 +23,15 @@
if(prob(2))
affected_mob << "\red Your don't feel like yourself."
if(prob(5))
affected_mob.brainloss +=1
affected_mob.adjustBrainLoss(1)
affected_mob.updatehealth()
if(3)
if(prob(2))
affected_mob.emote("stare")
if(prob(2))
affected_mob.emote("drool")
if(prob(10) && affected_mob.brainloss<=98)//shouldn't retard you to death now
affected_mob.brainloss += 2
if(prob(10) && affected_mob.getBrainLoss()<=98)//shouldn't retard you to death now
affected_mob.adjustBrainLoss(2)
affected_mob.updatehealth()
if(prob(2))
affected_mob << "\red Your try to remember something important...but can't."
@@ -50,8 +50,8 @@
affected_mob.updatehealth()
if(prob(2))
affected_mob << "\red Your head hurts." */
if(prob(15) && affected_mob.brainloss<=98) //shouldn't retard you to death now
affected_mob.brainloss +=3
if(prob(15) && affected_mob.getBrainLoss()<=98) //shouldn't retard you to death now
affected_mob.adjustBrainLoss(3)
affected_mob.updatehealth()
if(prob(2))
affected_mob << "\red Strange buzzing fills your head, removing all thoughts."