Block requirement changes
This commit is contained in:
@@ -1700,12 +1700,12 @@ public class Blocks{
|
|||||||
}};
|
}};
|
||||||
|
|
||||||
overflowDuct = new OverflowDuct("overflow-duct"){{
|
overflowDuct = new OverflowDuct("overflow-duct"){{
|
||||||
requirements(Category.distribution, with(Items.graphite, 8));
|
requirements(Category.distribution, with(Items.graphite, 8, Items.beryllium, 8));
|
||||||
speed = 4f;
|
speed = 4f;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
ductBridge = new DuctBridge("duct-bridge"){{
|
ductBridge = new DuctBridge("duct-bridge"){{
|
||||||
requirements(Category.distribution, with(Items.graphite, 15, Items.tungsten, 5));
|
requirements(Category.distribution, with(Items.graphite, 15, Items.beryllium, 10));
|
||||||
speed = 4f;
|
speed = 4f;
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|||||||
@@ -80,6 +80,7 @@ public class ErekirTechTree{
|
|||||||
});
|
});
|
||||||
|
|
||||||
node(siliconArcFurnace, () -> {
|
node(siliconArcFurnace, () -> {
|
||||||
|
node(cliffCrusher, () -> {
|
||||||
node(electrolyzer, () -> {
|
node(electrolyzer, () -> {
|
||||||
node(oxidationChamber, () -> {
|
node(oxidationChamber, () -> {
|
||||||
node(electricHeater, () -> {
|
node(electricHeater, () -> {
|
||||||
@@ -117,10 +118,11 @@ public class ErekirTechTree{
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
});
|
||||||
|
|
||||||
//TODO move into turbine condenser?
|
//TODO move into turbine condenser?
|
||||||
node(plasmaBore, () -> {
|
node(plasmaBore, () -> {
|
||||||
node(cliffCrusher, () -> {
|
|
||||||
node(largePlasmaBore, () -> {
|
node(largePlasmaBore, () -> {
|
||||||
|
|
||||||
});
|
});
|
||||||
@@ -129,7 +131,6 @@ public class ErekirTechTree{
|
|||||||
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
||||||
node(reinforcedConduit, () -> {
|
node(reinforcedConduit, () -> {
|
||||||
node(reinforcedPump, () -> {
|
node(reinforcedPump, () -> {
|
||||||
|
|||||||
@@ -190,7 +190,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
|
|||||||
if(nearAir(x, y)){
|
if(nearAir(x, y)){
|
||||||
if(block == Blocks.carbonWall && noise(x + 78, y, 4, 0.7f, 33f, 1f) > 0.52f){
|
if(block == Blocks.carbonWall && noise(x + 78, y, 4, 0.7f, 33f, 1f) > 0.52f){
|
||||||
block = Blocks.graphiticWall;
|
block = Blocks.graphiticWall;
|
||||||
}else if(block != Blocks.carbonWall && noise(x + 782, y, 4, 0.8f, 38f, 1f) > 0.68f){
|
}else if(block != Blocks.carbonWall && noise(x + 782, y, 4, 0.8f, 38f, 1f) > 0.665f){
|
||||||
ore = Blocks.wallOreBeryl;
|
ore = Blocks.wallOreBeryl;
|
||||||
}
|
}
|
||||||
//TODO generate tungsten, or not?
|
//TODO generate tungsten, or not?
|
||||||
|
|||||||
Reference in New Issue
Block a user