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)