diff options
| -rw-r--r-- | Readme.txt | 4 | ||||
| -rw-r--r-- | json/recipes/food/canned.json | 100 | ||||
| -rw-r--r-- | json/recipes/food/veggi.json | 2 | 
3 files changed, 105 insertions, 1 deletions
@@ -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 @@ -86,8 +86,108 @@    },    {      "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" ] ] ],  | 
