fix fluid recipes with too many inputs
This commit is contained in:
parent
e1436f364b
commit
2ab6edd596
3 changed files with 14 additions and 5 deletions
|
@ -1,6 +1,9 @@
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
Version: 0.0.4
|
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:
|
Changes:
|
||||||
- SE: Less salt in core mining
|
- SE: Less salt in core mining
|
||||||
---------------------------------------------------------------------------------------------------
|
---------------------------------------------------------------------------------------------------
|
||||||
|
|
|
@ -55,11 +55,15 @@ data:extend({
|
||||||
results = {
|
results = {
|
||||||
{"pcb", 2},
|
{"pcb", 2},
|
||||||
},
|
},
|
||||||
ingredients = {
|
ingredients = util.me.more() and {
|
||||||
{"pcb-substrate", 2},
|
{"pcb-substrate", 2},
|
||||||
{"copper-plate", 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},
|
{type="fluid", name="water", amount=10},
|
||||||
|
} or {
|
||||||
|
{"pcb-substrate", 2},
|
||||||
|
{"copper-plate", 2},
|
||||||
|
{type="fluid", name="hydrogen-chloride", amount=15}
|
||||||
},
|
},
|
||||||
enabled = false,
|
enabled = false,
|
||||||
category = "crafting-with-fluid",
|
category = "crafting-with-fluid",
|
||||||
|
|
|
@ -45,8 +45,10 @@ if not mods.Krastorio2 then -- consider this handled in enrichment
|
||||||
util.set_main_product("molten-titanium", "molten-titanium")
|
util.set_main_product("molten-titanium", "molten-titanium")
|
||||||
end
|
end
|
||||||
util.add_ingredient("se-steel-ingot", "salt", 2)
|
util.add_ingredient("se-steel-ingot", "salt", 2)
|
||||||
util.add_ingredient("se-iridium-powder", "chlorine", 20)
|
if not mods.Krastorio2 then
|
||||||
util.add_product("se-iridium-powder", {type="fluid", name="chlorine", amount=19, catalyst_amount=19})
|
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.replace_some_ingredient("se-vitamelange-bloom", "sand", 10, "salt", 1)
|
||||||
util.add_ingredient("se-nutrient-gel", "salt", 1)
|
util.add_ingredient("se-nutrient-gel", "salt", 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue