Chem Adjustments, Fixes, and Additions (#8554)

This commit is contained in:
Doxxmedearly
2020-04-01 23:34:28 +02:00
committed by GitHub
parent bc4c8b2dbc
commit 131baa9674
19 changed files with 99 additions and 149 deletions
@@ -117,7 +117,7 @@
/datum/medical_effect/cramps
name = "Cramps"
triggers = list("dylovene" = 30, "tramadol" = 15)
cures = list("inaprovaline")
cures = list("norepinephrine")
cure_message = "The cramps let up..."
/datum/medical_effect/cramps/on_life(mob/living/carbon/human/H, strength)
@@ -135,7 +135,7 @@
/datum/medical_effect/itch
name = "Itch"
triggers = list("space_drugs" = 10)
cures = list("inaprovaline")
cures = list("norepinephrine")
cure_message = "The itching stops..."
/datum/medical_effect/itch/on_life(mob/living/carbon/human/H, strength)
@@ -117,7 +117,7 @@
/datum/medical_effect/cramps
name = "Cramps"
triggers = list("dylovene" = 30, "tramadol" = 15)
cures = list("inaprovaline")
cures = list("norepinephrine")
cure_message = "The cramps let up..."
/datum/medical_effect/cramps/on_life(mob/living/carbon/human/H, strength)
@@ -135,7 +135,7 @@
/datum/medical_effect/itch
name = "Itch"
triggers = list("space_drugs" = 10)
cures = list("inaprovaline")
cures = list("norepinephrine")
cure_message = "The itching stops..."
/datum/medical_effect/itch/on_life(mob/living/carbon/human/H, strength)
@@ -205,7 +205,7 @@
to_chat(src, span("warning", "You don't have enough chemicals!"))
return
var/chem = input("Select a chemical to secrete.", "Chemicals") as null|anything in list("Inaprovaline", "Norepinephrine", "Bicaridine", "Kelotane", "Dylovene", "Hyperzine", "Peridaxon", "Tramadol", "Fluvoxamine")
var/chem = input("Select a chemical to secrete.", "Chemicals") as null|anything in list("Norepinephrine", "Bicaridine", "Kelotane", "Dylovene", "Hyperzine", "Peridaxon", "Tramadol", "Fluvoxamine")
if(!chem || chemicals < 20 || !host || controlling || !src || stat) //Sanity check.
return