Removed sector 5

This commit is contained in:
Anuken
2022-05-08 12:19:37 -04:00
parent ace6e09979
commit 61b01892e7
3 changed files with 8 additions and 15 deletions

Binary file not shown.

View File

@@ -102,7 +102,7 @@ public class ErekirTechTree{
node(reinforcedPayloadConveyor, Seq.with(new OnSector(four)), () -> { node(reinforcedPayloadConveyor, Seq.with(new OnSector(four)), () -> {
//TODO should only be unlocked in unit sector //TODO should only be unlocked in unit sector
node(constructor, Seq.with(new Research(siliconArcFurnace), new OnSector(four)), () -> { node(constructor, Seq.with(new Research(siliconArcFurnace), new OnSector(four)), () -> {
node(payloadMassDriver, Seq.with(new OnSector(five)), () -> { node(payloadMassDriver, Seq.with(new OnSector(four)), () -> {
//TODO further limitations //TODO further limitations
node(payloadLoader, () -> { node(payloadLoader, () -> {
node(payloadUnloader, () -> { node(payloadUnloader, () -> {
@@ -133,7 +133,7 @@ public class ErekirTechTree{
//TODO move into turbine condenser? //TODO move into turbine condenser?
node(plasmaBore, () -> { node(plasmaBore, () -> {
node(impactDrill, Seq.with(new OnSector(two)), () -> { node(impactDrill, Seq.with(new OnSector(two)), () -> {
node(largePlasmaBore, Seq.with(new OnSector(five)), () -> { node(largePlasmaBore, Seq.with(new OnSector(four)), () -> {
node(eruptionDrill, () -> { node(eruptionDrill, () -> {
}); });
@@ -158,7 +158,7 @@ public class ErekirTechTree{
node(regenProjector, () -> { node(regenProjector, () -> {
//TODO more tiers of build tower or "support" structures like overdrive projectors //TODO more tiers of build tower or "support" structures like overdrive projectors
node(buildTower, Seq.with(new OnSector(five)), () -> { node(buildTower, Seq.with(new OnSector(four)), () -> {
}); });
}); });
@@ -195,7 +195,7 @@ public class ErekirTechTree{
}); });
node(atmosphericConcentrator, Seq.with(new OnSector(four)), () -> { node(atmosphericConcentrator, Seq.with(new OnSector(four)), () -> {
node(cyanogenSynthesizer, Seq.with(new OnSector(five)), () -> { node(cyanogenSynthesizer, Seq.with(new OnSector(four)), () -> {
}); });
}); });
@@ -252,11 +252,11 @@ public class ErekirTechTree{
node(diffuse, Seq.with(new OnSector(two)), () -> { node(diffuse, Seq.with(new OnSector(two)), () -> {
node(sublimate, () -> { node(sublimate, () -> {
//TODO implement //TODO implement
node(titan, Seq.with(new OnSector(five)), () -> { node(titan, Seq.with(new OnSector(four)), () -> {
}); });
node(disperse, Seq.with(new OnSector(five)), () -> { node(disperse, Seq.with(new OnSector(four)), () -> {
}); });
}); });
@@ -313,7 +313,7 @@ public class ErekirTechTree{
}); });
}); });
node(shipAssembler, Seq.with(new OnSector(five)), () -> { node(shipAssembler, Seq.with(new OnSector(four)), () -> {
node(UnitTypes.quell, () -> { node(UnitTypes.quell, () -> {
node(UnitTypes.disrupt, Seq.with(tmpNever), () -> { node(UnitTypes.disrupt, Seq.with(tmpNever), () -> {
@@ -339,10 +339,7 @@ public class ErekirTechTree{
node(two, Seq.with(new SectorComplete(onset), new Research(ductRouter), new Research(ductBridge)), () -> { node(two, Seq.with(new SectorComplete(onset), new Research(ductRouter), new Research(ductBridge)), () -> {
node(three, Seq.with(new SectorComplete(two), new Research(ventCondenser)), () -> { node(three, Seq.with(new SectorComplete(two), new Research(ventCondenser)), () -> {
node(four, Seq.with(new SectorComplete(three)), () -> { node(four, Seq.with(new SectorComplete(three)), () -> {
//TODO doesn't work
node(five, Seq.with(new SectorComplete(four), tmpNever), () -> {
});
}); });
}); });
}); });

View File

@@ -16,7 +16,7 @@ public class SectorPresets{
impact0078, desolateRift, nuclearComplex, planetaryTerminal, impact0078, desolateRift, nuclearComplex, planetaryTerminal,
coastline, navalFortress, coastline, navalFortress,
onset, two, three, four, five onset, two, three, four
; ;
public static void load(){ public static void load(){
@@ -230,10 +230,6 @@ public class SectorPresets{
}; };
}}; }};
five = new SectorPreset("five", erekir, 12){{
difficulty = 7;
}};
//endregion //endregion
} }
} }