Skip to content

Commit

Permalink
adds PCP to the hyperzines defines (#36788)
Browse files Browse the repository at this point in the history
* adds PCP to the hyperzines defines

* recursiveness fix 1/2

* recursiveness fix 2/2

* good thing I caught this early
  • Loading branch information
Eneocho authored Jul 23, 2024
1 parent 61de0a0 commit 51ed3f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion __DEFINES/reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,8 @@ var/list/cheartstopper = list(/*"potassium_chloride",*/ CHEESYGLOOP) //this stop
#define BICARIDINES list(BICARIDINE, OPIUM)
#define SPACE_DRUGGS list(SPACE_DRUGS, MESCALINE)
#define SYNAPTIZINES list(SYNAPTIZINE, CYTISINE)
#define HYPERZINES list(HYPERZINE, COCAINE, METHAMPHETAMINE)
#define HYPERZINES list(HYPERZINE, COCAINE, LIQUIDPCP, METHAMPHETAMINE) //all hyperzine calls call this, except a couple recipes which call safehyperzines
#define SAFEHYPERZINES list(HYPERZINE, COCAINE) //here so some recipes don't get fucked up and turn recursive
#define IMIDAZOLINES list(IMIDAZOLINE, ZEAXANTHIN)
#define STOXINS list(STOXIN, STOXIN2, VALERENIC_ACID)
#define SACIDS list(SACID, FORMIC_ACID)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/reagents/Chemistry-Recipes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
name = "Creatine"
id = CREATINE
result = CREATINE
required_reagents = list(NUTRIMENT = 1, BICARIDINES = 1, HYPERZINES = 1, MUTAGENS = 1)
required_reagents = list(NUTRIMENT = 1, BICARIDINES = 1, SAFEHYPERZINES = 1, MUTAGENS = 1)
result_amount = 2

/datum/chemical_reaction/discount
Expand Down Expand Up @@ -463,7 +463,7 @@
name = "Liquid PCP"
id = LIQUIDPCP
result = LIQUIDPCP
required_reagents = list(HYPERZINES = 5, MINDBREAKER = 5)
required_reagents = list(SAFEHYPERZINES = 5, MINDBREAKER = 5)
required_temp = T0C + 200
result_amount = 5

Expand Down

0 comments on commit 51ed3f3

Please sign in to comment.