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:
Nanai
2013-11-15 19:27:10 -05:00
parent 5cce782c34
commit e87b59f75b

View File

@@ -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"