Beryllic stone contrast
|
Before Width: | Height: | Size: 813 B After Width: | Height: | Size: 811 B |
|
Before Width: | Height: | Size: 349 B After Width: | Height: | Size: 343 B |
|
Before Width: | Height: | Size: 355 B After Width: | Height: | Size: 368 B |
|
Before Width: | Height: | Size: 284 B After Width: | Height: | Size: 285 B |
|
Before Width: | Height: | Size: 227 B After Width: | Height: | Size: 227 B |
|
Before Width: | Height: | Size: 190 B After Width: | Height: | Size: 190 B |
|
Before Width: | Height: | Size: 232 B After Width: | Height: | Size: 233 B |
|
Before Width: | Height: | Size: 642 B After Width: | Height: | Size: 644 B |
|
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 678 B |
@@ -25,7 +25,8 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
|
|||||||
|
|
||||||
Block[][] arr = {
|
Block[][] arr = {
|
||||||
//{Blocks.regolith, Blocks.regolith, Blocks.yellowStone, Blocks.rhyolite, Blocks.basalt}
|
//{Blocks.regolith, Blocks.regolith, Blocks.yellowStone, Blocks.rhyolite, Blocks.basalt}
|
||||||
{Blocks.regolith, Blocks.regolith, Blocks.yellowStone, Blocks.crystallineStone, Blocks.basalt}
|
//TODO basalt bad
|
||||||
|
{Blocks.regolith, Blocks.regolith, Blocks.beryllicStone, Blocks.crystallineStone, Blocks.basalt}
|
||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -77,7 +78,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
|
|||||||
if(ice < 0.6){
|
if(ice < 0.6){
|
||||||
if(result == Blocks.rhyolite || result == Blocks.yellowStone || result == Blocks.regolith){
|
if(result == Blocks.rhyolite || result == Blocks.yellowStone || result == Blocks.regolith){
|
||||||
//TODO bio(?) luminescent stuff
|
//TODO bio(?) luminescent stuff
|
||||||
return Blocks.ferricStone; //TODO perhaps something else
|
return Blocks.ferricStone; //TODO perhaps something else. what about ice?
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -98,7 +99,7 @@ public class ErekirPlanetGenerator extends PlanetGenerator{
|
|||||||
tile.block = Blocks.air;
|
tile.block = Blocks.air;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(Ridged.noise3d(2, position.x, position.y + 4f, position.z, 3, 6f) > 0.65){
|
if(Ridged.noise3d(2, position.x, position.y + 4f, position.z, 3, 6f) > 0.6){
|
||||||
tile.floor = Blocks.carbonStone;
|
tile.floor = Blocks.carbonStone;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||