Adds Adranol

Adranol fixes jittery, eye_blurry, and confusion, and would be good as a post-resleeving drug. It'd also be the only drug that can actually fix jitteryness, since there is no way to undo that now.
This commit is contained in:
Arokha Sieyes
2017-05-01 16:03:11 -04:00
parent ae96b83098
commit bb2e10151c
3 changed files with 27 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
/datum/reagent/adranol
name = "Adranol"
id = "adranol"
description = "A mild sedative that calms the nerves and relaxes the patient."
taste_description = "milk"
reagent_state = SOLID
color = "#d5e2e5"
overdose = REAGENTS_OVERDOSE
/datum/reagent/adranol/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
if(alien == IS_DIONA)
return
if(M.confused)
M.Confuse(-8*removed)
if(M.eye_blurry)
M.eye_blurry = max(M.eye_blurry - 8*removed, 0)
if(M.jitteriness)
M.make_jittery(max(M.jitteriness - 8*removed,0))

View File

@@ -64,11 +64,14 @@
required_reagents = list("mutagen" = 3, "lipozine" = 2)
result_amount = 5
///////////////////////////////////////////////////////////////////////////////////
/// Other Drugs
/datum/chemical_reaction/adranol
name = "Adranol"
id = "adranol"
result = "adranol"
required_reagents = list("milk" = 2, "hydrogen" = 1, "potassium" = 1)
result_amount = 3
///////////////////////////////
//SLIME CORES BELOW HERE///////