Skip to content

Commit

Permalink
Some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander committed Apr 12, 2024
1 parent 037cf5b commit 03a2279
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mods/unathi/code/reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
//Medicine
/datum/reagent/paashe
name = "Paashe Meish Sunn"
description = "An effective natural painkiller, produced from Yeosa'Unathi innate venom. Has similar effect to Tramadol, but doesn't feature any significant side effects."
description = "An effective natural painkiller, produced from Yeosa'Unathi innate venom. Has similar effect to a mixture of Tramadol and Synaptizine, but doesn't feature any significant side effects."
taste_description = "way too much sweetness"
reagent_state = LIQUID
color = "#aea0c9"
overdose = 30
var/weakness_modifier = 30
scannable = 1
metabolism = 0.05
ingest_met = 0.02
Expand All @@ -37,15 +37,15 @@
else if(volume < effective_dose)
effectiveness = volume/effective_dose
M.add_chemical_effect(CE_PAINKILLER, pain_power * effectiveness)
if(M.chem_doses[type] > 0.5 * overdose)
if(M.chem_doses[type] > 0.5 * weakness_modifier)
M.add_chemical_effect(CE_SLOWDOWN, 1)
if(prob(1))
M.slurring = max(M.slurring, 10)
if(M.chem_doses[type] > 0.75 * overdose)
if(M.chem_doses[type] > 0.75 * weakness_modifier)
M.add_chemical_effect(CE_SLOWDOWN, 1)
if(prob(5))
M.slurring = max(M.slurring, 20)
if(M.chem_doses[type] > overdose)
if(M.chem_doses[type] > weakness_modifier)
M.add_chemical_effect(CE_SLOWDOWN, 1)
M.slurring = max(M.slurring, 30)
if(prob(1))
Expand Down

0 comments on commit 03a2279

Please sign in to comment.