hcl pure recipe fix
This commit is contained in:
parent
9bb395b973
commit
2e2ecfe4dc
2 changed files with 6 additions and 7 deletions
|
@ -66,7 +66,7 @@ data:extend({
|
||||||
{
|
{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "hydrogen-chloride-pure",
|
name = "hydrogen-chloride-pure",
|
||||||
results = {{type="fluid", name="hydrogen-chloride", amount=10}},
|
results = {{type="fluid", name="hydrogen-chloride", amount=20}},
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{type="fluid", name="water", amount=10},
|
{type="fluid", name="water", amount=10},
|
||||||
{type="fluid", name="chlorine", amount=10},
|
{type="fluid", name="chlorine", amount=10},
|
||||||
|
|
11
pcb.lua
11
pcb.lua
|
@ -22,7 +22,6 @@ data:extend({
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
||||||
local amount = mods.Krastorio2 and 2 or 1
|
|
||||||
data:extend({
|
data:extend({
|
||||||
{
|
{
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
|
@ -42,17 +41,17 @@ data:extend({
|
||||||
type = "recipe",
|
type = "recipe",
|
||||||
name = "pcb",
|
name = "pcb",
|
||||||
results = {
|
results = {
|
||||||
{"pcb", amount},
|
{"pcb", 2},
|
||||||
},
|
},
|
||||||
ingredients = {
|
ingredients = {
|
||||||
{"pcb-substrate", amount},
|
{"pcb-substrate", 2},
|
||||||
{"copper-plate", 1},
|
{"copper-plate", 2},
|
||||||
util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=10},
|
util.me.more() and {"ferric-chloride", 1} or {type="fluid", name="hydrogen-chloride", amount=15},
|
||||||
{type="fluid", name="water", amount=10},
|
{type="fluid", name="water", amount=10},
|
||||||
},
|
},
|
||||||
enabled = false,
|
enabled = false,
|
||||||
category = "crafting-with-fluid",
|
category = "crafting-with-fluid",
|
||||||
energy_required = amount,
|
energy_required = 4,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue