diff --git a/assets/cubyz/biomes/forest.json b/assets/cubyz/biomes/forest.json index ca8f8f7d..51573c4e 100644 --- a/assets/cubyz/biomes/forest.json +++ b/assets/cubyz/biomes/forest.json @@ -22,7 +22,17 @@ "leaves" : "cubyz:oak_leaves", "log" : "cubyz:oak_log", "top" : "cubyz:oak_top", - "chance" : 0.04, + "chance" : 0.03, + "type" : "round", + "height" : 6, + "height_variation" : 3 + }, + { + "id" : "cubyz:simple_tree", + "leaves" : "cubyz:birch_leaves", + "log" : "cubyz:birch_log", + "top" : "cubyz:birch_top", + "chance" : 0.01, "type" : "round", "height" : 6, "height_variation" : 3 @@ -31,9 +41,24 @@ "id" : "cubyz:fallen_tree", "log" : "cubyz:oak_log", "top" : "cubyz:oak_top", - "chance" : 0.01, + "chance" : 0.005, "height" : 6, "height_variation" : 3 } + { + "id" : "cubyz:fallen_tree", + "log" : "cubyz:birch_log", + "top" : "cubyz:birch_top", + "chance" : 0.002, + "height" : 6, + "height_variation" : 3 + } + { + "id" : "cubyz:simple_vegetation", + "block" : "cubyz:grass_vegetation", + "chance" : 1, + "height" : 1, + "height_variation" : 0 + }, ] } diff --git a/assets/cubyz/blocks/birch_fence.json b/assets/cubyz/blocks/birch_fence.json new file mode 100644 index 00000000..03541d47 --- /dev/null +++ b/assets/cubyz/blocks/birch_fence.json @@ -0,0 +1,13 @@ +{ + "class" : "wood", + "hardness" : 7, + "drops" : [ + "auto" + ], + "absorbedLight" : 0x202830, + "rotation" : "fence", + "model" : "fence", + "texture" : "cubyz:birch_fence", + "texture_top" : "cubyz:birch_fence_top", + "texture_bottom" : "cubyz:birch_fence_top" +} diff --git a/assets/cubyz/blocks/birch_leaves.json b/assets/cubyz/blocks/birch_leaves.json new file mode 100644 index 00000000..cf7528ec --- /dev/null +++ b/assets/cubyz/blocks/birch_leaves.json @@ -0,0 +1,14 @@ +{ + "class" : "leaf", + "hardness" : 0.4, + "drops" : [ + "auto", + "0.1 cubyz:apple" + ], + "degradable" : true, + "alwaysViewThrough" : true, + "absorbedLight" : 0x121012, + "model" : "cube", + "texture" : "cubyz:birch_leaves", + "lodReplacement" : "cubyz:birch_leaves_opaque" +} diff --git a/assets/cubyz/blocks/birch_leaves_opaque.json b/assets/cubyz/blocks/birch_leaves_opaque.json new file mode 100644 index 00000000..925481b7 --- /dev/null +++ b/assets/cubyz/blocks/birch_leaves_opaque.json @@ -0,0 +1,6 @@ +{ + "class" : "leaf", + "absorbedLight" : 0x121012, + "model" : "cube", + "texture" : "cubyz:birch_leaves_opaque" +} diff --git a/assets/cubyz/blocks/birch_log.json b/assets/cubyz/blocks/birch_log.json new file mode 100644 index 00000000..5101de47 --- /dev/null +++ b/assets/cubyz/blocks/birch_log.json @@ -0,0 +1,12 @@ +{ + "class" : "wood", + "hardness" : 8, + "drops" : [ + "auto" + ], + "rotation" : "log", + "model" : "cube", + "texture" : "cubyz:birch_log", + "texture_top" : "cubyz:birch_log_top", + "texture_bottom" : "cubyz:birch_log_top" +} diff --git a/assets/cubyz/blocks/birch_planks.json b/assets/cubyz/blocks/birch_planks.json new file mode 100644 index 00000000..19a9242a --- /dev/null +++ b/assets/cubyz/blocks/birch_planks.json @@ -0,0 +1,10 @@ +{ + "class" : "wood", + "hardness" : 7, + "drops" : [ + "auto" + ], + "model" : "cube", + "rotation" : "stairs", + "texture" : "cubyz:birch_planks" +} diff --git a/assets/cubyz/blocks/birch_top.json b/assets/cubyz/blocks/birch_top.json new file mode 100644 index 00000000..277de22a --- /dev/null +++ b/assets/cubyz/blocks/birch_top.json @@ -0,0 +1,12 @@ +{ + "class" : "wood", + "hardness" : 8, + "drops" : [ + "auto" + ], + "rotation" : "log", + "model" : "cube", + "texture" : "cubyz:birch_log", + "texture_top" : "cubyz:birch_log", + "texture_bottom" : "cubyz:birch_log_top", +} diff --git a/assets/cubyz/blocks/textures/birch_fence.png b/assets/cubyz/blocks/textures/birch_fence.png new file mode 100644 index 00000000..0878b3c4 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_fence.png differ diff --git a/assets/cubyz/blocks/textures/birch_fence_top.png b/assets/cubyz/blocks/textures/birch_fence_top.png new file mode 100644 index 00000000..f21897f0 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_fence_top.png differ diff --git a/assets/cubyz/blocks/textures/birch_leaves.png b/assets/cubyz/blocks/textures/birch_leaves.png new file mode 100644 index 00000000..f08674bd Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_leaves.png differ diff --git a/assets/cubyz/blocks/textures/birch_leaves_opaque.png b/assets/cubyz/blocks/textures/birch_leaves_opaque.png new file mode 100644 index 00000000..91bad875 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_leaves_opaque.png differ diff --git a/assets/cubyz/blocks/textures/birch_log.png b/assets/cubyz/blocks/textures/birch_log.png new file mode 100644 index 00000000..6af15c19 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_log.png differ diff --git a/assets/cubyz/blocks/textures/birch_log_top.png b/assets/cubyz/blocks/textures/birch_log_top.png new file mode 100644 index 00000000..a3c6adf5 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_log_top.png differ diff --git a/assets/cubyz/blocks/textures/birch_planks.png b/assets/cubyz/blocks/textures/birch_planks.png new file mode 100644 index 00000000..c1e70ce6 Binary files /dev/null and b/assets/cubyz/blocks/textures/birch_planks.png differ diff --git a/assets/cubyz/blocks/textures/oak_leaves.png b/assets/cubyz/blocks/textures/oak_leaves.png index 39d4d39f..c6cc346f 100644 Binary files a/assets/cubyz/blocks/textures/oak_leaves.png and b/assets/cubyz/blocks/textures/oak_leaves.png differ diff --git a/assets/cubyz/blocks/textures/pine_fence.png b/assets/cubyz/blocks/textures/pine_fence.png index 472215db..71f44ca3 100644 Binary files a/assets/cubyz/blocks/textures/pine_fence.png and b/assets/cubyz/blocks/textures/pine_fence.png differ diff --git a/assets/cubyz/blocks/textures/pine_fence_top.png b/assets/cubyz/blocks/textures/pine_fence_top.png index ab90b5cd..4882e552 100644 Binary files a/assets/cubyz/blocks/textures/pine_fence_top.png and b/assets/cubyz/blocks/textures/pine_fence_top.png differ diff --git a/assets/cubyz/blocks/textures/pine_planks.png b/assets/cubyz/blocks/textures/pine_planks.png index 0545a02f..a048d1ce 100644 Binary files a/assets/cubyz/blocks/textures/pine_planks.png and b/assets/cubyz/blocks/textures/pine_planks.png differ