Moved Payload Propulsion Tower to Erekir

This commit is contained in:
Anuken
2022-10-26 16:26:12 -04:00
parent 6566bf9dd5
commit ba10fc252c
17 changed files with 8 additions and 9 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@@ -1546,7 +1546,7 @@ block.payload-router.name = Payload Router
block.duct.name = Duct block.duct.name = Duct
block.duct-router.name = Duct Router block.duct-router.name = Duct Router
block.duct-bridge.name = Duct Bridge block.duct-bridge.name = Duct Bridge
block.payload-propulsion-tower.name = Payload Propulsion Tower block.large-payload-mass-driver.name = Large Payload Mass Driver
block.payload-void.name = Payload Void block.payload-void.name = Payload Void
block.payload-source.name = Payload Source block.payload-source.name = Payload Source
block.disassembler.name = Disassembler block.disassembler.name = Disassembler

View File

@@ -331,7 +331,6 @@
63397=disarmed|status-disarmed-ui 63397=disarmed|status-disarmed-ui
63385=duct|block-duct-ui 63385=duct|block-duct-ui
63376=repair-turret|block-repair-turret-ui 63376=repair-turret|block-repair-turret-ui
63375=payload-propulsion-tower|block-payload-propulsion-tower-ui
63374=payload-incinerator|block-payload-incinerator-ui 63374=payload-incinerator|block-payload-incinerator-ui
63373=payload-void|block-payload-void-ui 63373=payload-void|block-payload-void-ui
63372=payload-source|block-payload-source-ui 63372=payload-source|block-payload-source-ui
@@ -581,3 +580,4 @@
63102=sand-floor|block-sand-floor-ui 63102=sand-floor|block-sand-floor-ui
63101=crystalline-vent|block-crystalline-vent-ui 63101=crystalline-vent|block-crystalline-vent-ui
63100=heat-router|block-heat-router-ui 63100=heat-router|block-heat-router-ui
63099=large-payload-mass-driver|block-large-payload-mass-driver-ui

Binary file not shown.

View File

@@ -155,7 +155,7 @@ public class Blocks{
unitRepairTower, unitRepairTower,
//payloads //payloads
payloadConveyor, payloadRouter, reinforcedPayloadConveyor, reinforcedPayloadRouter, payloadMassDriver, payloadPropulsionTower, smallDeconstructor, deconstructor, constructor, largeConstructor, payloadLoader, payloadUnloader, payloadConveyor, payloadRouter, reinforcedPayloadConveyor, reinforcedPayloadRouter, payloadMassDriver, largePayloadMassDriver, smallDeconstructor, deconstructor, constructor, largeConstructor, payloadLoader, payloadUnloader,
//logic //logic
message, switchBlock, microProcessor, logicProcessor, hyperProcessor, largeLogicDisplay, logicDisplay, memoryCell, memoryBank, message, switchBlock, microProcessor, logicProcessor, hyperProcessor, largeLogicDisplay, logicDisplay, memoryCell, memoryBank,
@@ -5583,15 +5583,15 @@ public class Blocks{
consumePower(0.5f); consumePower(0.5f);
}}; }};
payloadPropulsionTower = new PayloadMassDriver("payload-propulsion-tower"){{ largePayloadMassDriver = new PayloadMassDriver("large-payload-mass-driver"){{
requirements(Category.units, with(Items.thorium, 300, Items.silicon, 200, Items.plastanium, 200, Items.phaseFabric, 50)); requirements(Category.units, with(Items.thorium, 200, Items.tungsten, 200, Items.silicon, 200, Items.graphite, 100, Items.oxide, 30));
regionSuffix = "-dark"; regionSuffix = "-dark";
size = 5; size = 5;
reload = 130f; reload = 130f;
chargeTime = 100f; chargeTime = 100f;
range = 1100f; range = 1100f;
maxPayloadSize = 3.5f; maxPayloadSize = 3.5f;
consumePower(6f); consumePower(3f);
}}; }};
smallDeconstructor = new PayloadDeconstructor("small-deconstructor"){{ smallDeconstructor = new PayloadDeconstructor("small-deconstructor"){{

View File

@@ -107,10 +107,9 @@ public class ErekirTechTree{
//TODO further limitations //TODO further limitations
node(payloadLoader, () -> { node(payloadLoader, () -> {
node(payloadUnloader, () -> { node(payloadUnloader, () -> {
//TODO replace. node(largePayloadMassDriver, () -> {
//node(payloadPropulsionTower, () -> {
//}); });
}); });
}); });