diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-05-25 14:01:07 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2020-05-25 14:01:07 -0700 |
commit | 250195fc24f2bc45cfb90bbe1ecd9015d1f41ab8 (patch) | |
tree | 8421e151d7e7f0aa0cb1553836a3a71424722486 | |
parent | Initial commit (diff) | |
download | cataclysm-bn-mod_recipe-fixes-250195fc24f2bc45cfb90bbe1ecd9015d1f41ab8.tar.xz |
Rename to recipe-fixes
Allow hamburgers to be made with lettuce like cheeseburgers can
-rw-r--r-- | Readme.txt | 2 | ||||
-rw-r--r-- | json/recipes/recipe_food.json | 45 | ||||
-rw-r--r-- | modinfo.json | 6 |
3 files changed, 50 insertions, 3 deletions
diff --git a/Readme.txt b/Readme.txt new file mode 100644 index 0000000..e2cbc6d --- /dev/null +++ b/Readme.txt @@ -0,0 +1,2 @@ +Cheeseburger can now be made with brioche. +Hamburger can noe be made with lettuce. diff --git a/json/recipes/recipe_food.json b/json/recipes/recipe_food.json index 3a0a1cf..0a4f321 100644 --- a/json/recipes/recipe_food.json +++ b/json/recipes/recipe_food.json @@ -44,5 +44,50 @@ [ "sauerkraut", 1 ] ] ] + }, + { + "type": "recipe", + "result": "hamburger", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_MEAT", + "skill_used": "cooking", + "difficulty": 3, + "time": "8 m", + "charges": 2, + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 }, { "id": "COOK", "level": 2 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ + [ [ "meat_red", 1, "LIST" ] ], + [ + [ "flatbread", 2 ], + [ "bread", 2 ], + [ "cornbread", 2 ], + [ "wastebread", 2 ], + [ "sourdough_bread", 2 ], + [ "brioche", 2 ] + ], + [ + [ "pickle", 1 ], + [ "veggy_pickled", 1 ], + [ "irradiated_onion", 1 ], + [ "onion", 1 ], + [ "can_tomato", 1 ], + [ "irradiated_tomato", 1 ], + [ "tomato", 1 ], + [ "lettuce", 1 ], + [ "irradiated_lettuce", 1 ] + ], + [ + [ "ketchup", 1 ], + [ "mustard", 1 ], + [ "horseradish", 1 ], + [ "mayonnaise", 1 ], + [ "bacon", 1 ], + [ "seasoning_salt", 1 ], + [ "soysauce", 1 ], + [ "sauerkraut", 1 ] + ] + ] } ] diff --git a/modinfo.json b/modinfo.json index 614e550..d784e4f 100644 --- a/modinfo.json +++ b/modinfo.json @@ -1,10 +1,10 @@ [ { "type": "MOD_INFO", - "ident": "whynocheeseburger", - "name": "Cheeseburger recipe hotfix", + "ident": "recipe_fixes", + "name": "recipe hotfixes 0.E edition", "authors": ["jc_gargma"], - "description": "For some odd reason, cheeseburgers cannot be made with a brioche bun while hamburgers can. This mod fixes that.", + "description": "Fixes assorted recipe bugs that don't make sense.", "category": "rebalance", "dependencies": [ "dda" ] } |