hid a bunch of stuff from the tech tree for now

This commit is contained in:
Epowerj 2022-08-08 15:54:33 -04:00
parent 4b9b4f3c0b
commit f4798f5adc

View File

@ -114,7 +114,7 @@ public class ErekirTechTree{
}); });
node(constructor, Seq.with(new OnSector(split)), () -> { node(constructor, Seq.with(new OnSector(split)), () -> {
node(smallDeconstructor, () -> { node(smallDeconstructor, Seq.with(tmpNever), () -> {
node(largeConstructor, () -> { node(largeConstructor, () -> {
}); });
@ -135,7 +135,7 @@ public class ErekirTechTree{
//TODO move into turbine condenser? //TODO move into turbine condenser?
node(plasmaBore, () -> { node(plasmaBore, () -> {
node(impactDrill, Seq.with(new OnSector(aegis)), () -> { node(impactDrill, Seq.with(new OnSector(aegis)), () -> {
node(largePlasmaBore, Seq.with(new OnSector(basin)), () -> { node(largePlasmaBore, Seq.with(tmpNever), () -> {
node(eruptionDrill, () -> { node(eruptionDrill, () -> {
}); });
@ -153,12 +153,12 @@ public class ErekirTechTree{
}); });
}); });
node(beamTower, Seq.with(new OnSector(basin)), () -> { node(beamTower, Seq.with(tmpNever), () -> {
}); });
node(regenProjector, () -> { node(regenProjector, Seq.with(tmpNever), () -> {
//TODO more tiers of build tower or "support" structures like overdrive projectors //TODO more tiers of build tower or "support" structures like overdrive projectors
node(buildTower, Seq.with(new OnSector(basin)), () -> { node(buildTower, Seq.with(new OnSector(basin)), () -> {
node(shockwaveTower, () -> { node(shockwaveTower, () -> {
@ -193,7 +193,7 @@ public class ErekirTechTree{
node(siliconArcFurnace, () -> { node(siliconArcFurnace, () -> {
node(electrolyzer, Seq.with(new OnSector(atlas)), () -> { node(electrolyzer, Seq.with(new OnSector(atlas)), () -> {
node(oxidationChamber, Seq.with(new Research(tankRefabricator), new OnSector(marsh)), () -> { node(oxidationChamber, Seq.with(new Research(tankRefabricator), new OnSector(marsh)), () -> {
node(electricHeater, Seq.with(new OnSector(marsh)), () -> { node(electricHeater, Seq.with(tmpNever), () -> {
node(heatRedirector, () -> { node(heatRedirector, () -> {
node(surgeCrucible, () -> { node(surgeCrucible, () -> {
@ -288,7 +288,7 @@ public class ErekirTechTree{
node(tankFabricator, Seq.with(new Research(siliconArcFurnace), new Research(plasmaBore), new Research(turbineCondenser)), () -> { node(tankFabricator, Seq.with(new Research(siliconArcFurnace), new Research(plasmaBore), new Research(turbineCondenser)), () -> {
node(UnitTypes.stell); node(UnitTypes.stell);
node(unitRepairTower, Seq.with(new OnSector(basin), new Research(mechRefabricator)), () -> { node(unitRepairTower, Seq.with(tmpNever, new Research(mechRefabricator)), () -> {
}); });