diff --git a/code/modules/reagents/chemistry/reagents/drug_reagents.dm b/code/modules/reagents/chemistry/reagents/drug_reagents.dm index 612ccc4b8f744..010dff339c914 100644 --- a/code/modules/reagents/chemistry/reagents/drug_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drug_reagents.dm @@ -570,3 +570,21 @@ M.Jitter(4) M.Dizzy(4) ..() + +/datum/reagent/drug/lavaglitter + name = "Lavaland Glitter" + description = "A chemical formulation of gold and lavaland mushroom extracts that eases muscle pain and tiredness, at the cost of blood toxicity. Mildly addictive." + color = "#dcd910" + trippy = FALSE + chem_flags = CHEMICAL_RNG_GENERAL | CHEMICAL_RNG_FUN | CHEMICAL_RNG_BOTANY + taste_description = "sour sand" + addiction_threshold = 20 + +/datum/reagent/drug/lavaglitter/on_mob_life(mob/living/carbon/M) + var/high_message = pick("You feel tingly.", "You feel like a walk on a warm summer's day.", "You feel like your arms weigh nothing.") + if(prob(5)) + to_chat(M, "[high_message]") + M.adjustStaminaLoss(-12, 0) + M.adjustToxLoss(1, 0) + ..() + . = 1 diff --git a/code/modules/reagents/chemistry/recipes/drugs.dm b/code/modules/reagents/chemistry/recipes/drugs.dm index d60c0da423cbe..767c78b26577e 100644 --- a/code/modules/reagents/chemistry/recipes/drugs.dm +++ b/code/modules/reagents/chemistry/recipes/drugs.dm @@ -54,3 +54,9 @@ results = list(/datum/reagent/drug/ketamine = 3) required_reagents = list(/datum/reagent/medicine/morphine = 3, /datum/reagent/toxin/chloralhydrate = 3, /datum/reagent/toxin/fentanyl = 3, /datum/reagent/medicine/epinephrine =3) required_temp = 370 + +/datum/chemical_reaction/lavaglitter + name = "Lavaland Glitter" + id = /datum/reagent/drug/lavaglitter + results = list(/datum/reagent/drug/lavaglitter = 3) + required_reagents = list (/datum/reagent/gold = 2, /datum/reagent/consumable/entpoly = 1)