Added missing Erekir tech to tree

This commit is contained in:
Anuken
2022-09-14 19:39:09 -04:00
parent 38d96a26f3
commit bbb612d3cc
2 changed files with 18 additions and 1 deletions

View File

@@ -1404,7 +1404,6 @@ public class Blocks{
}};
cyanogenSynthesizer = new HeatCrafter("cyanogen-synthesizer"){{
//TODO requirements
requirements(Category.crafting, with(Items.carbide, 50, Items.silicon, 80, Items.beryllium, 90));
heatRequirement = 5f;

View File

@@ -148,7 +148,11 @@ public class ErekirTechTree{
node(ventCondenser, Seq.with(new OnSector(aegis)), () -> {
node(chemicalCombustionChamber, Seq.with(new OnSector(basin)), () -> {
node(pyrolysisGenerator, () -> {
node(fluxReactor, () -> {
node(neoplasiaReactor, () -> {
});
});
});
});
});
@@ -247,7 +251,9 @@ public class ErekirTechTree{
node(reinforcedSurgeWall, () -> {
node(reinforcedSurgeWallLarge, () -> {
node(shieldedWall, () -> {
});
});
});
@@ -263,13 +269,21 @@ public class ErekirTechTree{
node(sublimate, Seq.with(new OnSector(marsh)), () -> {
node(afflict, Seq.with(new OnSector(ravine)), () -> {
node(titan, Seq.with(new OnSector(marsh)), () -> {
node(lustre, () -> {
node(smite, () -> {
});
});
});
});
});
node(disperse, Seq.with(tmpNever), () -> {
node(scathe, () -> {
node(malign, () -> {
});
});
});
});
@@ -335,6 +349,10 @@ public class ErekirTechTree{
});
});
node(basicAssemblerModule, () -> {
});
});
});
});