From 7a71643129e7001521eadb5767b421268b062313 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Mon, 11 Dec 2023 17:09:10 -0800 Subject: Added lye recipes. Add preserved kompot recipes, remove fresh kompot recipe. Replaced obsolete zinc powder with zinc from zinc oxide recipe. Removed obsolete fast noodle recipe. Made material and tool variant suffixes more obvious. Removed the "Craft:" and "Cook:" prefixes from all recipe names. Made certain recipes more clear on the specialized tools required by adding suffixes. --- json/recipes/chem/chemicals.json | 22 ++++++++++++++++++++++ json/recipes/chem/fuel.json | 3 +-- json/recipes/chem/other.json | 22 ++++++++++++++++++++++ 3 files changed, 45 insertions(+), 2 deletions(-) create mode 100644 json/recipes/chem/chemicals.json create mode 100644 json/recipes/chem/other.json (limited to 'json/recipes/chem') diff --git a/json/recipes/chem/chemicals.json b/json/recipes/chem/chemicals.json new file mode 100644 index 0000000..5f5e008 --- /dev/null +++ b/json/recipes/chem/chemicals.json @@ -0,0 +1,22 @@ +[ + { + "result": "lye_sealed", + "type": "recipe", + "id_suffix": "from_electrolysis", + "category": "CC_CHEM", + "subcategory": "CSC_CHEM_CHEMICALS", + "skill_used": "cooking", + "skills_required": [ "electronics", 2 ], + "autolearn": false, + "never_learn": true, + "difficulty": 4, + "time": "40 m", + "batch_time_factors": [ 83, 1 ], + "qualities": [ { "id": "CHEM", "level": 2 } ], + "tools": [ [ [ "electrolysis_kit", 500 ] ] ], + "components": [ + [ [ "salt_water", 4 ], [ "saline", 20 ] ], + [ [ "bottle_plastic", 1 ] ] + ] + } +] diff --git a/json/recipes/chem/fuel.json b/json/recipes/chem/fuel.json index b99e148..82b6277 100644 --- a/json/recipes/chem/fuel.json +++ b/json/recipes/chem/fuel.json @@ -51,7 +51,6 @@ [ "worthy_wine", 80, "LIST" ] ], [ [ "bottle_plastic", 1 ] ] - ], - "flags": [ "ALLOW_ROTTEN" ] + ] } ] diff --git a/json/recipes/chem/other.json b/json/recipes/chem/other.json new file mode 100644 index 0000000..8bd8e77 --- /dev/null +++ b/json/recipes/chem/other.json @@ -0,0 +1,22 @@ +[ + { + "result": "lye_sealed", + "type": "recipe", + "category": "CC_CHEM", + "subcategory": "CSC_CHEM_OTHER", + "skill_used": "survival", + "skills_required": [ "cooking", 1 ], + "autolearn": false, + "never_learn": true, + "difficulty": 2, + "time": "2 h", + "batch_time_factors": [ 83, 1 ], + "qualities": [ { "id": "CHEM", "level": 1 } ], + "tools": [ [ [ "surface_heat", 10, "LIST" ] ] ], + "components": [ + [ [ "water_clean", 2 ], [ "water", 2 ] ], + [ [ "ash", 1000 ] ], + [ [ "bottle_plastic", 1 ] ] + ] + } +] -- cgit v1.2.1