Tweaked tech tree and for marsh

This commit is contained in:
Epowerj
2022-08-03 16:33:14 -04:00
parent e2dea0f84e
commit 00d6a73c27
2 changed files with 5 additions and 4 deletions

View File

@ -2452,6 +2452,7 @@ public class Blocks{
//TODO rename //TODO rename
chemicalCombustionChamber = new ConsumeGenerator("chemical-combustion-chamber"){{ chemicalCombustionChamber = new ConsumeGenerator("chemical-combustion-chamber"){{
requirements(Category.power, with(Items.graphite, 40, Items.tungsten, 40, Items.oxide, 40f, Items.silicon, 30)); requirements(Category.power, with(Items.graphite, 40, Items.tungsten, 40, Items.oxide, 40f, Items.silicon, 30));
researchCost = with(Items.graphite, 2000, Items.tungsten, 1000, Items.oxide, 10, Items.silicon, 1500);
powerProduction = 9f; powerProduction = 9f;
consumeLiquids(LiquidStack.with(Liquids.ozone, 2f / 60f, Liquids.arkycite, 40f / 60f)); consumeLiquids(LiquidStack.with(Liquids.ozone, 2f / 60f, Liquids.arkycite, 40f / 60f));
size = 3; size = 3;

View File

@ -260,14 +260,14 @@ public class ErekirTechTree{
}); });
node(diffuse, Seq.with(new OnSector(lake)), () -> { node(diffuse, Seq.with(new OnSector(lake)), () -> {
node(sublimate, () -> { node(sublimate, Seq.with(new OnSector(marsh)), () -> {
node(titan, Seq.with(new OnSector(basin)), () -> { node(titan, Seq.with(new OnSector(marsh)), () -> {
node(afflict, Seq.with(new OnSector(basin)), () -> { node(afflict, Seq.with(new OnSector(marsh)), () -> {
}); });
}); });
node(disperse, Seq.with(new OnSector(basin)), () -> { node(disperse, Seq.with(new OnSector(marsh)), () -> {
}); });
}); });