From eda9677ab2001e71cd7430ddc07eb08614f47cf4 Mon Sep 17 00:00:00 2001 From: "baloh.matevz" Date: Sun, 24 Jun 2012 05:48:05 +0000 Subject: [PATCH] - 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 --- code/datums/diseases/pierrot_throat.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/datums/diseases/pierrot_throat.dm b/code/datums/diseases/pierrot_throat.dm index 2938b2120f..619e0f988a 100644 --- a/code/datums/diseases/pierrot_throat.dm +++ b/code/datums/diseases/pierrot_throat.dm @@ -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 HONK!" if(4) - if(prob(10)) affected_mob.say("HONK!") \ No newline at end of file + if(prob(5)) affected_mob.say( pick( list("HONK!", "Honk!", "Honk.", "Honk?", "Honk!!", "Honk?!", "Honk...") ) ) \ No newline at end of file