diff options
| author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-11-14 21:22:48 -0800 | 
|---|---|---|
| committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-11-14 21:22:48 -0800 | 
| commit | 95581363b60675e30bf2fbe7df18c970f7070bf9 (patch) | |
| tree | ddc17cc2448024bac34808b8df13ac1dc39ed5cd | |
| parent | Typo. (diff) | |
| download | cataclysm-bn-mod_recipe-fixes-95581363b60675e30bf2fbe7df18c970f7070bf9.tar.xz | |
Fix the omelette from powdered egg recipes.
| -rw-r--r-- | Readme.txt | 2 | ||||
| -rw-r--r-- | json/recipes/food/other.json | 78 | 
2 files changed, 78 insertions, 2 deletions
@@ -113,7 +113,7 @@ Add copper to reloaded and black powder recipes for various ammunitions:  10mm Auto FMJ, .357 Magnum FMJ, .38 Super FMJ, .45 ACP FMJ, 4.6x30mm  --- -Scrambled Eggs and Deluxe Scrambled Eggs: +Scrambled Eggs, Deluxe Scrambled Eggs, Omelettes:  From powdered eggs variants now no longer allows the use of non-powdered eggs.  Powdered eggs requiring water is the entire point of these variants. diff --git a/json/recipes/food/other.json b/json/recipes/food/other.json index 19dc892..39e245c 100644 --- a/json/recipes/food/other.json +++ b/json/recipes/food/other.json @@ -58,7 +58,83 @@          [ "can_salmon", 1 ],          [ "can_herring", 1 ]        ], -      [ [ "water", 1 ], [ "water_clean", 1 ] ] +      [ [ "water", 2 ], [ "water_clean", 2 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "salsify_omelette", +    "id_suffix": "from_powder", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_OTHER", +    "skill_used": "cooking", +    "difficulty": 1, +    "time": "6 m", +    "autolearn": true, +    "batch_time_factors": [ 80, 1 ], +    "qualities": [ { "id": "COOK", "level": 2 } ], +    "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], +    "components": [ +      [ [ "powder_eggs", 2 ] ], +      [ [ "water", 2 ], [ "water_clean", 2 ] ], +      [ [ "salsify_raw", 1 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "wild_veggy_omelette", +    "id_suffix": "from_powder", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_OTHER", +    "skill_used": "cooking", +    "difficulty": 1, +    "time": "6 m", +    "autolearn": true, +    "batch_time_factors": [ 80, 1 ], +    "qualities": [ { "id": "COOK", "level": 2 } ], +    "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], +    "components": [ +      [ [ "powder_eggs", 2 ] ], +      [ [ "water", 2 ], [ "water_clean", 2 ] ], +      [ [ "veggy_wild", 1 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "mushroom_omelette", +    "id_suffix": "from_powder", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_OTHER", +    "skill_used": "cooking", +    "difficulty": 1, +    "time": "6 m", +    "autolearn": true, +    "batch_time_factors": [ 80, 1 ], +    "qualities": [ { "id": "COOK", "level": 2 } ], +    "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], +    "components": [ +      [ [ "powder_eggs", 2 ] ], +      [ [ "water", 2 ], [ "water_clean", 2 ] ], +      [ [ "dry_mushroom", 1 ], [ "mushroom", 1 ] ] +    ] +  }, +  { +    "type": "recipe", +    "result": "spanish_omelette", +    "id_suffix": "from_powder", +    "category": "CC_FOOD", +    "subcategory": "CSC_FOOD_OTHER", +    "skill_used": "cooking", +    "difficulty": 1, +    "time": "13 m", +    "autolearn": true, +    "batch_time_factors": [ 80, 1 ], +    "qualities": [ { "id": "COOK", "level": 2 } ], +    "tools": [ [ [ "surface_heat", 2, "LIST" ] ] ], +    "components": [ +      [ [ "powder_eggs", 2 ] ], +      [ [ "water", 2 ], [ "water_clean", 2 ] ], +      [ [ "potato", 1 ] ]      ]    },    {  | 
