From d4b6da5d6ef65edf4a285d6d99dac23610d36475 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 13 Jan 2019 12:16:25 -0500 Subject: [PATCH 1/2] Update others.dm --- .../reagents/chemistry/recipes/others.dm | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index f2e9baeba4..2f63271b45 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -592,3 +592,24 @@ id = "pax" results = list("pax" = 3) required_reagents = list("mindbreaker" = 1, "synaptizine" = 1, "water" = 1) + +/datum/chemical_reaction/cat + name = "felined mutation toxic" + id = "cats" + results = list("felinidmutationtoxin" = 1) + required_reagents = list("mindbreaker" = 1, "ammonia" = 1, "water" = 1, "aphro" = 10) // Maybe aphro+ if it becomes a shitty meme + required_temp = 450 + +/datum/chemical_reaction/moff + name = "moth mutation toxic" + id = "moffs" + results = list("mothmutationtoxin" = 1) + required_reagents = list("liquid_dark_matter" = 2, "ammonia" = 5, "lithium" = 1) + required_temp = 320 + +/datum/chemical_reaction/notlight //Harder to make do to it being a hard race to play + name = "shadow muatatuin toxic" + id = "notlight" + results = list("shadowmutationtoxin" = 1) + required_reagents = list("liquid_dark_matter" = 5, "synaptizine" = 10, "oculine" = 10) + required_temp = 600 From 910c79efdfe350ad13b1f6693512c3cde50727c1 Mon Sep 17 00:00:00 2001 From: Trilbyspaceclone <30435998+Trilbyspaceclone@users.noreply.github.com> Date: Sun, 13 Jan 2019 13:27:14 -0500 Subject: [PATCH 2/2] sure thing --- code/modules/reagents/chemistry/recipes/others.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/reagents/chemistry/recipes/others.dm b/code/modules/reagents/chemistry/recipes/others.dm index 2f63271b45..e1f4e3dd36 100644 --- a/code/modules/reagents/chemistry/recipes/others.dm +++ b/code/modules/reagents/chemistry/recipes/others.dm @@ -597,19 +597,19 @@ name = "felined mutation toxic" id = "cats" results = list("felinidmutationtoxin" = 1) - required_reagents = list("mindbreaker" = 1, "ammonia" = 1, "water" = 1, "aphro" = 10) // Maybe aphro+ if it becomes a shitty meme + required_reagents = list("mindbreaker" = 1, "ammonia" = 1, "water" = 1, "aphro" = 10, "stablemutationtoxin" = 1) // Maybe aphro+ if it becomes a shitty meme required_temp = 450 /datum/chemical_reaction/moff name = "moth mutation toxic" id = "moffs" results = list("mothmutationtoxin" = 1) - required_reagents = list("liquid_dark_matter" = 2, "ammonia" = 5, "lithium" = 1) + required_reagents = list("liquid_dark_matter" = 2, "ammonia" = 5, "lithium" = 1, "stablemutationtoxin" = 1) required_temp = 320 /datum/chemical_reaction/notlight //Harder to make do to it being a hard race to play name = "shadow muatatuin toxic" id = "notlight" results = list("shadowmutationtoxin" = 1) - required_reagents = list("liquid_dark_matter" = 5, "synaptizine" = 10, "oculine" = 10) + required_reagents = list("liquid_dark_matter" = 5, "synaptizine" = 10, "oculine" = 10, "stablemutationtoxin" = 1) required_temp = 600