Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nerfs bihexajuline and inaprovaline ods #88

Merged
merged 1 commit into from
Aug 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading