From b6b82e6a3f40798ce777ec8f48913a550a3419a7 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Wed, 10 Jun 2020 00:24:40 -0700 Subject: BLT, Fish Soup, French Toast, Cucumber Sandwich - Now with brioche --- Readme.txt | 10 +++-- json/recipes/recipe_food.json | 74 +++++++++++++++++++++++++++++++ json/requirements/cooking_components.json | 57 ++++++++++++++++++++++++ 3 files changed, 138 insertions(+), 3 deletions(-) create mode 100644 json/requirements/cooking_components.json diff --git a/Readme.txt b/Readme.txt index 0e26733..0fbbaf7 100644 --- a/Readme.txt +++ b/Readme.txt @@ -1,3 +1,7 @@ -Cheeseburger can now be made with brioche. -Hamburger can noe be made with lettuce. -Change anesthetic to 500 ml batches instead of 540 ml. +Can now be made with brioche: +BLT, Cheeseburger, Cucumber Sandwich, Fish Soup, French Toast + +Can now be made with lettuce: +Hamburger + +Change anesthetic to 500 ml batches instead of 540 ml diff --git a/json/recipes/recipe_food.json b/json/recipes/recipe_food.json index 0a4f321..d80979b 100644 --- a/json/recipes/recipe_food.json +++ b/json/recipes/recipe_food.json @@ -1,4 +1,31 @@ [ + { + "type": "recipe", + "result": "frenchtoast", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_BREAD", + "skill_used": "cooking", + "difficulty": 3, + "time": "12 m", + "charges": 3, + "autolearn": true, + "qualities": [ { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 8, "LIST" ] ] ], + "components": [ + [ [ "milk_standard_raw", 1, "LIST" ] ], + [ [ "powder_eggs", 1 ], [ "eggs_bird", 1, "LIST" ], [ "egg_reptile", 1 ] ], + [ [ "cinnamon", 2 ] ], + [ + [ "flatbread", 2 ], + [ "bread", 2 ], + [ "cornbread", 2 ], + [ "wastebread", 2 ], + [ "sourdough_bread", 2 ], + [ "brioche", 2 ], + [ "hardtack", 2 ] + ], + ] + }, { "type": "recipe", "result": "cheeseburger", @@ -89,5 +116,52 @@ [ "sauerkraut", 1 ] ] ] + }, + { + "type": "recipe", + "result": "blt", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 2, + "time": "6 m", + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ + [ + [ "flatbread", 2 ], + [ "bread", 2 ], + [ "cornbread", 2 ], + [ "wastebread", 2 ], + [ "sourdough_bread", 2 ], + [ "brioche", 2 ] + ], + [ [ "bacon", 1 ] ], + [ [ "lettuce", 1 ], [ "irradiated_lettuce", 1 ] ], + [ [ "can_tomato", 1 ], [ "irradiated_tomato", 1 ], [ "tomato", 1 ] ] + ] + }, + { + "type": "recipe", + "result": "sandwich_cucumber", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_SNACK", + "skill_used": "cooking", + "time": "1 m", + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ + [ + [ "flatbread", 2 ], + [ "bread", 2 ], + [ "cornbread", 2 ], + [ "wastebread", 2 ], + [ "sourdough_bread", 2 ], + [ "brioche", 2 ] + ], + [ [ "cucumber", 1 ], [ "irradiated_cucumber", 1 ] ], + [ [ "mayonnaise", 1 ], [ "mustard", 1 ], [ "horseradish", 1 ], [ "seasoning_salt", 1 ] ] + ] } ] diff --git a/json/requirements/cooking_components.json b/json/requirements/cooking_components.json new file mode 100644 index 0000000..98f16f6 --- /dev/null +++ b/json/requirements/cooking_components.json @@ -0,0 +1,57 @@ +[ + { + "id": "fish_soup_ingredients", + "type": "requirement", + "components": [ + [ [ "broth", 2 ], [ "broth_bone", 2 ] ], + [ + [ "spaghetti_raw", 1 ], + [ "macaroni_raw", 1 ], + [ "noodles_fast", 1 ], + [ "veggy_any", 1, "LIST" ], + [ "sauerkraut", 1 ], + [ "can_corn", 1 ], + [ "dry_veggy", 1 ], + [ "con_milk", 1 ], + [ "flatbread", 1 ], + [ "tortilla_corn", 1 ], + [ "bread", 1 ], + [ "brioche", 1 ], + [ "cornbread", 1 ], + [ "biscuit", 1 ], + [ "hardtack", 1 ], + [ "wastebread", 1 ], + [ "sourdough_bread", 1 ], + [ "flour", 2 ], + [ "cornmeal", 2 ], + [ "milk_powder", 1 ], + [ "crackers", 1 ], + [ "powder_eggs", 1 ], + [ "eggs_bird", 1, "LIST" ], + [ "egg_reptile", 1 ], + [ "dry_beans", 1 ], + [ "raw_beans", 1 ], + [ "dry_lentils", 1 ], + [ "raw_lentils", 1 ], + [ "dry_rice", 1 ], + [ "can_beans", 1 ], + [ "beans_cooked", 1 ], + [ "mushroom", 1 ], + [ "dry_mushroom", 1 ], + [ "mushroom_cooked", 1 ], + [ "morel_cooked", 1 ], + [ "acorns_cooked", 1 ] + ], + [ + [ "fish", 2 ], + [ "dry_fish", 2 ], + [ "fish_smoked", 2 ], + [ "fish_pickled", 2 ], + [ "salted_fish", 2 ], + [ "fish_canned", 2 ], + [ "can_salmon", 2 ], + [ "can_tuna", 2 ] + ] + ] + } +] -- cgit v1.2.1