mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-07-22 05:38:19 +07:00
Removed sector 5
This commit is contained in:
Binary file not shown.
@ -102,7 +102,7 @@ public class ErekirTechTree{
|
||||
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)), () -> {
|
||||
node(payloadMassDriver, Seq.with(new OnSector(five)), () -> {
|
||||
node(payloadMassDriver, Seq.with(new OnSector(four)), () -> {
|
||||
//TODO further limitations
|
||||
node(payloadLoader, () -> {
|
||||
node(payloadUnloader, () -> {
|
||||
@ -133,7 +133,7 @@ public class ErekirTechTree{
|
||||
//TODO move into turbine condenser?
|
||||
node(plasmaBore, () -> {
|
||||
node(impactDrill, Seq.with(new OnSector(two)), () -> {
|
||||
node(largePlasmaBore, Seq.with(new OnSector(five)), () -> {
|
||||
node(largePlasmaBore, Seq.with(new OnSector(four)), () -> {
|
||||
node(eruptionDrill, () -> {
|
||||
|
||||
});
|
||||
@ -158,7 +158,7 @@ public class ErekirTechTree{
|
||||
|
||||
node(regenProjector, () -> {
|
||||
//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(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(sublimate, () -> {
|
||||
//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.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(three, Seq.with(new SectorComplete(two), new Research(ventCondenser)), () -> {
|
||||
node(four, Seq.with(new SectorComplete(three)), () -> {
|
||||
//TODO doesn't work
|
||||
node(five, Seq.with(new SectorComplete(four), tmpNever), () -> {
|
||||
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
@ -16,7 +16,7 @@ public class SectorPresets{
|
||||
impact0078, desolateRift, nuclearComplex, planetaryTerminal,
|
||||
coastline, navalFortress,
|
||||
|
||||
onset, two, three, four, five
|
||||
onset, two, three, four
|
||||
;
|
||||
|
||||
public static void load(){
|
||||
@ -230,10 +230,6 @@ public class SectorPresets{
|
||||
};
|
||||
}};
|
||||
|
||||
five = new SectorPreset("five", erekir, 12){{
|
||||
difficulty = 7;
|
||||
}};
|
||||
|
||||
//endregion
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user