summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-04-01 19:04:19 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-04-01 19:04:19 -0700
commit3b2f9ceaa1ae87e7c81421e90a1e36b132df0004 (patch)
treeefd3446e4a71f9986264e2ed589d68993c1f1bee
parentUpstream fixed Bonemeal from food processors not supporting human bones. (diff)
downloadcataclysm-bn-mod_recipe-fixes-3b2f9ceaa1ae87e7c81421e90a1e36b132df0004.tar.xz
Fix scrambled eggs from powdered eggs variant.
-rw-r--r--Readme.txt5
-rw-r--r--json/recipes/food/other.json17
2 files changed, 22 insertions, 0 deletions
diff --git a/Readme.txt b/Readme.txt
index 2611579..3e4bd64 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -112,3 +112,8 @@ Use shot_forming instead of bulltet_forming.
Light Turret:
6h ->30m
It took 12 times as long as the medium turret.
+
+---
+Scrambled Eggs:
+From powdered eggs variant now no longer allows the use of non-powdered eggs.
+Powdered eggs requiring water is the entire point of this variant.
diff --git a/json/recipes/food/other.json b/json/recipes/food/other.json
new file mode 100644
index 0000000..d1dc5c2
--- /dev/null
+++ b/json/recipes/food/other.json
@@ -0,0 +1,17 @@
+[
+ {
+ "type": "recipe",
+ "result": "scrambled_eggs",
+ "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 ] ] ]
+ }
+]