mirror of
https://github.com/Sandstorm-Station/Sandstorm-Station-13.git
synced 2026-07-22 13:44:25 +01:00
14 lines
564 B
Plaintext
14 lines
564 B
Plaintext
/datum/quirk/hypnotic_stupor //straight from skyrat
|
|
name = "Hypnotic Stupor"
|
|
desc = "Your prone to episodes of extreme stupor that leaves you extremely suggestible."
|
|
value = 0
|
|
human_only = TRUE
|
|
gain_text = null // Handled by trauma.
|
|
lose_text = null
|
|
medical_record_text = "Patient has an untreatable condition with their brain, wiring them to be extreamly suggestible..."
|
|
|
|
/datum/quirk/hypnotic_stupor/add()
|
|
var/datum/brain_trauma/severe/hypnotic_stupor/T = new()
|
|
var/mob/living/carbon/human/H = quirk_holder
|
|
H.gain_trauma(T, TRAUMA_RESILIENCE_ABSOLUTE)
|