WIP map submission

This commit is contained in:
Anuken
2024-09-03 13:36:46 -04:00
parent 21a2eccf69
commit 0d8d73f9e6
5 changed files with 21 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ import static mindustry.content.Planets.*;
public class SectorPresets{
public static SectorPreset
groundZero,
craters, biomassFacility, frozenForest, ruinousShores, windsweptIslands, stainedMountains, tarFields,
craters, biomassFacility, frozenForest, ruinousShores, facility32m, windsweptIslands, stainedMountains, tarFields,
fungalPass, extractionOutpost, saltFlats, overgrowth,
impact0078, desolateRift, nuclearComplex, planetaryTerminal,
coastline, navalFortress,
@@ -52,6 +52,11 @@ public class SectorPresets{
difficulty = 3;
}};
facility32m = new SectorPreset("facility32m", serpulo, 170){{
captureWave = 25;
difficulty = 4;
}};
windsweptIslands = new SectorPreset("windsweptIslands", serpulo, 246){{
captureWave = 30;
difficulty = 4;

View File

@@ -502,15 +502,19 @@ public class SerpuloTechTree{
});
});
node(extractionOutpost, Seq.with(
new SectorComplete(stainedMountains),
new SectorComplete(windsweptIslands),
new Research(groundFactory),
new Research(nova),
new Research(airFactory),
new Research(mono)
node(facility32m, Seq.with(
new Research(pneumaticDrill)
), () -> {
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(

View File

@@ -72,7 +72,7 @@ public class WaveInfoDialog extends BaseDialog{
groups = maps.readWaves(Core.app.getClipboardText());
buildGroups();
}catch(Exception e){
e.printStackTrace();
Log.err(e);
ui.showErrorMessage("@waves.invalid");
}
dialog.hide();