Skip to content

Commit

Permalink
choke
Browse files Browse the repository at this point in the history
  • Loading branch information
Superlagg committed Jun 27, 2023
1 parent 694a52c commit 68cab57
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions code/modules/reagents/chemistry/reagents/medicine_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1866,19 +1866,21 @@
..()
return TRUE

/datum/reagent/medicine/adrenaline/overdose_process(mob/living/M)
/datum/reagent/medicine/adrenaline/overdose_process(mob/living/carbon/M)
. = ..()
if(!iscarbon(M))
return
if(prob(50))
return
switch(rand(1,9))
switch(rand(1,10))
if(1)
to_chat(M, span_danger("Your legs wont stop shaking!"))
M.confused = clamp(M.confused + 2, 1, 200)
if(2)
to_chat(M, span_danger("Your eyes ache!"))
M.blur_eyes(5)
if(3)
emote("gasp")
M.emote("gasp")
M.losebreath = clamp(M.losebreath + 3, 1, 10)
if(4)
to_chat(M, span_danger("You feel your veins burn!"))
Expand Down

0 comments on commit 68cab57

Please sign in to comment.