Tech tree tweaks & wall thorium

This commit is contained in:
Anuken 2022-02-14 20:31:28 -05:00
parent 6c2e0c0b33
commit f644abbf61
5 changed files with 7 additions and 4 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 300 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 324 B

View File

@ -46,7 +46,6 @@ public class Blocks{
redmat, bluemat,
stoneWall, dirtWall, sporeWall, iceWall, daciteWall, sporePine, snowPine, pine, shrubs, whiteTree, whiteTreeDead, sporeCluster,
redweed, purbush, yellowCoral,
//TODO rename steamvent to rhyolite vent, maybe add red vent or crystal vent
rhyoliteVent, carbonVent, arkyicVent, yellowStoneVent, redStoneVent,
regolithWall, yellowStoneWall, rhyoliteWall, carbonWall, redIceWall, ferricStoneWall, beryllicStoneWall, arkyicWall, crystallineStoneWall, redStoneWall, redDiamondWall,
ferricStone, ferricCraters, carbonStone, beryllicStone, crystallineStone, crystalFloor, yellowStonePlates,
@ -60,7 +59,7 @@ public class Blocks{
//ores
oreCopper, oreLead, oreScrap, oreCoal, oreTitanium, oreThorium,
oreTungsten, oreCrystalThorium,
oreTungsten, oreCrystalThorium, wallOreThorium,
//wall ores
wallOreBeryl, graphiticWall, wallOreTungsten,
@ -828,6 +827,10 @@ public class Blocks{
oreCrystalThorium = new OreBlock("ore-crystal-thorium", Items.thorium);
wallOreThorium = new OreBlock("ore-wall-thorium", Items.thorium){{
wallOre = true;
}};
wallOreBeryl = new OreBlock("ore-wall-beryllium", Items.beryllium){{
wallOre = true;
}};

View File

@ -93,7 +93,7 @@ public class ErekirTechTree{
//TODO move into turbine condenser?
node(plasmaBore, () -> {
node(impactDrill, Seq.with(new OnSector(aware)), () -> {
node(largePlasmaBore, Seq.with(new OnSector(four)), () -> {
node(largePlasmaBore, Seq.with(new OnSector(five)), () -> {
node(eruptionDrill, () -> {
});
@ -203,7 +203,7 @@ public class ErekirTechTree{
node(sublimate, () -> {
//TODO implement
node(titan, () -> {
node(titan, Seq.with(new OnSector(five)), () -> {
});