TG: brainloss is now only referenced via procs. r2874

This commit is contained in:
Ren Erthilo
2012-03-26 23:20:45 +01:00
parent add06af9fd
commit e6b85575f6
9 changed files with 16 additions and 16 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."