From 011455f33dc5536f307e55390dfa98d9247ef644 Mon Sep 17 00:00:00 2001 From: ashGlaw <58862150+ashGlaw@users.noreply.github.com> Date: Tue, 11 Feb 2020 18:12:17 -0500 Subject: [PATCH] Added recipe for ghee (#37913) * Added recipe for ghee I noticed we didn't have a ghee recipe, so I added one. It seemed similar to cooking_oil2 so I used that as a base. Should I add a rag to the components to represent straining through cheesecloth? Should it require a strainer? * Now you need a strainer of some sort. added a variety * Make craft time realistic Co-Authored-By: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> * Added an indian cookbook, moved curry and ghee recipes to that Tested and things seem to be working * Itemgroups added The book should spawn in a number of different places now, with a fairly low distribution. Not married to those numbers, though * Set ghee recipe to be in cookbook * Removed Indian Cookbook from books, itemgroups, and recipes Co-authored-by: I-am-Erk <45136638+I-am-Erk@users.noreply.github.com> --- data/json/recipes/food/dairy_products.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/data/json/recipes/food/dairy_products.json b/data/json/recipes/food/dairy_products.json index dd8f2928a1709..5d3f9c5541e93 100644 --- a/data/json/recipes/food/dairy_products.json +++ b/data/json/recipes/food/dairy_products.json @@ -37,5 +37,23 @@ "autolearn": true, "qualities": [ { "id": "COOK", "level": 1 } ], "components": [ [ [ "milk_cream_jar", 1 ] ] ] + }, + { + "type": "recipe", + "result": "ghee", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_DAIRY", + "skill_used": "cooking", + "difficulty": 2, + "charges": 1, + "book_learn": [ [ "cookbook", 1 ] ], + "time": "30 m", + "batch_time_factors": [ 80, 4 ], + "qualities": [ { "id": "BOIL", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ + [ [ "water_boiling_heat", 2, "LIST" ] ], + [ [ "colander_steel", -1 ], [ "sieve_steel", -1 ], [ "sieve_primitive", -1 ], [ "rag", -1 ] ] + ], + "components": [ [ [ "raw_butter", 1 ], [ "butter", 1 ] ] ] } ]