From c5e6a4ec24370e56220a3083851252f89ae2411b Mon Sep 17 00:00:00 2001 From: Landerlow Date: Wed, 30 Aug 2017 15:17:16 +0200 Subject: [PATCH] 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'