diff --git a/assets/cubyz/biomes/taiga.json b/assets/cubyz/biomes/taiga.json index 754ca1d3..4a18a813 100644 --- a/assets/cubyz/biomes/taiga.json +++ b/assets/cubyz/biomes/taiga.json @@ -17,10 +17,10 @@ "structures" : [ { "id" : "cubyz:simple_tree", - "leaves" : "cubyz:oak_leaves", - "log" : "cubyz:oak_log", - "top" : "cubyz:oak_top", - "chance" : 0.05, + "leaves" : "cubyz:pine_needles", + "log" : "cubyz:pine_log", + "top" : "cubyz:pine_top", + "chance" : 0.025, "type" : "pyramid", "height" : 8, "height_variation" : 5 diff --git a/assets/cubyz/blocks/pine_fence.json b/assets/cubyz/blocks/pine_fence.json new file mode 100644 index 00000000..641e06a5 --- /dev/null +++ b/assets/cubyz/blocks/pine_fence.json @@ -0,0 +1,11 @@ +{ + "class" : "wood", + "hardness" : 7, + "drops" : [ + "auto" + ], + "absorbedLight" : 0x202830, + "rotation" : "fence", + "model" : "fence", + "texture" : "cubyz:pine_planks" +} diff --git a/assets/cubyz/blocks/pine_log.json b/assets/cubyz/blocks/pine_log.json new file mode 100644 index 00000000..434abd2b --- /dev/null +++ b/assets/cubyz/blocks/pine_log.json @@ -0,0 +1,12 @@ +{ + "class" : "wood", + "hardness" : 8, + "drops" : [ + "auto" + ], + "rotation" : "log", + "model" : "cube", + "texture" : "cubyz:pine_log", + "texture_top" : "cubyz:pine_log_top", + "texture_bottom" : "cubyz:pine_log_top" +} diff --git a/assets/cubyz/blocks/pine_needles.json b/assets/cubyz/blocks/pine_needles.json new file mode 100644 index 00000000..abed5c89 --- /dev/null +++ b/assets/cubyz/blocks/pine_needles.json @@ -0,0 +1,13 @@ +{ + "class" : "leaf", + "hardness" : 0.4, + "drops" : [ + "auto", + "0.1 cubyz:apple" + ], + "degradable" : true, + "viewThrough" : true, + "absorbedLight" : 0x121012, + "model" : "cube", + "texture" : "cubyz:pine_needles" +} diff --git a/assets/cubyz/blocks/pine_planks.json b/assets/cubyz/blocks/pine_planks.json new file mode 100644 index 00000000..5c18d66f --- /dev/null +++ b/assets/cubyz/blocks/pine_planks.json @@ -0,0 +1,10 @@ +{ + "class" : "wood", + "hardness" : 7, + "drops" : [ + "auto" + ], + "model" : "cube", + "rotation" : "stairs", + "texture" : "cubyz:pine_planks" +} diff --git a/assets/cubyz/blocks/pine_top.json b/assets/cubyz/blocks/pine_top.json new file mode 100644 index 00000000..09ead0f4 --- /dev/null +++ b/assets/cubyz/blocks/pine_top.json @@ -0,0 +1,12 @@ +{ + "class" : "wood", + "hardness" : 8, + "drops" : [ + "auto" + ], + "rotation" : "log", + "model" : "cube", + "texture" : "cubyz:pine_log", + "texture_top" : "cubyz:pine_log", + "texture_bottom" : "cubyz:pine_log_top", +} diff --git a/assets/cubyz/blocks/textures/pine_log.png b/assets/cubyz/blocks/textures/pine_log.png new file mode 100644 index 00000000..4ad0e08b Binary files /dev/null and b/assets/cubyz/blocks/textures/pine_log.png differ diff --git a/assets/cubyz/blocks/textures/pine_log_top.png b/assets/cubyz/blocks/textures/pine_log_top.png new file mode 100644 index 00000000..e2cd1fb1 Binary files /dev/null and b/assets/cubyz/blocks/textures/pine_log_top.png differ diff --git a/assets/cubyz/blocks/textures/pine_needles.png b/assets/cubyz/blocks/textures/pine_needles.png new file mode 100644 index 00000000..35b3bbd2 Binary files /dev/null and b/assets/cubyz/blocks/textures/pine_needles.png differ diff --git a/assets/cubyz/blocks/textures/pine_planks.png b/assets/cubyz/blocks/textures/pine_planks.png new file mode 100644 index 00000000..0545a02f Binary files /dev/null and b/assets/cubyz/blocks/textures/pine_planks.png differ