From b5ff66f113e3e8c4737194b35a4c518e4e448ee4 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 1 May 2021 22:57:37 -0700 Subject: Add recipes for unshelled nuts --- Readme.txt | 1 + json/recipes/basecamps/recipe_groups.json | 10 +++- json/recipes/nuts.json | 90 +++++++++++++++++++++++++++++++ 3 files changed, 100 insertions(+), 1 deletion(-) create mode 100644 json/recipes/nuts.json diff --git a/Readme.txt b/Readme.txt index c5b91ee..ce906be 100644 --- a/Readme.txt +++ b/Readme.txt @@ -13,6 +13,7 @@ Basic ingredients like tofu, tallow, salt, and sugar. Pasta noodles. Powdered foods, with quern and food proccessor. A few trivial end recipes like biscuits, roasted nuts. +Unshelled nuts. Both for player and camp. The other pie recipes. All craftable seeds from the farm camp. Metalworking with the arc welder. diff --git a/json/recipes/basecamps/recipe_groups.json b/json/recipes/basecamps/recipe_groups.json index 1556d17..e2f76fd 100644 --- a/json/recipes/basecamps/recipe_groups.json +++ b/json/recipes/basecamps/recipe_groups.json @@ -21,7 +21,15 @@ { "id": "pecan_roasted", "description": " Cook: Pecan, Roasted" }, { "id": "pistachio_roasted", "description": " Cook: Pistachio, Roasted" }, { "id": "soy_nuts", "description": " Cook: Soybeans, Roasted" }, - { "id": "walnut_roasted", "description": " Cook: Walnut, Roasted" } + { "id": "walnut_roasted", "description": " Cook: Walnut, Roasted" }, + { "id": "almond_unshelled", "description": " Cook: Almond, Unshelled" }, + { "id": "chestnut_unshelled", "description": " Cook: Chestnut, Unshelled" }, + { "id": "hazelnut_unshelled", "description": " Cook: Hazelnut, Unshelled" }, + { "id": "hickory_nut_unshelled", "description": " Cook: Hickory Nut, Unshelled" }, + { "id": "peanut_unshelled", "description": " Cook: Peanut, Unshelled" }, + { "id": "pecan_unshelled", "description": " Cook: Pecan, Unshelled" }, + { "id": "pistachio_unshelled", "description": " Cook: Pistachio, Unshelled" }, + { "id": "walnut_unshelled", "description": " Cook: Walnut, Unshelled" } ] }, { diff --git a/json/recipes/nuts.json b/json/recipes/nuts.json new file mode 100644 index 0000000..4cc1c21 --- /dev/null +++ b/json/recipes/nuts.json @@ -0,0 +1,90 @@ +[ + { + "result": "almond_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "almond", 1 ] ] ] + }, + { + "result": "chestnut_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "chestnut", 1 ] ] ] + }, + { + "result": "hazelnut_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "hazelnut", 1 ] ] ] + }, + { + "result": "hickory_nut_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "hickory_nut", 1 ] ] ] + }, + { + "result": "peanut_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "peanut", 1 ] ] ] + }, + { + "result": "pecan_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "pecan", 1 ] ] ] + }, + { + "result": "pistachio_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "pistachio", 1 ] ] ] + }, + { + "result": "walnut_unshelled", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "survival", + "difficulty": 0, + "time": "6 m", + "autolearn": true, + "components": [ [ [ "walnut", 1 ] ] ] + } +] -- cgit v1.2.1