From d8aa20b4e99e3ab92eb2c46985a948a6ddefb080 Mon Sep 17 00:00:00 2001
From: TheSpaghetti <37235090+TheSpaghetti@users.noreply.github.com>
Date: Sun, 12 Jul 2020 13:11:06 -0400
Subject: [PATCH] Adds monophobia quirk
---
code/datums/traits/negative.dm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index 40b71eec0a..76d2ce9b6b 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -452,3 +452,21 @@ GLOBAL_LIST_EMPTY(family_heirlooms)
mob_trait = TRAIT_COLDBLOODED
gain_text = "You feel cold-blooded."
lose_text = "You feel more warm-blooded."
+
+ /datum/quirk/monophobia
+ name = "Monophobia"
+ desc = "You will become increasingly stressed when not in company of others, triggering panic reactions ranging from sickness to heart attacks.."
+ value = -3 // Might change it to 4.
+ gain_text = "You feel really lonely..."
+ lose_text = "You feel like you could be safe on your own."
+ medical_record_text = "Patient feels sick and distressed when not around other people, leading to potentially lethal levels of stress."
+ var/datum/brain_trauma/severe/monophobia
+
+/datum/quirk/monophobia/post_add()
+ var/mob/living/carbon/human/H = quirk_holder
+ monophobia = new
+ H.gain_trauma(monophobia, TRAUMA_RESILIENCE_ABSOLUTE)
+
+/datum/quirk/monophobia/remove()
+ var/mob/living/carbon/human/H = quirk_holder
+ H?.cure_trauma_type(monophobia, TRAUMA_RESILIENCE_ABSOLUTE)