Skip to content

Commit

Permalink
adds glitter
Browse files Browse the repository at this point in the history
  • Loading branch information
RDS88-beeman committed Oct 16, 2024
1 parent 527375a commit 017055c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions code/modules/reagents/chemistry/reagents/drug_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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, "<span class='notice'>[high_message]</span>")
M.adjustStaminaLoss(-12, 0)
M.adjustToxLoss(1, 0)
..()
. = 1
6 changes: 6 additions & 0 deletions code/modules/reagents/chemistry/recipes/drugs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 017055c

Please sign in to comment.