mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-23 20:17:15 +01:00
made a smidgen oops, earthsblood exists now too
This commit is contained in:
@@ -40,7 +40,7 @@
|
||||
display_name = "ghost pepper plants"
|
||||
kitchen_tag = "ghostchili"
|
||||
mutants = null
|
||||
chems = list("condensedcapsaicin"list(3,10), "nutriment" = list (1,25))
|
||||
chems = list("condensedcapsaicin" = list (3,10), "nutriment" = list (1,25))
|
||||
|
||||
/datum/seed/chili/ghost/New()
|
||||
..()
|
||||
|
||||
@@ -1501,3 +1501,27 @@
|
||||
metabolism = REM * 0.002
|
||||
overdose = REAGENTS_OVERDOSE * 0.25
|
||||
scannable = 1
|
||||
|
||||
/datum/reagent/earthsblood
|
||||
name = "Earthsblood"
|
||||
id = "earthsblood"
|
||||
description = "A rare plant extract with immense healing and life giving applications. Induces a potent psychoactive state."
|
||||
taste_description = "honey and sunlight"
|
||||
reagent_state = LIQUID
|
||||
color = "#ffb500"
|
||||
overdose = REAGENTS_OVERDOSE * 0.67
|
||||
scannable = 1
|
||||
|
||||
/datum/reagent/earthsblood/affect_blood(var/mob/living/carbon/M, var/alien, var/removed)
|
||||
M.adjustBruteLoss (-3 * removed)
|
||||
M.adjustBurnLoss (-3 * removed)
|
||||
M.adjustOxyLoss(-10 * removed)
|
||||
M.adjustToxLoss(-3 * removed)
|
||||
M.adjustCloneLoss(-1 * removed)
|
||||
M.druggy = max(M.druggy, 20)
|
||||
M.make_jittery (20)
|
||||
M.hallucination = max(M.hallucination, 2)
|
||||
|
||||
/datum/reagent/earthsblood/overdose(var/mob/living/carbon/M, var/alien)
|
||||
..()
|
||||
M.adjustBrainLoss (1.5 * removed) // Your life for your mind...
|
||||
Reference in New Issue
Block a user