Oops I derped again update:

- Forgot the actual Pierrot's Throat file. Readded code and uploaded related file.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@764 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
morikou@gmail.com
2011-01-04 01:35:55 +00:00
parent a233cf5f25
commit edcac60239
3 changed files with 39 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
/datum/disease/pierrot_throat
name = "Pierrot's Throat"
max_stages = 4
spread = "Airborne"
cure = "A whole banana."
cure_id = "banana"
cure_chance = 5
agent = "H0NI<42 Virus"
affected_species = list("Human")
permeability_mod = 0.75
desc = "If left untreated the subject will probably drive others to insanity."
severity = "Medium"
longevity = 400
/datum/disease/pierrot_throat/stage_act()
..()
switch(stage)
if(1)
if(prob(1)) affected_mob << "\red You feel a little silly."
if(2)
if(prob(1)) affected_mob.say("HONK!")
if(3)
if(prob(5)) affected_mob.say("HONK!")
if(4)
if(prob(10)) affected_mob.say("HONK!")