Skip to content

Commit

Permalink
nerfs bihexajuline and inaprovaline ods (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
Helg2 authored Aug 21, 2024
1 parent d4400d5 commit 189ef0a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions code/modules/reagents/reagents/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,18 @@
return ..()

/datum/reagent/medicine/inaprovaline/overdose_process(mob/living/L, metabolism)
L.jitter(5) //Overdose causes a spasm
L.Unconscious(40 SECONDS)
L.jitter(2) //Overdose causes a spasm
if(prob(15))
L.Unconscious(rand(5, 25))

/datum/reagent/medicine/inaprovaline/overdose_crit_process(mob/living/L, metabolism)
L.setDrowsyness(L.drowsyness, 20)
if(ishuman(L)) //Critical overdose causes total blackout and heart damage. Too much stimulant
var/mob/living/carbon/human/H = L
var/datum/internal_organ/heart/E = H.get_organ_slot(ORGAN_SLOT_HEART)
E.take_damage(0.5*effect_str, TRUE)
E.take_damage(0.5 * effect_str, TRUE)
if(prob(10))
L.emote(pick("twitch","blink_r","shiver"))
L.emote(pick("twitch", "blink_r", "shiver"))

/datum/reagent/medicine/ryetalyn
name = "Ryetalyn"
Expand Down Expand Up @@ -1322,17 +1323,16 @@
for(var/datum/limb/limb_to_unfix AS in host.limbs)
if(limb_to_unfix.limb_status & (LIMB_BROKEN | LIMB_SPLINTED | LIMB_STABILIZED | LIMB_DESTROYED | LIMB_AMPUTATED))
continue
limb_to_unfix.fracture()
if(prob(15))
limb_to_unfix.fracture()
break


/datum/reagent/medicine/research
name = "Research precursor" //nothing with this subtype should be added to vendors
taste_description = "bitterness"
reagent_state = LIQUID
taste_description = "bitterness"


/datum/reagent/medicine/research/quietus
name = "Quietus"
description = "This is a latent poison, designed to quickly and painlessly kill you in the event that you become unable to fight. Never washes out on it's own, must be purged."
Expand Down

0 comments on commit 189ef0a

Please sign in to comment.