Beryllium floor ore

This commit is contained in:
Anuken
2022-02-18 15:40:17 -05:00
parent f9c0065a99
commit 406d2b949b
8 changed files with 24 additions and 6 deletions

View File

@@ -116,7 +116,7 @@ public class AsteroidGenerator extends BlankPlanetGenerator{
wallOre(Blocks.carbonWall, Blocks.graphiticWall, 35f, 0.57f * graphiteScale);
wallOre(Blocks.beryllicStoneWall, Blocks.wallOreBeryl, 50f, 0.62f * berylliumScale);
wallOre(Blocks.beryllicStoneWall, Blocks.wallOreBeryllium, 50f, 0.62f * berylliumScale);
//titanium
pass((x, y) -> {

View File

@@ -277,7 +277,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
if(block == Blocks.carbonWall && noise(x + 78, y, 4, 0.7f, 33f, 1f) > 0.52f){
block = Blocks.graphiticWall;
}else if(block != Blocks.carbonWall && noise(x + 782, y, 4, 0.8f, 38f, 1f) > 0.665f){
ore = Blocks.wallOreBeryl;
ore = Blocks.wallOreBeryllium;
}
}