mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-03 14:02:49 +00:00
Minor Painkiller Rework
Added a proper lid for scaling on paracetamol, added in the ability to get high off of painkiller overdoses.
This commit is contained in:
@@ -737,7 +737,11 @@ datum
|
||||
description = "Most probably know this as Tylenol, but this chemical is a mild, simple painkiller."
|
||||
reagent_state = LIQUID
|
||||
color = "#C855DC"
|
||||
overdose = REAGENTS_OVERDOSE
|
||||
overdose = 60
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if (volume > overdose)
|
||||
M.hallucination = max(M.hallucination, 2)
|
||||
|
||||
tramadol
|
||||
name = "Tramadol"
|
||||
@@ -745,7 +749,11 @@ datum
|
||||
description = "A simple, yet effective painkiller."
|
||||
reagent_state = LIQUID
|
||||
color = "#C8A5DC"
|
||||
overdose = REAGENTS_OVERDOSE
|
||||
overdose = 30
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if (volume > overdose)
|
||||
M.hallucination = max(M.hallucination, 2)
|
||||
|
||||
oxycodone
|
||||
name = "Oxycodone"
|
||||
@@ -755,6 +763,12 @@ datum
|
||||
color = "#C805DC"
|
||||
overdose = 20
|
||||
|
||||
on_mob_life(var/mob/living/M as mob)
|
||||
if (volume > overdose)
|
||||
M.druggy = max(M.druggy, 10)
|
||||
M.hallucination = max(M.hallucination, 3)
|
||||
|
||||
|
||||
virus_food
|
||||
name = "Virus Food"
|
||||
id = "virusfood"
|
||||
|
||||
Reference in New Issue
Block a user