Origin testing

This commit is contained in:
Anuken
2022-10-28 16:15:09 -04:00
parent 0b9da88ebf
commit 42d929f32d
7 changed files with 13 additions and 4 deletions

View File

@@ -385,7 +385,9 @@ public class ErekirTechTree{
node(siege, Seq.with(new SectorComplete(crevice)), () -> {
node(crossroads, Seq.with(new SectorComplete(siege)), () -> {
node(karst, Seq.with(new SectorComplete(crossroads), new Research(coreAcropolis)), () -> {
node(origin, Seq.with(new SectorComplete(karst), new Research(coreAcropolis), new Research(UnitTypes.vanquish), new Research(UnitTypes.disrupt), new Research(UnitTypes.collaris)), () -> {
});
});
});
});

View File

@@ -66,6 +66,7 @@ public class Planets{
defaultCore = Blocks.coreBastion;
iconColor = Color.valueOf("ff9266");
hiddenItems.addAll(Items.serpuloItems).removeAll(Items.erekirItems);
enemyBuildSpeedMultiplier = 0.4f;
//TODO SHOULD there be lighting?
updateLighting = false;

View File

@@ -12,8 +12,8 @@ public class SectorPresets{
impact0078, desolateRift, nuclearComplex, planetaryTerminal,
coastline, navalFortress,
onset, aegis, lake, intersect, basin, atlas, split, marsh, peaks, ravine, caldera, stronghold, crevice, siege,
crossroads, karst;
onset, aegis, lake, intersect, basin, atlas, split, marsh, peaks, ravine, caldera,
stronghold, crevice, siege, crossroads, karst, origin;
public static void load(){
//region serpulo
@@ -181,6 +181,10 @@ public class SectorPresets{
captureWave = 10;
}};
origin = new SectorPreset("origin", erekir, 12){{
difficulty = 10;
}};
//endregion
}
}