Merge pull request #177 from Azarak/neurotoxin

Re-adds neurotoxin and adds neurosmash
This commit is contained in:
Dahlular
2020-02-01 07:22:22 -07:00
committed by GitHub
4 changed files with 47 additions and 2 deletions
@@ -1373,6 +1373,7 @@ All effects don't start immediately, but rather get worse over time; the rate is
/datum/reagent/consumable/ethanol/neurotoxin
name = "Neurotoxin"
id = "neurotoxin"
description = "A strong neurotoxin that puts the subject into a death-like state."
color = "#2E2E61" // rgb: 46, 46, 97
boozepwr = 50
@@ -1417,6 +1418,26 @@ All effects don't start immediately, but rather get worse over time; the rate is
M.adjustStaminaLoss(10)
..()
/datum/reagent/consumable/ethanol/neurosmash
name = "Neurosmash"
id = "neurosmash"
description = "A mostly safe alcoholic drink for the true daredevils. Do not mix with Neurotoxin."
color = "#2E2E61" // rgb: 46, 46, 97
boozepwr = 60
quality = DRINK_VERYGOOD
taste_description = "a numbing sensation"
glass_icon_state = "neurosmashglass"
glass_name = "Neurosmash"
glass_desc = "A mostly safe alcoholic drink for the true daredevils. Do not mix with Neurotoxin."
/datum/reagent/consumable/ethanol/neurosmash/on_mob_life(mob/living/carbon/M)
if(holder.has_reagent("neurotoxin"))
M.adjustOrganLoss(ORGAN_SLOT_BRAIN, 0.5*REM, 150)
else
M.adjustOrganLoss(ORGAN_SLOT_BRAIN, -1.0*REM, 150)
M.dizziness +=2
..()
/datum/reagent/consumable/ethanol/hippies_delight
name = "Hippie's Delight"
id = "hippiesdelight"