From 03a2279c61a19b0ab4f9b85e989f217b070bb66e Mon Sep 17 00:00:00 2001 From: UEDCommander Date: Fri, 12 Apr 2024 22:34:18 +0300 Subject: [PATCH] Some fixes --- mods/unathi/code/reagents.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/unathi/code/reagents.dm b/mods/unathi/code/reagents.dm index 2de3ab91fe89c..603b97239c9f6 100644 --- a/mods/unathi/code/reagents.dm +++ b/mods/unathi/code/reagents.dm @@ -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 @@ -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))