From bd2b3362fa58fa407d9772e0a0bc14e8f7cd0b19 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sun, 12 Nov 2023 11:55:14 -0800 Subject: Allow oxidizer powder and potassium hydroxide to be crafted with a platinum grille. --- json/recipes/chem/chemicals.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 json/recipes/chem/chemicals.json (limited to 'json/recipes') diff --git a/json/recipes/chem/chemicals.json b/json/recipes/chem/chemicals.json new file mode 100644 index 0000000..5c2859d --- /dev/null +++ b/json/recipes/chem/chemicals.json @@ -0,0 +1,39 @@ +[ + { + "type": "recipe", + "result": "oxy_powder", + "byproducts": [ [ "salt_water", 2 ] ], + "category": "CC_CHEM", + "subcategory": "CSC_CHEM_CHEMICALS", + "skill_used": "cooking", + "skills_required": [ "electronics", 2 ], + "difficulty": 7, + "time": "45 m", + "batch_time_factors": [ 80, 5 ], + "//": "abstracting using chloralkali process (hot solution, unpartitioned cell) to produce sodium chlorate, then perchlorate by anodic oxidation on platinum, then ammonia perchlorate by double decomposition from sodium perchlorate and ammonium chloride; while we can't directly use bleach here but we do end up recovering some brine", + "book_learn": [ [ "adv_chemistry", 4 ], [ "textbook_chemistry", 4 ], [ "recipe_labchem", 4 ] ], + "qualities": [ { "id": "CHEM", "level": 2 }, { "id": "BOIL", "level": 1 } ], + "tools": [ [ [ "electrolysis_kit", 750 ] ], [ [ "surface_heat", 25, "LIST" ] ], [ [ "platinum_small", -1 ], [ "platinum_grille", -1 ] ] ], + "components": [ [ [ "salt_water", 4 ], [ "saline", 20 ] ], [ [ "ammonia", 1 ] ], [ [ "chem_muriatic_acid", 1 ] ] ] + }, + { + "type": "recipe", + "result": "chem_potassium_hydroxide", + "byproducts": [ [ "water" ] ], + "category": "CC_CHEM", + "subcategory": "CSC_CHEM_CHEMICALS", + "skill_used": "cooking", + "difficulty": 5, + "charges": 680, + "time": "45 m", + "book_learn": [ [ "textbook_chemistry", 4 ], [ "adv_chemistry", 5 ] ], + "tools": [ + [ [ "electrolysis_kit", 100 ] ], + [ [ "chemistry_set_basic", -1 ], [ "chemistry_set", -1 ] ], + [ [ "platinum_small", -1 ], [ "platinum_grille", -1 ] ], + [ [ "silver_small", -1 ] ], + [ [ "salt", -1 ] ] + ], + "components": [ [ [ "water_clean", 3 ] ], [ [ "chem_potassium_chloride", 25 ] ] ] + } +] -- cgit v1.2.1