diff --git a/assets/cubyz/biomes/peak.json b/assets/cubyz/biomes/peak.json index cf3fbe2c..2281e1bf 100644 --- a/assets/cubyz/biomes/peak.json +++ b/assets/cubyz/biomes/peak.json @@ -5,13 +5,23 @@ "minHeight" : 120, "maxHeight" : 256, - "mountains" : 150, + "mountains" : 125, "music" : "DarkTimes", "ground_structure" : [ - "1 to 2 cubyz:snow", - "0 to 1 cubyz:ice", - "0 to 2 cubyz:cobblestone" + "3 to 6 cubyz:snow" + ], + "stoneBlock" : "cubyz:glacite", + "structures" : [ + { + "id" : "cubyz:ground_patch", + "block" : "cubyz:ice", + "chance" : 0.002, + "width" : 6, + "variation" : 5, + "depth" : 3, + "smoothness" : 0.1 + } ] } diff --git a/assets/cubyz/blocks/glacite.json b/assets/cubyz/blocks/glacite.json new file mode 100644 index 00000000..5a187749 --- /dev/null +++ b/assets/cubyz/blocks/glacite.json @@ -0,0 +1,11 @@ +{ + "class" : "stone", + "hardness" : 25, + "breakingPower" : 1, + "drops" : [ + "auto" + ], + "rotation" : "stairs", + "model" : "cube", + "texture" : "cubyz:glacite" +} diff --git a/assets/cubyz/blocks/textures/glacite.png b/assets/cubyz/blocks/textures/glacite.png new file mode 100644 index 00000000..58e391e9 Binary files /dev/null and b/assets/cubyz/blocks/textures/glacite.png differ