WIP/unfinished map

This commit is contained in:
Anuken
2022-06-23 16:55:16 -04:00
parent a39fe2cb37
commit e682a0f1d3
3 changed files with 12 additions and 4 deletions

View File

@ -289,7 +289,7 @@ public class ErekirTechTree{
});
node(shipFabricator, Seq.with(new OnSector(two)), () -> {
node(shipFabricator, Seq.with(new OnSector(lake)), () -> {
node(UnitTypes.elude);
node(mechFabricator, Seq.with(new OnSector(three)), () -> {
@ -342,10 +342,13 @@ public class ErekirTechTree{
});
});
//TODO more sectors
node(onset, () -> {
node(two, Seq.with(new SectorComplete(onset), new Research(ductRouter), new Research(ductBridge)), () -> {
node(three, Seq.with(new SectorComplete(two), new Research(ventCondenser), new Research(shipFabricator)), () -> {
node(lake, Seq.with(new SectorComplete(two)), () -> {
});
node(three, Seq.with(new SectorComplete(two), new SectorComplete(lake), new Research(ventCondenser), new Research(shipFabricator)), () -> {
node(four, Seq.with(new SectorComplete(three)), () -> {
});