From ecdd0ae675e18b67de31f03b79f56c21a18e7893 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Fri, 9 Feb 2024 22:39:22 -0800 Subject: Add recipe for canned meat/vegatable curry. Fix vegatable curry lacking a book_learn. --- Readme.txt | 4 ++ json/recipes/food/canned.json | 100 ++++++++++++++++++++++++++++++++++++++++++ json/recipes/food/veggi.json | 2 +- 3 files changed, 105 insertions(+), 1 deletion(-) diff --git a/Readme.txt b/Readme.txt index 59b0b7c..f6cb9dd 100644 --- a/Readme.txt +++ b/Readme.txt @@ -83,7 +83,11 @@ And while I'm at it, add meat and veggy stirfry dishes. Chili Con Carne: Is now a liquid. If curry is considered a liquid, chili is too. +Also support canning. +-- +Curry: +Both meat and vegetable versions support canning. -- Chitin powder: diff --git a/json/recipes/food/canned.json b/json/recipes/food/canned.json index fcc940f..eadf0b4 100644 --- a/json/recipes/food/canned.json +++ b/json/recipes/food/canned.json @@ -84,10 +84,110 @@ [ [ "jar_glass", 1 ] ] ] }, + { + "type": "recipe", + "result": "curry_veggy", + "id_suffix": "canned", + "container": "can_medium", + "charges": 1, + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_VEGGI", + "skill_used": "cooking", + "difficulty": 4, + "time": "20 m", + "batch_time_factors": [ 80, 5 ], + "book_learn": [ [ "cookbook_indian", 2 ], [ "manual_canning", 3 ] ], + "contained": true, + "qualities": [ + { "id": "SAW_M", "level": 1 }, + { "id": "HAMMER", "level": 1 }, + { "id": "CUT", "level": 1 }, + { "id": "COOK", "level": 3 } + ], + "tools": [ + [ [ "surface_heat", 16, "LIST" ] ], + [ [ "can_sealer", -1 ] ] + ], + "components": [ + [ + [ "veggy", 4 ], + [ "veggy_wild", 4 ], + [ "veggy_salted", 4 ], + [ "rehydrated_veggy", 4 ], + [ "dry_veggy", 4 ], + [ "mushroom", 4 ], + [ "dry_mushroom", 4 ], + [ "morel_cooked", 4 ], + [ "mushroom_cooked", 4 ], + [ "can_beans", 2 ], + [ "beans_cooked", 2 ], + [ "tofu", 2 ], + [ "dry_tofu", 2 ], + [ "edamame_cooked", 2 ], + [ "lentils_cooked", 2 ], + [ "rice_cooked", 2 ] + ], + [ [ "tomato", 2 ], [ "irradiated_tomato", 2 ], [ "can_tomato", 2 ] ], + [ [ "curry_powder", 8 ], [ "chilly-p", 8 ] ], + [ [ "can_medium_unsealed", 1 ] ], + [ [ "scrap", 1 ] ] + ] + }, + { + "type": "recipe", + "result": "curry_meat", + "id_suffix": "canned", + "container": "can_medium", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 4, + "time": "20 m", + "charges": 2, + "batch_time_factors": [ 80, 5 ], + "book_learn": [ [ "cookbook_indian", 2 ], [ "manual_canning", 3 ] ], + "contained": true, + "qualities": [ + { "id": "SAW_M", "level": 1 }, + { "id": "HAMMER", "level": 1 }, + { "id": "CUT", "level": 1 }, + { "id": "COOK", "level": 3 } + ], + "tools": [ + [ [ "surface_heat", 16, "LIST" ] ], + [ [ "can_sealer", -1 ] ] + ], + "components": [ + [ + [ "veggy", 4 ], + [ "veggy_wild", 4 ], + [ "veggy_salted", 4 ], + [ "rehydrated_veggy", 4 ], + [ "dry_veggy", 4 ], + [ "mushroom", 4 ], + [ "dry_mushroom", 4 ], + [ "morel_cooked", 4 ], + [ "mushroom_cooked", 4 ], + [ "can_beans", 2 ], + [ "beans_cooked", 2 ], + [ "lentils_cooked", 2 ], + [ "rice_cooked", 2 ], + [ "tofu", 2 ], + [ "dry_tofu", 2 ], + [ "edamame_cooked", 2 ] + ], + [ [ "tomato", 2 ], [ "irradiated_tomato", 2 ], [ "can_tomato", 2 ] ], + [ [ "meat_red", 2, "LIST" ], [ "dry_meat", 2 ], [ "can_chicken", 2 ] ], + [ [ "curry_powder", 8 ], [ "chilly-p", 8 ] ], + [ [ "can_medium_unsealed", 1 ] ], + [ [ "scrap", 1 ] ] + ] + }, { "type": "recipe", "result": "chili", "id_suffix": "canned", + "container": "can_medium", "category": "CC_FOOD", "subcategory": "CSC_FOOD_MEAT", "skill_used": "cooking", diff --git a/json/recipes/food/veggi.json b/json/recipes/food/veggi.json index b1a9f5d..e5c46c5 100644 --- a/json/recipes/food/veggi.json +++ b/json/recipes/food/veggi.json @@ -8,7 +8,7 @@ "skill_used": "cooking", "difficulty": 2, "time": "20 m", - "autolearn": true, + "book_learn": [ [ "cookbook_indian", 1 ] ], "batch_time_factors": [ 80, 5 ], "qualities": [ { "id": "COOK", "level": 2 } ], "tools": [ [ [ "surface_heat", 8, "LIST" ] ] ], -- cgit v1.2.1