Misc research tweaks

This commit is contained in:
Anuken
2022-02-20 13:39:41 -05:00
parent 74233fdc2c
commit c439ab0c8f
4 changed files with 8 additions and 9 deletions

View File

@ -92,7 +92,7 @@ public class ErekirTechTree{
//TODO move into turbine condenser?
node(plasmaBore, () -> {
node(impactDrill, Seq.with(new OnSector(aware)), () -> {
node(impactDrill, Seq.with(new OnSector(two)), () -> {
node(largePlasmaBore, Seq.with(new OnSector(five)), () -> {
node(eruptionDrill, () -> {
@ -103,7 +103,7 @@ public class ErekirTechTree{
node(turbineCondenser, () -> {
node(beamNode, () -> {
node(ventCondenser, Seq.with(new OnSector(aware)), () -> {
node(ventCondenser, Seq.with(new OnSector(two)), () -> {
node(chemicalCombustionChamber, Seq.with(new OnSector(three)), () -> {
node(pyrolysisGenerator, () -> {
@ -124,7 +124,7 @@ public class ErekirTechTree{
});
});
node(reinforcedConduit, () -> {
node(reinforcedConduit, Seq.with(new OnSector(two)), () -> {
//TODO maybe should be even later
node(reinforcedPump, Seq.with(new OnSector(three)), () -> {
//TODO T2 pump, consume cyanogen or similar
@ -257,8 +257,8 @@ public class ErekirTechTree{
//TODO more sectors
node(onset, () -> {
node(aware, Seq.with(new SectorComplete(onset), new Research(ductRouter)), () -> {
node(three, Seq.with(new SectorComplete(aware), new Research(reinforcedContainer), new Research(ductUnloader), new Research(ventCondenser)), () -> {
node(two, Seq.with(new SectorComplete(onset), new Research(ductRouter)), () -> {
node(three, Seq.with(new SectorComplete(two), new Research(reinforcedContainer), new Research(ductUnloader), new Research(ventCondenser)), () -> {
node(four, Seq.with(new SectorComplete(three), new Research(electrolyzer), new Research(oxidationChamber), new Research(chemicalCombustionChamber)), () -> {
//TODO research reqs?
node(five, Seq.with(new SectorComplete(four)), () -> {