Removed Polar Aerodrome for now

This commit is contained in:
Anuken
2024-09-24 15:56:19 -04:00
parent 978f16b8e3
commit d6912b10d1
2 changed files with 13 additions and 7 deletions

View File

@@ -8,7 +8,7 @@ public class SectorPresets{
public static SectorPreset public static SectorPreset
groundZero, groundZero,
craters, biomassFacility, taintedWoods, frozenForest, ruinousShores, facility32m, windsweptIslands, stainedMountains, tarFields, craters, biomassFacility, taintedWoods, frozenForest, ruinousShores, facility32m, windsweptIslands, stainedMountains, tarFields,
fungalPass, infestedCanyons, atolls, extractionOutpost, polarAerodrome, saltFlats, overgrowth, fungalPass, infestedCanyons, atolls, extractionOutpost, saltFlats, overgrowth, //polarAerodrome,
impact0078, desolateRift, nuclearComplex, planetaryTerminal, impact0078, desolateRift, nuclearComplex, planetaryTerminal,
coastline, navalFortress, coastline, navalFortress,
@@ -76,9 +76,10 @@ public class SectorPresets{
difficulty = 5; difficulty = 5;
}}; }};
polarAerodrome = new SectorPreset("polarAerodrome", serpulo, 68){{ //TODO: removed for now
difficulty = 7; //polarAerodrome = new SectorPreset("polarAerodrome", serpulo, 68){{
}}; // difficulty = 7;
//}};
coastline = new SectorPreset("coastline", serpulo, 108){{ coastline = new SectorPreset("coastline", serpulo, 108){{
captureWave = 30; captureWave = 30;

View File

@@ -378,7 +378,7 @@ public class SerpuloTechTree{
node(flare, () -> { node(flare, () -> {
node(horizon, () -> { node(horizon, () -> {
node(zenith, () -> { node(zenith, () -> {
node(antumbra, Seq.with(new SectorComplete(polarAerodrome)), () -> { node(antumbra, () -> {
node(eclipse, () -> { node(eclipse, () -> {
}); });
@@ -514,17 +514,22 @@ public class SerpuloTechTree{
new Research(airFactory), new Research(airFactory),
new Research(mono) new Research(mono)
), () -> { ), () -> {
node(polarAerodrome, Seq.with( //TODO: removed for now
/*node(polarAerodrome, Seq.with(
new SectorComplete(fungalPass), new SectorComplete(fungalPass),
new SectorComplete(desolateRift),
new SectorComplete(overgrowth), new SectorComplete(overgrowth),
new Research(multiplicativeReconstructor), new Research(multiplicativeReconstructor),
new Research(zenith), new Research(zenith),
new Research(swarmer), new Research(swarmer),
new Research(cyclone), new Research(cyclone),
new Research(blastDrill) new Research(blastDrill),
new Research(blastDrill),
new Research(massDriver)
), () -> { ), () -> {
}); });
*/
}); });
}); });