From 4fa44a4e94b228fc76cefad2b1735f823d44a850 Mon Sep 17 00:00:00 2001 From: QuoteFox <49098813+quotefox@users.noreply.github.com> Date: Sat, 16 Jan 2021 05:34:42 +0000 Subject: [PATCH] Nerf/Buff to social anxiety, removes silence. for one point, the fact you cannot speak at all.. for 10 whole seconds is to much for 1 point. --- code/datums/traits/negative.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm index 74d6ae0f..4f8ec5f9 100644 --- a/code/datums/traits/negative.dm +++ b/code/datums/traits/negative.dm @@ -366,9 +366,11 @@ var/mob/living/carbon/human/H = quirk_holder if(prob(2 + nearby_people)) H.stuttering = max(3, H.stuttering) - else if(prob(min(3, nearby_people)) && !H.silent) - to_chat(H, "You retreat into yourself. You really don't feel up to talking.") - H.silent = max(10, H.silent) + else if(prob(min(3, nearby_people)) && !H.jitteriness) + if (nearby_people > 3) //4 or more people around you is required for you to panic. + to_chat(H, "You start to panic internally. There are too many people around you!") + H.jitteriness = max(5, H.jitteriness) + H.stuttering = max(3, H.stuttering) else if(prob(0.5) && dumb_thing) to_chat(H, "You think of a dumb thing you said a long time ago and scream internally.") dumb_thing = FALSE //only once per life