diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-08-05 20:30:27 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-08-05 20:30:27 -0700 |
commit | aa59e76c4851065b1079e91213e6772c07361f29 (patch) | |
tree | e81153593941da420bcc345a5848c710723995f5 /json/recipes/food | |
parent | Mexican hot chocolate no longer requires dirty water (diff) | |
download | cataclysm-bn-mod_recipe-fixes-aa59e76c4851065b1079e91213e6772c07361f29.tar.xz |
Add recipes for preserving peanut butter and imitation pb
Diffstat (limited to 'json/recipes/food')
-rw-r--r-- | json/recipes/food/canned.json | 54 |
1 files changed, 54 insertions, 0 deletions
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 ] ] + ] + } +] |