diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-11-12 11:55:14 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-11-12 11:55:14 -0800 |
commit | bd2b3362fa58fa407d9772e0a0bc14e8f7cd0b19 (patch) | |
tree | edf9196734ca5d6a9d904e870195c7634c941df1 /json | |
parent | Convert leg ammo pouch recipe to use requirements. (diff) | |
download | cataclysm-bn-mod_recipe-fixes-bd2b3362fa58fa407d9772e0a0bc14e8f7cd0b19.tar.xz |
Allow oxidizer powder and potassium hydroxide to be crafted with a platinum grille.
Diffstat (limited to 'json')
-rw-r--r-- | json/recipes/chem/chemicals.json | 39 |
1 files changed, 39 insertions, 0 deletions
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 ] ] ] + } +] |