summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-08-05 20:30:27 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-08-05 20:30:27 -0700
commitaa59e76c4851065b1079e91213e6772c07361f29 (patch)
treee81153593941da420bcc345a5848c710723995f5
parentMexican hot chocolate no longer requires dirty water (diff)
downloadcataclysm-dda-mod_recipe-fixes-aa59e76c4851065b1079e91213e6772c07361f29.tar.xz
Add recipes for preserving peanut butter and imitation pb
-rw-r--r--Readme.txt2
-rw-r--r--json/recipes/food/canned.json54
2 files changed, 56 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 1e9556a..51ccb89 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -49,3 +49,5 @@ This was just silly.
Comparable .223, 5.56mm , and 762x39mm could use these.
--
+
+Peanut Butter can now be preserved.
diff --git a/json/recipes/food/canned.json b/json/recipes/food/canned.json
new file mode 100644
index 0000000..acf1863
--- /dev/null
+++ b/json/recipes/food/canned.json
@@ -0,0 +1,54 @@
+[
+ {
+ "type": "recipe",
+ "result": "peanutbutter",
+ "id_suffix": "jarred",
+ "container": "jar_glass_sealed",
+ "category": "CC_FOOD",
+ "subcategory": "CSC_FOOD_OTHER",
+ "skill_used": "cooking",
+ "difficulty": 4,
+ "time": "30 m",
+ "charges": 16,
+ "autolearn": true,
+ "qualities": [ { "id": "COOK", "level": 3 } ],
+ "tools": [ [ [ "food_processor", 40 ] ], [ [ "vac_sealer", 10 ], [ "makeshift_sealer", 20 ] ] ],
+ "components": [
+ [ [ "peanut_unshelled", 12 ] ],
+ [ [ "sugar", 40 ], [ "honey_bottled", 4 ], [ "honey_glassed", 4 ] ],
+ [ [ "jar_glass", 1 ] ]
+ ]
+ },
+ {
+ "type": "recipe",
+ "result": "peanutbutter_imitation",
+ "id_suffix": "jarred",
+ "container": "jar_glass_sealed",
+ "category": "CC_FOOD",
+ "subcategory": "CSC_FOOD_OTHER",
+ "skill_used": "cooking",
+ "difficulty": 4,
+ "charges": 16,
+ "time": "30 m",
+ "autolearn": true,
+ "qualities": [ { "id": "COOK", "level": 3 } ],
+ "tools": [ [ [ "food_processor", 40 ] ], [ [ "vac_sealer", 10 ], [ "makeshift_sealer", 20 ] ] ],
+ "components": [
+ [
+ [ "pine_nuts", 25 ],
+ [ "pecan_unshelled", 25 ],
+ [ "cashews", 25 ],
+ [ "pistachio_unshelled", 25 ],
+ [ "almond_unshelled", 25 ],
+ [ "beech_nuts", 25 ],
+ [ "hickory_nut_unshelled", 25 ],
+ [ "chestnut_unshelled", 25 ],
+ [ "hazelnut_unshelled", 25 ],
+ [ "walnut_unshelled", 25 ],
+ [ "acorns", 25 ]
+ ],
+ [ [ "sugar", 50 ], [ "honeycomb", 5 ], [ "honey_bottled", 5 ], [ "honey_glassed", 5 ], [ "syrup", 5 ] ],
+ [ [ "jar_glass", 1 ] ]
+ ]
+ }
+]