New campaign map / Fixed #3414

This commit is contained in:
Anuken
2020-11-15 17:11:52 -05:00
parent 9928b0f788
commit 7bd05ad9ad
10 changed files with 27 additions and 8 deletions

View File

@@ -8,8 +8,8 @@ import static mindustry.content.Planets.*;
public class SectorPresets implements ContentList{
public static SectorPreset
groundZero,
craters, biomassFacility, frozenForest, ruinousShores, windsweptIslands, stainedMountains, tarFields, fungalPass,
saltFlats, overgrowth,
craters, biomassFacility, frozenForest, ruinousShores, windsweptIslands, stainedMountains, tarFields,
fungalPass, extractionOutpost, saltFlats, overgrowth,
impact0078, desolateRift, nuclearComplex;
@Override
@@ -56,6 +56,11 @@ public class SectorPresets implements ContentList{
difficulty = 3;
}};
extractionOutpost = new SectorPreset("extractionOutpost", serpulo, 165){{
difficulty = 5;
useAI = false;
}};
fungalPass = new SectorPreset("fungalPass", serpulo, 21){{
difficulty = 4;
useAI = false;

View File

@@ -29,7 +29,7 @@ public class TechTree implements ContentList{
node(junction, () -> {
node(router, () -> {
node(launchPad, () -> {
node(launchPad, Seq.with(new SectorComplete(extractionOutpost)), () -> {
});
node(distributor);
@@ -473,6 +473,17 @@ public class TechTree implements ContentList{
});
});
node(extractionOutpost, Seq.with(
new SectorComplete(stainedMountains),
new SectorComplete(windsweptIslands),
new Research(groundFactory),
new Research(nova),
new Research(airFactory),
new Research(mono)
), () -> {
});
node(saltFlats, Seq.with(
new SectorComplete(windsweptIslands),
new Research(groundFactory),