From c3da1b5c96285762a16a19d44400d8231f617987 Mon Sep 17 00:00:00 2001 From: Landerlow Date: Tue, 29 Aug 2017 21:59:45 +0200 Subject: [PATCH 1/3] adds a recipe to create enzymes --- code/modules/reagents/chemistry/recipes/food.dm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/food.dm b/code/modules/reagents/chemistry/recipes/food.dm index 02453d44e31..857a19788f6 100644 --- a/code/modules/reagents/chemistry/recipes/food.dm +++ b/code/modules/reagents/chemistry/recipes/food.dm @@ -197,4 +197,14 @@ required_reagents = list("beff" = 1, "saltpetre" = 1, "synthflesh" = 1) result_amount = 2 mix_message = "The beff and the synthflesh combine to form a smoky red log." - mix_sound = 'sound/effects/blobattack.ogg' \ No newline at end of file + mix_sound = 'sound/effects/blobattack.ogg' + +/datum/chemical_reaction/enzyme + name = "Universal enzyme" + id = "enzyme" + result = "enzyme" + required_reagents = list("plantmatter" = 1, "sugar" = 1) + result_amount = 2 + min_temp = 750 + mix_message = "The mixture bubbles and leaves behind the enzymes." + mix_sound = 'sound/goonstation/misc/fuse.ogg' From 1981de5156be85e0acc94b2473b690e0de9f9d58 Mon Sep 17 00:00:00 2001 From: Landerlow Date: Wed, 30 Aug 2017 14:39:12 +0200 Subject: [PATCH 2/3] Changed plantmatter ingredient requirement to vomit --- code/modules/reagents/chemistry/recipes/food.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/food.dm b/code/modules/reagents/chemistry/recipes/food.dm index 857a19788f6..f6fdeb08cf9 100644 --- a/code/modules/reagents/chemistry/recipes/food.dm +++ b/code/modules/reagents/chemistry/recipes/food.dm @@ -203,7 +203,7 @@ name = "Universal enzyme" id = "enzyme" result = "enzyme" - required_reagents = list("plantmatter" = 1, "sugar" = 1) + required_reagents = list("vomit" = 1, "sugar" = 1) result_amount = 2 min_temp = 750 mix_message = "The mixture bubbles and leaves behind the enzymes." From c5e6a4ec24370e56220a3083851252f89ae2411b Mon Sep 17 00:00:00 2001 From: Landerlow Date: Wed, 30 Aug 2017 15:17:16 +0200 Subject: [PATCH 3/3] Changes mix message and adds green vomit recipe --- code/modules/reagents/chemistry/recipes/food.dm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/code/modules/reagents/chemistry/recipes/food.dm b/code/modules/reagents/chemistry/recipes/food.dm index f6fdeb08cf9..44047f70049 100644 --- a/code/modules/reagents/chemistry/recipes/food.dm +++ b/code/modules/reagents/chemistry/recipes/food.dm @@ -206,5 +206,15 @@ required_reagents = list("vomit" = 1, "sugar" = 1) result_amount = 2 min_temp = 750 - mix_message = "The mixture bubbles and leaves behind the enzymes." + mix_message = "The mixture emits a horrible smell as you heat up the contents. Luckily, enzymes don't stink." + mix_sound = 'sound/goonstation/misc/fuse.ogg' + +/datum/chemical_reaction/enzyme + name = "Universal enzyme" + id = "enzyme" + result = "enzyme" + required_reagents = list("green_vomit" = 1, "sugar" = 1) + result_amount = 2 + min_temp = 750 + mix_message = "The mixture emits a horrible smell as you heat up the contents. Luckily, enzymes don't stink." mix_sound = 'sound/goonstation/misc/fuse.ogg'