Skip to content

Commit

Permalink
Regular painkiller side effects
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander authored Mar 4, 2024
1 parent c2ca35e commit 7930098
Showing 1 changed file with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1060,10 +1060,11 @@
// Unathi reagents
/datum/reagent/paashe
name = "Paashe Meish Sunn"
description = "An effective natural painkiller, produced from Yeosa'Unathi innate venom. Has similar effect to Tramadol, but features no side effects whatsoever."
description = "An effective natural painkiller, produced from Yeosa'Unathi innate venom. Has similar effect to Tramadol, but doesn't feature any significant side effects."
taste_description = "way too much sweetness"
reagent_state = LIQUID
color = "#aea0c9"
overdose = 30
scannable = 1
metabolism = 0.05
ingest_met = 0.02
Expand All @@ -1079,6 +1080,20 @@
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)
M.add_chemical_effect(CE_SLOWDOWN, 1)
if(prob(1))
M.slurring = max(M.slurring, 10)
if(M.chem_doses[type] > 0.75 * overdose)
M.add_chemical_effect(CE_SLOWDOWN, 1)
if(prob(5))
M.slurring = max(M.slurring, 20)
if(M.chem_doses[type] > overdose)
M.add_chemical_effect(CE_SLOWDOWN, 1)
M.slurring = max(M.slurring, 30)
if(prob(1))
M.Weaken(2)
M.drowsyness = max(M.drowsyness, 5)

/datum/reagent/arhishaap
name = "Arhishaap"
Expand Down

0 comments on commit 7930098

Please sign in to comment.