summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-05-25 13:43:53 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-05-25 13:43:53 -0700
commit0d1c05cefab8c63b2147a1a81e537c74b5cbeb73 (patch)
treee663a3f3da09aa5988dc2971dda0051b6519bf52
downloadcataclysm-dda-mod_recipe-fixes-0d1c05cefab8c63b2147a1a81e537c74b5cbeb73.tar.xz
Initial commit
-rw-r--r--json/recipes/recipe_food.json48
-rw-r--r--modinfo.json11
2 files changed, 59 insertions, 0 deletions
diff --git a/json/recipes/recipe_food.json b/json/recipes/recipe_food.json
new file mode 100644
index 0000000..3a0a1cf
--- /dev/null
+++ b/json/recipes/recipe_food.json
@@ -0,0 +1,48 @@
+[
+ {
+ "type": "recipe",
+ "result": "cheeseburger",
+ "category": "CC_FOOD",
+ "subcategory": "CSC_FOOD_MEAT",
+ "skill_used": "cooking",
+ "difficulty": 3,
+ "time": "9 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 ]
+ ],
+ [ [ "cheese", 1 ], [ "cheese_hard", 1 ], [ "can_cheese", 1 ] ],
+ [
+ [ "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
new file mode 100644
index 0000000..614e550
--- /dev/null
+++ b/modinfo.json
@@ -0,0 +1,11 @@
+[
+ {
+ "type": "MOD_INFO",
+ "ident": "whynocheeseburger",
+ "name": "Cheeseburger recipe hotfix",
+ "authors": ["jc_gargma"],
+ "description": "For some odd reason, cheeseburgers cannot be made with a brioche bun while hamburgers can. This mod fixes that.",
+ "category": "rebalance",
+ "dependencies": [ "dda" ]
+ }
+]