From 0dc472bf01ccfc76c215990fea44a9c1fee32e0d Mon Sep 17 00:00:00 2001 From: ArgyleSweatshop Date: Tue, 19 May 2015 19:21:05 -0400 Subject: [PATCH] Make Sake,Kahlua, and Soy Sauce Recipe more realistic Soy sauce is definitely not made from acid, so I made the recipe more realistic, using the INTERNET! Also, Kahlua is made from rum or vodka in addition to the ingredients already included, so I added that. Sake is made from rice alcohol and it is by and large always diluted by water, so that was added to the recipe. --- code/modules/reagents/Chemistry-Recipes.dm | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index f4fc2e30b34..7d193a0e110 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -956,8 +956,8 @@ datum name = "Soy Sauce" id = "soysauce" result = "soysauce" - required_reagents = list("soymilk" = 4, "sacid" = 1) - result_amount = 5 + required_reagents = list("soymilk" = 2, "flour" = 1, "sodiumchloride" = 1, "water" = 3) + result_amount = 7 cheesewheel name = "Cheesewheel" @@ -1084,18 +1084,25 @@ datum name = "Sake" id = "sake" result = "sake" - required_reagents = list("rice" = 10) + required_reagents = list("rice" = 10,"water" = 5) required_catalysts = list("enzyme" = 5) - result_amount = 10 + result_amount = 15 kahlua name = "Kahlua" id = "kahlua" result = "kahlua" - required_reagents = list("coffee" = 5, "sugar" = 5) + required_reagents = list("coffee" = 5, "sugar" = 5, "rum" = 5) + required_catalysts = list("enzyme" = 5) + result_amount = 5 + + kahluaVodka + name = "KahluaVodka" + id = "kahlauVodka" + result = "kahlua" + required_reagents = list("coffee" = 5, "sugar" = 5, "vodka" = 5) required_catalysts = list("enzyme" = 5) result_amount = 5 - gin_tonic name = "Gin and Tonic" id = "gintonic" @@ -1548,4 +1555,4 @@ datum id = "rewriter" result = "rewriter" required_reagents = list("spacemountainwind" = 1, "coffee" = 1) - result_amount = 2 \ No newline at end of file + result_amount = 2