From 0b5ba212d3bb7c2285b5302989b4dd41a39b99a2 Mon Sep 17 00:00:00 2001 From: Alberyk Date: Sat, 11 May 2019 08:33:50 -0300 Subject: [PATCH] Traumas tweaks (#6384) --- code/datums/brain_damage/mild.dm | 8 +------- code/datums/brain_damage/phobia.dm | 2 +- code/datums/brain_damage/severe.dm | 2 ++ html/changelogs/alberyk-traumas.yml | 7 +++++++ 4 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 html/changelogs/alberyk-traumas.yml diff --git a/code/datums/brain_damage/mild.dm b/code/datums/brain_damage/mild.dm index 1bca9029ba4..f0a72ebeea6 100644 --- a/code/datums/brain_damage/mild.dm +++ b/code/datums/brain_damage/mild.dm @@ -118,7 +118,7 @@ /datum/brain_trauma/mild/concussion/on_life() if(prob(25)) - switch(rand(1,11)) + switch(rand(1,9)) if(1) to_chat(owner, "Your stomach writhes with pain.") owner.vomit() @@ -132,12 +132,6 @@ if(6 to 9) to_chat(owner, "Your tongue feels thick in your mouth.") owner.slurring += 30 - if(10) - to_chat(owner, "You forget for a moment what you were doing.") - owner.Stun(20) - if(11) - to_chat(owner, "You faint.") - owner.Sleeping(80) ..() diff --git a/code/datums/brain_damage/phobia.dm b/code/datums/brain_damage/phobia.dm index 619d10ee1e7..962cf3277ff 100644 --- a/code/datums/brain_damage/phobia.dm +++ b/code/datums/brain_damage/phobia.dm @@ -107,7 +107,7 @@ switch(reaction) if(1) to_chat(owner, "You are paralyzed with fear!") - owner.Stun(15) + owner.Stun(3) owner.Jitter(15) if(2) owner.Jitter(5) diff --git a/code/datums/brain_damage/severe.dm b/code/datums/brain_damage/severe.dm index 0345ab91ac4..bdbdc8d7447 100644 --- a/code/datums/brain_damage/severe.dm +++ b/code/datums/brain_damage/severe.dm @@ -56,6 +56,7 @@ gain_text = "You can't feel your body anymore!" lose_text = "You can feel your limbs again!" cure_type = CURE_SURGERY + can_gain = FALSE /datum/brain_trauma/severe/paralysis/on_life() owner.Weaken(200) @@ -72,6 +73,7 @@ gain_text = "You have a constant feeling of drowsiness..." lose_text = "You feel awake and aware again." cure_type = CURE_HYPNOSIS + can_gain = FALSE /datum/brain_trauma/severe/narcolepsy/on_life() ..() diff --git a/html/changelogs/alberyk-traumas.yml b/html/changelogs/alberyk-traumas.yml new file mode 100644 index 00000000000..7f11ad7d238 --- /dev/null +++ b/html/changelogs/alberyk-traumas.yml @@ -0,0 +1,7 @@ +author: Alberyk + +delete-after: True + +changes: + - tweak: "Reduced the sleeping and stun aspects of some traumas, such as the phobias and the concussion." + - rscdel: "Removed paralysis and narcoleps from the possible traumas selection."