Improved world generation

This commit is contained in:
Anuken
2018-06-23 10:36:47 -04:00
parent 0a6614d1b3
commit f9947d2e53
19 changed files with 275 additions and 97 deletions

View File

@@ -117,15 +117,19 @@ public class Blocks extends BlockList implements ContentList{
sand = new Floor("sand") {{
drops = new ItemStack(Items.sand, 1);
minimapColor = Color.valueOf("988a67");
hasOres = true;
}};
ice = new Floor("ice") {{
dragMultiplier = 0.2f;
dragMultiplier = 0.3f;
speedMultiplier = 0.4f;
minimapColor = Color.valueOf("c4e3e7");
hasOres = true;
}};
snow = new Floor("snow"){{
minimapColor = Color.valueOf("c2d1d2");
hasOres = true;
}};
grass = new Floor("grass"){{