Payload mass driver + More payload tech

This commit is contained in:
Anuken
2022-02-12 10:47:18 -05:00
parent b079955b52
commit abf813cd25
4 changed files with 25 additions and 18 deletions

View File

@ -56,26 +56,34 @@ public class ErekirTechTree{
});
});
//TODO should only be unlocked in unit sector
node(constructor, Seq.with(new Research(siliconArcFurnace), new OnSector(four)), () -> {
node(reinforcedPayloadConveyor, Seq.with(new OnSector(four)), () -> {
//TODO should only be unlocked in unit sector
node(constructor, Seq.with(new Research(siliconArcFurnace), new OnSector(four)), () -> {
//TODO further limitations
node(payloadLoader, () -> {
node(payloadUnloader, () -> {
node(payloadPropulsionTower, () -> {
node(payloadMassDriver, () -> {
//TODO further limitations
node(payloadLoader, () -> {
node(payloadUnloader, () -> {
node(payloadPropulsionTower, () -> {
});
});
});
node(smallDeconstructor, () -> {
node(largeConstructor, () -> {
});
node(deconstructor, () -> {
});
});
});
});
node(smallDeconstructor, () -> {
node(largeConstructor, () -> {
node(reinforcedPayloadRouter, () -> {
});
node(deconstructor, () -> {
});
});
});
});