Skip to content

Commit

Permalink
Wire pole nerfs
Browse files Browse the repository at this point in the history
  • Loading branch information
Slotterleet committed Oct 13, 2024
1 parent 64abaf7 commit 2aa857b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/fos/content/FOSBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public class FOSBlocks {
liquidConveyor,

// FLUIDS
copperPipe, brassPipe, fluidJunction, fluidBridge, pneumaticPump, pumpjack, fluidRouter, fluidBarrel, fluidTank,
copperPipe, brassPipe, fluidJunction, fluidBridge, pneumaticPump, pumpjack, fluidRouter, fluidContainer, fluidTank,

// POWER
zincWire, copperWire, brassWire, zincWirePole, copperWirePole, brassWirePole, windTurbine, steamTurbine, heatGenerator, plasmaLauncher, solarPanelMedium,
Expand Down Expand Up @@ -1596,7 +1596,7 @@ diamond, new MissileBulletType(5f, 5){{
liquidCapacity = 30f;
requirements(Category.liquid, with(copper, 3));
}};
fluidBarrel = new LiquidRouter("fluid-barrel"){{
fluidContainer = new LiquidRouter("fluid-container"){{
scaledHealth = 75;
size = 2;
liquidCapacity = 300f;
Expand Down Expand Up @@ -1630,7 +1630,7 @@ diamond, new MissileBulletType(5f, 5){{
zincWirePole = new PowerWireNode("tin-wire-pole"){{
health = 30;
consumesPower = true;
consumePower(4f / 60f);
consumePower(10f / 60f);
range = 4;
fogRadius = 1;
squareSprite = false;
Expand All @@ -1641,7 +1641,7 @@ diamond, new MissileBulletType(5f, 5){{
copperWirePole = new PowerWireNode("copper-wire-pole"){{
health = 50;
consumesPower = true;
consumePower(1f / 60f);
consumePower(10f / 60f);
range = 7;
fogRadius = 1;
squareSprite = false;
Expand All @@ -1657,7 +1657,7 @@ diamond, new MissileBulletType(5f, 5){{
fogRadius = 1;
squareSprite = false;
researchCostMultiplier = 0.25f;
requirements(Category.power, with(brass, 20));
requirements(Category.power, with(brass, 20, vanadium, 5));

((PowerWire)brassWire).bridgeReplacement = this;
}};
Expand Down

0 comments on commit 2aa857b

Please sign in to comment.