Made useless items/liquids/blocks hidden

This commit is contained in:
Anuken
2022-05-10 16:21:22 -04:00
parent 36513d6ed6
commit cffba7b685
3 changed files with 16 additions and 23 deletions

View File

@ -1256,10 +1256,9 @@ public class Blocks{
drawer = new DrawMulti(new DrawDefault(), new DrawHeatOutput()); drawer = new DrawMulti(new DrawDefault(), new DrawHeatOutput());
size = 2; size = 2;
heatOutput = 10f; heatOutput = 15f;
craftTime = 60f * 8f; craftTime = 60f * 15f;
consumeItem(Items.phaseFabric); consumeItem(Items.phaseFabric);
consumePower(0.5f / 60f);
}}; }};
heatRedirector = new HeatConductor("heat-redirector"){{ heatRedirector = new HeatConductor("heat-redirector"){{
@ -1297,7 +1296,7 @@ public class Blocks{
}}; }};
slagCentrifuge = new GenericCrafter("slag-centrifuge"){{ slagCentrifuge = new GenericCrafter("slag-centrifuge"){{
requirements(Category.crafting, with(Items.carbide, 70, Items.graphite, 60, Items.silicon, 40, Items.oxide, 40)); requirements(Category.crafting, BuildVisibility.debugOnly, with(Items.carbide, 70, Items.graphite, 60, Items.silicon, 40, Items.oxide, 40));
consumePower(2f / 60f); consumePower(2f / 60f);
@ -1428,7 +1427,7 @@ public class Blocks{
}}; }};
heatReactor = new HeatProducer("heat-reactor"){{ heatReactor = new HeatProducer("heat-reactor"){{
requirements(Category.crafting, with(Items.oxide, 70, Items.graphite, 20, Items.carbide, 10, Items.thorium, 80)); requirements(Category.crafting, BuildVisibility.debugOnly, with(Items.oxide, 70, Items.graphite, 20, Items.carbide, 10, Items.thorium, 80));
size = 3; size = 3;
craftTime = 60f * 10f; craftTime = 60f * 10f;

View File

@ -192,7 +192,9 @@ public class ErekirTechTree{
node(oxidationChamber, Seq.with(new Research(tankRefabricator), new OnSector(four)), () -> { node(oxidationChamber, Seq.with(new Research(tankRefabricator), new OnSector(four)), () -> {
node(electricHeater, Seq.with(new OnSector(four)), () -> { node(electricHeater, Seq.with(new OnSector(four)), () -> {
node(heatRedirector, () -> { node(heatRedirector, () -> {
node(surgeCrucible, () -> {
});
}); });
node(atmosphericConcentrator, Seq.with(new OnSector(four)), () -> { node(atmosphericConcentrator, Seq.with(new OnSector(four)), () -> {
@ -208,22 +210,14 @@ public class ErekirTechTree{
}); });
}); });
}); });
node(surgeCrucible, () -> {
});
}); });
}); });
node(slagIncinerator, Seq.with(new OnSector(four)), () -> { node(slagIncinerator, Seq.with(new OnSector(four)), () -> {
node(slagCentrifuge, () -> { //TODO these are unused.
//node(slagCentrifuge, () -> {});
}); //node(heatReactor, () -> {});
node(heatReactor, () -> {
});
}); });
}); });
}); });
@ -358,9 +352,7 @@ public class ErekirTechTree{
nodeProduce(Items.sand, () -> { nodeProduce(Items.sand, () -> {
nodeProduce(Items.silicon, () -> { nodeProduce(Items.silicon, () -> {
nodeProduce(Items.oxide, () -> { nodeProduce(Items.oxide, () -> {
nodeProduce(Items.fissileMatter, () -> { //nodeProduce(Items.fissileMatter, () -> {});
});
}); });
}); });
}); });
@ -369,9 +361,11 @@ public class ErekirTechTree{
nodeProduce(Liquids.ozone, () -> { nodeProduce(Liquids.ozone, () -> {
nodeProduce(Liquids.hydrogen, () -> { nodeProduce(Liquids.hydrogen, () -> {
nodeProduce(Liquids.nitrogen, () -> { nodeProduce(Liquids.nitrogen, () -> {
nodeProduce(Liquids.cyanogen, () -> {
}); });
nodeProduce(Liquids.cyanogen, () -> {
}); });
}); });
}); });
@ -395,8 +389,7 @@ public class ErekirTechTree{
}); });
}); });
nodeProduce(Liquids.gallium, () -> { //nodeProduce(Liquids.gallium, () -> {});
});
}); });
}); });
}); });

View File

@ -63,6 +63,7 @@ public class Liquids{
gallium = new Liquid("gallium", Color.valueOf("9a9dbf")){{ gallium = new Liquid("gallium", Color.valueOf("9a9dbf")){{
coolant = false; coolant = false;
hidden = true;
}}; }};
//TODO reactivity, etc //TODO reactivity, etc