hcl pure recipe fix

This commit is contained in:
Brevven 2022-08-13 00:42:04 -07:00
parent 9bb395b973
commit 2e2ecfe4dc
2 changed files with 6 additions and 7 deletions

View file

@ -66,7 +66,7 @@ data:extend({
{
type = "recipe",
name = "hydrogen-chloride-pure",
results = {{type="fluid", name="hydrogen-chloride", amount=10}},
results = {{type="fluid", name="hydrogen-chloride", amount=20}},
ingredients = {
{type="fluid", name="water", amount=10},
{type="fluid", name="chlorine", amount=10},

11
pcb.lua
View file

@ -22,7 +22,6 @@ data:extend({
})
local amount = mods.Krastorio2 and 2 or 1
data:extend({
{
type = "recipe",
@ -42,17 +41,17 @@ data:extend({
type = "recipe",
name = "pcb",
results = {
{"pcb", amount},
{"pcb", 2},
},
ingredients = {
{"pcb-substrate", amount},
{"copper-plate", 1},
util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=10},
{"pcb-substrate", 2},
{"copper-plate", 2},
util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=15},
{type="fluid", name="water", amount=10},
},
enabled = false,
category = "crafting-with-fluid",
energy_required = amount,
energy_required = 4,
},
})