diff --git a/code/game/objects/items/reagent_containers/syringes.dm b/code/game/objects/items/reagent_containers/syringes.dm index 06cbb55936..83f846b6be 100644 --- a/code/game/objects/items/reagent_containers/syringes.dm +++ b/code/game/objects/items/reagent_containers/syringes.dm @@ -450,7 +450,7 @@ /obj/item/reagent_container/syringe/drugs/Initialize() . = ..() reagents.add_reagent("space_drugs", 5) - reagents.add_reagent("mindbreaker", 5) + reagents.add_reagent("diethylamide", 5) reagents.add_reagent("cryptobiolin", 5) mode = SYRINGE_INJECT update_icon() diff --git a/code/modules/hydroponics/seed_datums.dm b/code/modules/hydroponics/seed_datums.dm index 2aff95eb1f..a2f0711757 100644 --- a/code/modules/hydroponics/seed_datums.dm +++ b/code/modules/hydroponics/seed_datums.dm @@ -245,7 +245,7 @@ var/global/list/gene_tag_masks = list() // Gene obfuscation for delicious tria "rezadone", "ethylredoxrazine", "cyanide", - "mindbreaker", + "diethylamide", "stoxin" ) diff --git a/code/modules/law/laws/major_crime.dm b/code/modules/law/laws/major_crime.dm index 58b30dfd6c..2aa97fd107 100644 --- a/code/modules/law/laws/major_crime.dm +++ b/code/modules/law/laws/major_crime.dm @@ -19,7 +19,7 @@ /datum/law/major_law/contraband name = "Contraband" - desc = "Possessing, or distributing controlled substances or unauthorized items or weapons as defined in Standard Operating Procedure or impairing, intoxicating or addictive drugs such as Mindbreaker, this does not include custom mixes or dosages of medicinal drugs." + desc = "Possessing, or distributing controlled substances or unauthorized items or weapons as defined in Standard Operating Procedure or impairing, intoxicating or addictive drugs such as LSD, this does not include custom mixes or dosages of medicinal drugs." special_punishment = "Contraband Confiscation" brig_time = 15 diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 751dbe5bf7..b0db498b47 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -579,7 +579,7 @@ /obj/item/paper/bigred/smuggling name = "Folded note" - info = "Alright Jeff, I know you still owe me after standing up for you when you got caught with a whole pill bottle of mindbreaker. Remember how I got you out of 15 years in the slammer? \n Anyways, I have a special task for you that you can do to repay me. \n

Whenever you unload a cargo container look for any crate with a blue hexagon on it.

Upon finding one, DO NOT OPEN it under ANY circumstances, and keep it away from anyone else. You then bring it to virology, specifically the back of the lobby where there is a hole into the caves.

\n

Then, leave it at the nearest crevice to the right and my men will take it. Should there be any backup, just stack it on top.

\n

Easy, right? Just moving cargo. If anyone asks what’s in it, it’s just power tools.

\n

Good luck, I'll slide you a few blunts of space weed that we have as a tip if you work well.

" + info = "Alright Jeff, I know you still owe me after standing up for you when you got caught with a whole pill bottle of LSD. Remember how I got you out of 15 years in the slammer? \n Anyways, I have a special task for you that you can do to repay me. \n

Whenever you unload a cargo container look for any crate with a blue hexagon on it.

Upon finding one, DO NOT OPEN it under ANY circumstances, and keep it away from anyone else. You then bring it to virology, specifically the back of the lobby where there is a hole into the caves.

\n

Then, leave it at the nearest crevice to the right and my men will take it. Should there be any backup, just stack it on top.

\n

Easy, right? Just moving cargo. If anyone asks what’s in it, it’s just power tools.

\n

Good luck, I'll slide you a few blunts of space weed that we have as a tip if you work well.

" color = "grey" /obj/item/paper/bigred/witness diff --git a/code/modules/reagents/chemistry_properties/prop_neutral.dm b/code/modules/reagents/chemistry_properties/prop_neutral.dm index 3048b12ee2..4dd4c703ef 100644 --- a/code/modules/reagents/chemistry_properties/prop_neutral.dm +++ b/code/modules/reagents/chemistry_properties/prop_neutral.dm @@ -437,13 +437,13 @@ /datum/chem_property/neutral/antihallucinogenic name = PROPERTY_ANTIHALLUCINOGENIC code = "AHL" - description = "Stabilizes perseptive abnormalities such as hallucinations caused by mindbreaker toxin." + description = "Stabilizes perseptive abnormalities such as those caused by hallucinogenics like LSD or certain fungi." rarity = PROPERTY_COMMON category = PROPERTY_TYPE_STIMULANT value = 1 /datum/chem_property/neutral/antihallucinogenic/process(mob/living/M, potency = 1) - M.reagents.remove_reagent("mindbreaker", 5) + M.reagents.remove_reagent("diethylamide", 5) M.reagents.remove_reagent("space_drugs", 5) M.hallucination = max(0, M.hallucination - POTENCY_MULTIPLIER_EXTREME * potency) M.druggy = max(0, M.druggy - POTENCY_MULTIPLIER_EXTREME * potency) diff --git a/code/modules/reagents/chemistry_reactions/medical.dm b/code/modules/reagents/chemistry_reactions/medical.dm index 44e4f7183e..87ac1f21d3 100644 --- a/code/modules/reagents/chemistry_reactions/medical.dm +++ b/code/modules/reagents/chemistry_reactions/medical.dm @@ -192,19 +192,19 @@ name = "Methylphenidate" id = "methylphenidate" result = "methylphenidate" - required_reagents = list("mindbreaker" = 1, "hydrogen" = 1) + required_reagents = list("diethylamide" = 1, "hydrogen" = 1) result_amount = 3 /datum/chemical_reaction/citalopram name = "Citalopram" id = "citalopram" result = "citalopram" - required_reagents = list("mindbreaker" = 1, "carbon" = 1) + required_reagents = list("diethylamide" = 1, "carbon" = 1) result_amount = 3 /datum/chemical_reaction/paroxetine name = "Paroxetine" id = "paroxetine" result = "paroxetine" - required_reagents = list("mindbreaker" = 1, "oxygen" = 1, "inaprovaline" = 1) + required_reagents = list("diethylamide" = 1, "oxygen" = 1, "inaprovaline" = 1) result_amount = 3 diff --git a/code/modules/reagents/chemistry_reactions/other.dm b/code/modules/reagents/chemistry_reactions/other.dm index 6b60ae8905..5c49766c42 100644 --- a/code/modules/reagents/chemistry_reactions/other.dm +++ b/code/modules/reagents/chemistry_reactions/other.dm @@ -290,10 +290,10 @@ required_reagents = list("carpotoxin" = 1, "cryptobiolin" = 1, "copper" = 1) result_amount = 3 -/datum/chemical_reaction/mindbreaker - name = "Mindbreaker Toxin" - id = "mindbreaker" - result = "mindbreaker" +/datum/chemical_reaction/diethylamide + name = "Lysergic Acid Diethylamide" + id = "diethylamide" + result = "diethylamide" required_reagents = list("silicon" = 1, "hydrogen" = 1, "anti_toxin" = 1) result_amount = 3 diff --git a/code/modules/reagents/chemistry_reagents/toxin.dm b/code/modules/reagents/chemistry_reagents/toxin.dm index 445918ef28..1584584911 100644 --- a/code/modules/reagents/chemistry_reagents/toxin.dm +++ b/code/modules/reagents/chemistry_reagents/toxin.dm @@ -129,10 +129,10 @@ holder_mob.status_flags &= ~FAKEDEATH REMOVE_TRAIT(holder_mob, TRAIT_IMMOBILIZED, FAKEDEATH_TRAIT) -/datum/reagent/toxin/mindbreaker - name = "Mindbreaker Toxin" - id = "mindbreaker" - description = "A powerful hallucinogenic compound that is illegal under space law. Causes extreme hallucinations and is very addictive. Formerly known as LSD." +/datum/reagent/toxin/diethylamide + name = "lysergic acid diethylamide" + id = "diethylamide" + description = "Lysergic acid diethylamide is a potent hallucinogenic agent which is considered nonaddictive, though potentially capable of causing permanent psychological changes." reagent_state = LIQUID color = "#B31008" // rgb: 139, 166, 233 overdose = REAGENTS_OVERDOSE