[Ready] New Mute quirk as well as Paper bin and crayon box to load-outs! - Requested by Suru (#7867)
* Fixing updater * Update negative.dm * Update backpack.dm * Update negative.dm * Update negative.dm
This commit is contained in:
committed by
kevinz000
parent
7e8ba9a23c
commit
889216c8f6
@@ -278,3 +278,21 @@
|
||||
var/mob/living/carbon/human/H = quirk_holder
|
||||
phobia = new
|
||||
H.gain_trauma(phobia, TRAUMA_RESILIENCE_SURGERY)
|
||||
|
||||
/datum/quirk/mute
|
||||
name = "Mute"
|
||||
desc = "Do to some accident caused you or by choice you have no voice to be heard!"
|
||||
value = -2 //HALP MAINTS
|
||||
gain_text = "<span class='danger'>I rather not say...</span>"
|
||||
lose_text = "<span class='notice'>I can speak once more.</span>"
|
||||
medical_record_text = "Patient has an been unable to talk or use there voice."
|
||||
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, "<span class='boldannounce'>Your antagonistic nature has caused your voice to be heard.</span>")
|
||||
qdel(src)
|
||||
|
||||
Reference in New Issue
Block a user