More campaign map progress

This commit is contained in:
Anuken
2021-09-10 17:07:06 -04:00
parent b8fa15e546
commit caa34c959e
7 changed files with 17 additions and 8 deletions
+11 -2
View File
@@ -425,7 +425,7 @@ public class TechTree implements ContentList{
node(oxynoe, Seq.with(new SectorComplete(coastline)), () -> {
node(cyerce, () -> {
node(aegires, () -> {
node(navanax, () -> {
node(navanax, Seq.with(new SectorComplete(navalFortress)), () -> {
});
});
@@ -539,7 +539,16 @@ public class TechTree implements ContentList{
new Research(navalFactory),
new Research(payloadConveyor)
), () -> {
//TODO naval fortress
node(navalFortress, Seq.with(
new SectorComplete(coastline),
new SectorComplete(extractionOutpost),
new Research(oxynoe),
new Research(minke),
new Research(cyclone),
new Research(ripple)
), () -> {
});
});
});
});