From 49b0c82d1660e701ee52f5cb948e9ec95f056ed8 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 12 Oct 2024 00:10:24 -0700 Subject: Several fixes for low difficulty foods used by basecamp crafting. --- json/recipes/food/meat.json | 57 ++++++++++++++++++++++++++++++++++++++++++++ json/recipes/food/other.json | 16 +++++++++++++ json/recipes/food/snack.json | 15 ++++++++++++ json/recipes/food/veggi.json | 14 +++++++++++ 4 files changed, 102 insertions(+) (limited to 'json/recipes/food') diff --git a/json/recipes/food/meat.json b/json/recipes/food/meat.json index 98e2aaa..92d868c 100644 --- a/json/recipes/food/meat.json +++ b/json/recipes/food/meat.json @@ -294,6 +294,63 @@ [ [ "condiment", 1, "LIST" ], [ "bacon", 1 ], [ "seasoning_salt", 1 ] ] ] }, + { + "type": "recipe", + "result": "hotdogs_campfire", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "time": "1 m", + "charges": 1, + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "COOK", "level": 1 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ [ [ "hotdogs_frozen", 1 ], [ "homemade_hotdogs", 1 ], [ "bratwurst_sausage", 1 ] ] ] + }, + { + "type": "recipe", + "result": "corndogs_cooked", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 2, + "time": "1 m 45 s", + "charges": 1, + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "COOK", "level": 1 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ [ [ "corndogs_frozen", 1 ] ] ], + "//": "Reduce the tools required to cooking 1 as this is already prepared, it just needs heating." + }, + { + "type": "recipe", + "result": "corndogs_homemade", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 2, + "time": "1 m 45 s", + "charges": 1, + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ + [ + [ "hotdogs_frozen", 1 ], + [ "hotdogs_uncooked", 1 ], + [ "bratwurst_sausage", 1 ], + [ "sausage_wasteland" , 1 ] + ], + [ [ "splinter", 1 ] ], + [ [ "cornmeal", 1 ] ], + [ [ "cooking_oil", 1 ], [ "cooking_oil2", 1 ] ], + [ [ "bag_plastic", 1 ] ] + ], + "//": "Fix the recipe using a prepared hotdog with bun when it should have been using the plain uncooked hot dogs." + }, { "type": "recipe", "result": "soup_cullenskink", diff --git a/json/recipes/food/other.json b/json/recipes/food/other.json index 39e245c..01bdd4b 100644 --- a/json/recipes/food/other.json +++ b/json/recipes/food/other.json @@ -1,4 +1,20 @@ [ + { + "type": "recipe", + "result": "morel_cooked", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_OTHER", + "skill_used": "cooking", + "difficulty": 1, + "skills_required": [ "survival", 1 ], + "time": "4 m", + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "COOK", "level": 1 } ], + "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], + "components": [ [ [ "mushroom_morel", 1 ] ] ], + "//": "Remove the water requirement." + }, { "type": "recipe", "result": "scrambled_eggs", diff --git a/json/recipes/food/snack.json b/json/recipes/food/snack.json index f8a24d8..0f422ad 100644 --- a/json/recipes/food/snack.json +++ b/json/recipes/food/snack.json @@ -1,4 +1,19 @@ [ + { + "type": "recipe", + "result": "cooked_dinner", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_SNACK", + "skill_used": "cooking", + "time": "5 m", + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "COOK", "level": 1 } ], + "tools": [ [ [ "surface_heat", 3, "LIST" ] ] ], + "components": [ [ [ "frozen_dinner", 1 ] ] ], + "//": "Fix this recipe requiring two portions.", + "//2": "Also require food cooking 1. Good luck picking up one of these from a campfire with your bare hands." + }, { "type": "recipe", "result": "pie_maple", diff --git a/json/recipes/food/veggi.json b/json/recipes/food/veggi.json index e5c46c5..3262eec 100644 --- a/json/recipes/food/veggi.json +++ b/json/recipes/food/veggi.json @@ -130,5 +130,19 @@ [ [ "irradiated_broccoli", 2 ], [ "broccoli", 2 ], [ "veggy_wild_cooked", 2 ], [ "veggy_cooked", 2 ], [ "veggy_green", 2, "LIST" ] ], [ [ "soysauce", 1 ] ] ] + }, + { + "type": "recipe", + "result": "veggy_wild_cooked", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_VEGGI", + "skill_used": "cooking", + "time": "4 m", + "autolearn": true, + "batch_time_factors": [ 80, 1 ], + "qualities": [ { "id": "COOK", "level": 1 } ], + "tools": [ [ [ "surface_heat", 5, "LIST" ] ] ], + "components": [ [ [ "veggy_wild", 1 ] ] ], + "//": "This doesn't require water, so reduce to cooking 1." } ] -- cgit v1.2.1