Traumas tweaks (#6384)

This commit is contained in:
Alberyk
2019-05-11 13:33:50 +02:00
committed by Werner
parent 9e5b158f0b
commit 0b5ba212d3
4 changed files with 11 additions and 8 deletions
+1 -7
View File
@@ -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, "<span class='notice'>Your stomach writhes with pain.</span>")
owner.vomit()
@@ -132,12 +132,6 @@
if(6 to 9)
to_chat(owner, "<span class='notice'>Your tongue feels thick in your mouth.</span>")
owner.slurring += 30
if(10)
to_chat(owner, "<span class='notice'>You forget for a moment what you were doing.</span>")
owner.Stun(20)
if(11)
to_chat(owner, "<span class='warning'>You faint.</span>")
owner.Sleeping(80)
..()
+1 -1
View File
@@ -107,7 +107,7 @@
switch(reaction)
if(1)
to_chat(owner, "<span class='warning'>You are paralyzed with fear!</span>")
owner.Stun(15)
owner.Stun(3)
owner.Jitter(15)
if(2)
owner.Jitter(5)
+2
View File
@@ -56,6 +56,7 @@
gain_text = "<span class='warning'>You can't feel your body anymore!</span>"
lose_text = "<span class='notice'>You can feel your limbs again!</span>"
cure_type = CURE_SURGERY
can_gain = FALSE
/datum/brain_trauma/severe/paralysis/on_life()
owner.Weaken(200)
@@ -72,6 +73,7 @@
gain_text = "<span class='warning'>You have a constant feeling of drowsiness...</span>"
lose_text = "<span class='notice'>You feel awake and aware again.</span>"
cure_type = CURE_HYPNOSIS
can_gain = FALSE
/datum/brain_trauma/severe/narcolepsy/on_life()
..()