diff --git a/code/datums/traits/negative.dm b/code/datums/traits/negative.dm
index da0b811d03..3a104502ef 100644
--- a/code/datums/traits/negative.dm
+++ b/code/datums/traits/negative.dm
@@ -267,14 +267,32 @@
/datum/quirk/phobia
name = "Phobia"
- desc = "You've had a traumatic past, that has scared you for life while dealing with your greatest fear."
+ desc = "You've had a traumatic past, one that has scarred you for life, and cripples you when dealing with your greatest fears."
value = -2 // It can hardstun you. You can be a job that your phobia targets...
- gain_text = "You feel your fears manifest themselfs."
- lose_text = "You feel your fears fade away."
- medical_record_text = "Patient has an extreme or irrational fear of or aversion to something."
+ gain_text = "You begin to tremble as an immeasurable fear grips your mind."
+ lose_text = "Your confidence wipes away the fear that had been plagueing you."
+ medical_record_text = "Patient has an extreme or irrational fear and aversion to an undefined stimuli."
var/datum/brain_trauma/mild/phobia/phobia
-
+
/datum/quirk/phobia/add()
var/mob/living/carbon/human/H = quirk_holder
phobia = new
H.gain_trauma(phobia, TRAUMA_RESILIENCE_SURGERY)
+
+ /datum/quirk/mute
+ name = "Mute"
+ desc = "Due to some accident, medical condition, or simply by choice, you are completely unable to speak."
+
+ value = -2 //HALP MAINTS
+ gain_text = "You find yourself unable to speak!"
+ lose_text = "You feel a growing strength in your vocal chords."
+ medical_record_text = "Functionally mute, patient is unable to use their voice in any capacity."
+ var/datum/brain_trauma/severe/mute
+
+ /datum/quirk/mute/add()
+ var/mob/living/carbon/human/H = quirk_holder
+ H.gain_trauma(mute, TRAUMA_RESILIENCE_SURGERY)
+
+ /datum/quirk/mute/on_process()
+ if(quirk_holder.mind && LAZYLEN(quirk_holder.mind.antag_datums))
+ to_chat(quirk_holder, "Your antagonistic nature has caused your voice to return.")