summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2023-05-19 13:21:23 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2023-05-19 13:21:23 -0700
commit3f1e714cecb006ca0e23908566766fcaa666156e (patch)
tree05dff678369954e8a9122ec9faaa4c2c12c35b78
parentFix sugar from sweets not outputting enough portions. (diff)
downloadcataclysm-bn-mod_recipe-fixes-3f1e714cecb006ca0e23908566766fcaa666156e.tar.xz
Fix bratwurst to require 10 sausage casings.
-rw-r--r--Readme.txt1
-rw-r--r--json/recipes/food/meat.json26
2 files changed, 27 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 825322f..598da4c 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -102,6 +102,7 @@ They could already use human flesh, may as well add the human stomachs.
Smoked/Sweet sausages:
Now require sausage casings.
All the other sausages did.
+Also fix bratwurst to require 10 casings as the portion size would suggest.
--
Sausage casings can be made with clean water:
diff --git a/json/recipes/food/meat.json b/json/recipes/food/meat.json
index 000a8ee..d977b63 100644
--- a/json/recipes/food/meat.json
+++ b/json/recipes/food/meat.json
@@ -566,5 +566,31 @@
[ [ "water", 2 ], [ "water_clean", 2 ] ],
[ [ "bag_plastic", 1 ] ]
]
+ },
+ {
+ "type": "recipe",
+ "result": "bratwurst_sausage",
+ "category": "CC_FOOD",
+ "subcategory": "CSC_FOOD_MEAT",
+ "skill_used": "cooking",
+ "difficulty": 4,
+ "time": "1 h",
+ "book_learn": [ [ "family_cookbook", 2 ], [ "scots_cookbook", 2 ] ],
+ "batch_time_factors": [ 80, 5 ],
+ "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 1 } ],
+ "tools": [ [ [ "surface_heat", 7, "LIST" ] ] ],
+ "components": [
+ [ [ "meat_red", 2, "LIST" ], [ "can_chicken", 2 ] ],
+ [ [ "edible_fat", 1, "LIST" ], [ "edible_tallow_lard", 2, "LIST" ] ],
+ [
+ [ "salt", 4 ],
+ [ "soysauce", 2 ],
+ [ "seasoning_italian", 4 ],
+ [ "wild_herbs", 4 ],
+ [ "seasoning_salt", 4 ],
+ [ "pepper", 4 ]
+ ],
+ [ [ "sausage_casings", 10 ], [ "stomach", 1 ], [ "stomach_large", 1 ] ]
+ ]
}
]