This commit is contained in:
Anuken
2022-02-20 15:52:49 -05:00
parent ec7a53376c
commit a75442126b
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -1883,18 +1883,21 @@ public class Blocks{
health = 90; health = 90;
speed = 4f; speed = 4f;
regionRotated1 = 1; regionRotated1 = 1;
researchCostMultiplier = 0.3f;
}}; }};
overflowDuct = new OverflowDuct("overflow-duct"){{ overflowDuct = new OverflowDuct("overflow-duct"){{
requirements(Category.distribution, with(Items.graphite, 8, Items.beryllium, 8)); requirements(Category.distribution, with(Items.graphite, 8, Items.beryllium, 8));
health = 90; health = 90;
speed = 4f; speed = 4f;
researchCostMultiplier = 1.5f;
}}; }};
ductBridge = new DuctBridge("duct-bridge"){{ ductBridge = new DuctBridge("duct-bridge"){{
requirements(Category.distribution, with(Items.graphite, 15, Items.beryllium, 10)); requirements(Category.distribution, with(Items.graphite, 15, Items.beryllium, 10));
health = 90; health = 90;
speed = 4f; speed = 4f;
researchCostMultiplier = 0.3f;
}}; }};
ductUnloader = new DirectionalUnloader("duct-unloader"){{ ductUnloader = new DirectionalUnloader("duct-unloader"){{
@@ -32,7 +32,7 @@ public class ErekirTechTree{
//context().researchCostMultipliers = costMultipliers; //context().researchCostMultipliers = costMultipliers;
node(duct, erekirSector, () -> { node(duct, erekirSector, () -> {
node(ductRouter, Seq.with(new SectorComplete(onset)), () -> { node(ductRouter, () -> {
node(ductBridge, () -> { node(ductBridge, () -> {
node(surgeConveyor, () -> { node(surgeConveyor, () -> {
node(surgeRouter); node(surgeRouter);
@@ -45,7 +45,7 @@ public class ErekirTechTree{
}); });
}); });
node(overflowDuct, () -> { node(overflowDuct, Seq.with(new OnSector(two)), () -> {
node(reinforcedContainer, () -> { node(reinforcedContainer, () -> {
node(ductUnloader, () -> { node(ductUnloader, () -> {
@@ -256,7 +256,7 @@ public class ErekirTechTree{
//TODO more sectors //TODO more sectors
node(onset, () -> { node(onset, () -> {
node(two, Seq.with(new SectorComplete(onset)), () -> { node(two, Seq.with(new SectorComplete(onset), new Research(ductRouter), new Research(ductBridge)), () -> {
node(three, Seq.with(new SectorComplete(two), new Research(reinforcedContainer), new Research(ductUnloader), new Research(ventCondenser)), () -> { 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)), () -> { node(four, Seq.with(new SectorComplete(three), new Research(electrolyzer), new Research(oxidationChamber), new Research(chemicalCombustionChamber)), () -> {
//TODO research reqs? //TODO research reqs?