fix fluid recipes with too many inputs

This commit is contained in:
Brevven 2022-12-23 22:03:44 -08:00
parent e1436f364b
commit 2ab6edd596
3 changed files with 14 additions and 5 deletions

View file

@ -1,6 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 0.0.4
Date: 2022-12-09
Date: 2022-12-24
Fixes:
- SE/K2: Iridium powder can be made in normal chem plant
- Without "more intermediates", PCB can be made in normal chem plant
Changes:
- SE: Less salt in core mining
---------------------------------------------------------------------------------------------------

View file

@ -55,11 +55,15 @@ data:extend({
results = {
{"pcb", 2},
},
ingredients = {
ingredients = util.me.more() and {
{"pcb-substrate", 2},
{"copper-plate", 2},
util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=15},
{"ferric-chloride", 1},
{type="fluid", name="water", amount=10},
} or {
{"pcb-substrate", 2},
{"copper-plate", 2},
{type="fluid", name="hydrogen-chloride", amount=15}
},
enabled = false,
category = "crafting-with-fluid",

View file

@ -45,8 +45,10 @@ if not mods.Krastorio2 then -- consider this handled in enrichment
util.set_main_product("molten-titanium", "molten-titanium")
end
util.add_ingredient("se-steel-ingot", "salt", 2)
util.add_ingredient("se-iridium-powder", "chlorine", 20)
util.add_product("se-iridium-powder", {type="fluid", name="chlorine", amount=19, catalyst_amount=19})
if not mods.Krastorio2 then
util.add_ingredient("se-iridium-powder", "chlorine", 20)
util.add_product("se-iridium-powder", {type="fluid", name="chlorine", amount=19, catalyst_amount=19})
end
util.replace_some_ingredient("se-vitamelange-bloom", "sand", 10, "salt", 1)
util.add_ingredient("se-nutrient-gel", "salt", 1)