From 876df3cdabe3a9fc616580817b0514bc842a7867 Mon Sep 17 00:00:00 2001 From: Brevven Date: Wed, 28 Dec 2022 02:25:25 -0800 Subject: [PATCH] less copper pcb --- changelog.txt | 1 + prototypes/pcb.lua | 14 +++++++------- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/changelog.txt b/changelog.txt index 08740a6..5743bcc 100644 --- a/changelog.txt +++ b/changelog.txt @@ -3,6 +3,7 @@ Version: 0.0.7 Date: 2022-12-28 Changes: - K2: PCBs used for advanced circuits instead of electronic components. + - Less copper required for PCBs --------------------------------------------------------------------------------------------------- Version: 0.0.6 Date: 2022-12-28 diff --git a/prototypes/pcb.lua b/prototypes/pcb.lua index 556e8f9..e3a0977 100644 --- a/prototypes/pcb.lua +++ b/prototypes/pcb.lua @@ -52,21 +52,21 @@ data:extend({ type = "recipe", name = "pcb", results = { - {"pcb", 2}, + {"pcb", 4}, }, ingredients = util.me.more() and { - {"pcb-substrate", 2}, + {"pcb-substrate", 4}, {"copper-plate", 1}, - {"ferric-chloride", 1}, - {type="fluid", name="water", amount=10}, + {"ferric-chloride", 2}, + {type="fluid", name="water", amount=20}, } or { - {"pcb-substrate", 2}, + {"pcb-substrate", 4}, {"copper-plate", 1}, - {type="fluid", name="hydrogen-chloride", amount=15} + {type="fluid", name="hydrogen-chloride", amount=30} }, enabled = false, category = "crafting-with-fluid", - energy_required = 4, + energy_required = 8, }, }) util.add_unlock("advanced-electronics", "pcb")