mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-01-26 09:14:04 +00:00
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:
@@ -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))
|
||||
@@ -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///////
|
||||
|
||||
Reference in New Issue
Block a user