- Nerfed pierrot throat. You will only shout out "Honk" messages if you are at the last stage (stage 4). Made bananas cure pierrot throat with a 75% chance, instead of a 35% chance.

- Fixed the problem where people would get automuted due to pierrot throat.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@3906 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
baloh.matevz
2012-06-24 05:48:05 +00:00
parent 1513e96439
commit eda9677ab2

View File

@@ -4,7 +4,7 @@
spread = "Airborne"
cure = "A whole banana."
cure_id = "banana"
cure_chance = 35
cure_chance = 75
agent = "H0NI<42 Virus"
affected_species = list("Human")
permeability_mod = 0.75
@@ -16,10 +16,10 @@
..()
switch(stage)
if(1)
if(prob(1)) affected_mob << "\red You feel a little silly."
if(prob(10)) affected_mob << "\red You feel a little silly."
if(2)
if(prob(1)) affected_mob.say("HONK!")
if(prob(10)) affected_mob << "\red You start seeing rainbows."
if(3)
if(prob(5)) affected_mob.say("HONK!")
if(prob(10)) affected_mob << "\red Your thoughts are interrupted by a loud <b>HONK!</b>"
if(4)
if(prob(10)) affected_mob.say("HONK!")
if(prob(5)) affected_mob.say( pick( list("HONK!", "Honk!", "Honk.", "Honk?", "Honk!!", "Honk?!", "Honk...") ) )