From 7c47e6d58c11bd3be1b6c6de16c28f68ef747d94 Mon Sep 17 00:00:00 2001 From: Frost-ZX Date: Fri, 4 Apr 2025 23:36:36 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=E5=BB=BA=E7=AD=91?= =?UTF-8?q?=E6=96=B9=E5=9D=97=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../block/building/building_brick_a.json | 218 ++++++++ .../building/building_brick_a_half_down.json | 218 ++++++++ .../building/building_brick_a_half_up.json | 218 ++++++++ .../block/building/building_brick_b.json | 114 ++++ .../block/building/building_brick_c.json | 114 ++++ .../block/building/building_brick_d.json | 23 + .../block/building/building_brick_d_high.json | 36 ++ .../block/building/building_brick_e.json | 23 + .../block/building/building_brick_e_high.json | 36 ++ .../block/building/building_cover_a.json | 166 ++++++ .../building/building_fence_a_bottom.json | 408 +++++++++++++++ .../block/building/building_fence_a_top.json | 342 ++++++++++++ .../block/building/building_fence_b.json | 82 +++ .../building_fence_b_corner_inner.json | 94 ++++ .../building_fence_b_corner_outer.json | 94 ++++ .../block/building/building_ground_a.json | 428 +++++++++++++++ .../block/building/building_iron_pole_a.json | 49 ++ .../block/building/building_misc_a.json | 25 + .../block/building/building_misc_b.json | 38 ++ .../block/building/building_misc_c.json | 51 ++ .../block/building/building_pillar_a.json | 192 +++++++ .../building/building_pillar_a_high.json | 388 ++++++++++++++ .../block/building/building_pillar_b.json | 231 ++++++++ .../building/building_pillar_b_high.json | 466 +++++++++++++++++ .../block/building/building_rail_a.json | 49 ++ .../block/building/building_rail_b.json | 88 ++++ .../block/building/building_rail_c.json | 166 ++++++ .../block/building/building_rail_d.json | 264 ++++++++++ .../block/building/building_rail_e.json | 492 ++++++++++++++++++ .../block/building/building_rail_f.json | 492 ++++++++++++++++++ .../block/building/building_rail_g.json | 65 +++ .../block/building/building_stair_rail_a.json | 49 ++ .../building/building_stair_rail_a_half.json | 49 ++ .../block/building/building_stair_rail_b.json | 36 ++ .../building/building_stair_rail_b_half.json | 36 ++ .../block/building/building_stair_rail_c.json | 36 ++ .../block/building/building_stair_rail_d.json | 49 ++ .../block/building/building_stair_rail_e.json | 62 +++ .../block/building/building_stair_rail_f.json | 62 +++ .../block/building/building_wall_a.json | 39 ++ .../block/building/building_wall_b.json | 39 ++ .../block/building/building_wall_c.json | 25 + 42 files changed, 6152 insertions(+) create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_down.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_up.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_c.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_d.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_d_high.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_e.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_brick_e_high.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_cover_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_fence_a_bottom.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_fence_a_top.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_fence_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_inner.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_outer.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_ground_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_iron_pole_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_misc_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_misc_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_misc_c.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_pillar_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_pillar_a_high.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_pillar_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_pillar_b_high.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_c.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_d.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_e.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_f.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_rail_g.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a_half.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b_half.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_c.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_d.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_e.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_f.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_wall_a.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_wall_b.json create mode 100644 resourcepack/assets/wheat_plus/models/block/building/building_wall_c.json diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a.json new file mode 100644 index 0000000..b2c71ac --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a.json @@ -0,0 +1,218 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [15, 0, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, + "up": {"uv": [15, 0, 16, 1], "texture": "#0", "cullface": "up"}, + "down": {"uv": [15, 15, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [14, 0, 1], + "to": [16, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [14, 1, 16, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [14, 14, 16, 15], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [13, 0, 2], + "to": [16, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 3, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [13, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [13, 2, 16, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [13, 13, 16, 14], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [12, 0, 3], + "to": [16, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 3, 16, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [12, 12, 16, 13], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [11, 0, 4], + "to": [16, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 5, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [11, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [11, 4, 16, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [11, 11, 16, 12], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [10, 0, 5], + "to": [16, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [10, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [10, 5, 16, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [10, 10, 16, 11], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [9, 0, 6], + "to": [16, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [9, 6, 16, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [9, 9, 16, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [8, 0, 7], + "to": [16, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [8, 7, 16, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [8, 8, 16, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 8], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [7, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 8, 16, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 7, 16, 8], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 9], + "to": [16, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [6, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [6, 9, 16, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 6, 16, 7], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [5, 0, 10], + "to": [16, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 11, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [5, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [5, 10, 16, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [5, 5, 16, 6], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 11], + "to": [16, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [4, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [4, 11, 16, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 4, 16, 5], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 12], + "to": [16, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [3, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 16, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 3, 16, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 13], + "to": [16, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [2, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [2, 13, 16, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 2, 16, 3], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 14], + "to": [16, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [1, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [1, 14, 16, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 1, 16, 2], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_down.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_down.json new file mode 100644 index 0000000..064ae2b --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_down.json @@ -0,0 +1,218 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [15, 0, 0], + "to": [16, 8, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, + "up": {"uv": [15, 0, 16, 1], "texture": "#0"}, + "down": {"uv": [15, 15, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [14, 0, 1], + "to": [16, 8, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [14, 1, 16, 2], "texture": "#0"}, + "down": {"uv": [14, 14, 16, 15], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [13, 0, 2], + "to": [16, 8, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 3, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [13, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [13, 2, 16, 3], "texture": "#0"}, + "down": {"uv": [13, 13, 16, 14], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [12, 0, 3], + "to": [16, 8, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 3, 16, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 16, 13], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [11, 0, 4], + "to": [16, 8, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 5, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [11, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [11, 4, 16, 5], "texture": "#0"}, + "down": {"uv": [11, 11, 16, 12], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [10, 0, 5], + "to": [16, 8, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [10, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [10, 5, 16, 6], "texture": "#0"}, + "down": {"uv": [10, 10, 16, 11], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [9, 0, 6], + "to": [16, 8, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [9, 6, 16, 7], "texture": "#0"}, + "down": {"uv": [9, 9, 16, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [8, 0, 7], + "to": [16, 8, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [8, 7, 16, 8], "texture": "#0"}, + "down": {"uv": [8, 8, 16, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 8], + "to": [16, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [7, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 8, 16, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 16, 8], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 9], + "to": [16, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [6, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [6, 9, 16, 10], "texture": "#0"}, + "down": {"uv": [6, 6, 16, 7], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [5, 0, 10], + "to": [16, 8, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 11, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [5, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [5, 10, 16, 11], "texture": "#0"}, + "down": {"uv": [5, 5, 16, 6], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 11], + "to": [16, 8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [4, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [4, 11, 16, 12], "texture": "#0"}, + "down": {"uv": [4, 4, 16, 5], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 12], + "to": [16, 8, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [3, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 16, 13], "texture": "#0"}, + "down": {"uv": [3, 3, 16, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 13], + "to": [16, 8, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [2, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [2, 13, 16, 14], "texture": "#0"}, + "down": {"uv": [2, 2, 16, 3], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 14], + "to": [16, 8, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [1, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [1, 14, 16, 15], "texture": "#0"}, + "down": {"uv": [1, 1, 16, 2], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 0, 15], + "to": [16, 8, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_up.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_up.json new file mode 100644 index 0000000..63a981e --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_a_half_up.json @@ -0,0 +1,218 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [15, 8, 0], + "to": [16, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#0"}, + "up": {"uv": [15, 0, 16, 1], "texture": "#0", "cullface": "up"}, + "down": {"uv": [15, 15, 16, 16], "texture": "#0"} + } + }, + { + "from": [14, 8, 1], + "to": [16, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [14, 1, 16, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [14, 14, 16, 15], "texture": "#0"} + } + }, + { + "from": [13, 8, 2], + "to": [16, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 3, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [13, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [13, 2, 16, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [13, 13, 16, 14], "texture": "#0"} + } + }, + { + "from": [12, 8, 3], + "to": [16, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 3, 16, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [12, 12, 16, 13], "texture": "#0"} + } + }, + { + "from": [11, 8, 4], + "to": [16, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 5, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [11, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [11, 4, 16, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [11, 11, 16, 12], "texture": "#0"} + } + }, + { + "from": [10, 8, 5], + "to": [16, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [10, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [10, 5, 16, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [10, 10, 16, 11], "texture": "#0"} + } + }, + { + "from": [9, 8, 6], + "to": [16, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [9, 6, 16, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [9, 9, 16, 10], "texture": "#0"} + } + }, + { + "from": [8, 8, 7], + "to": [16, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [8, 7, 16, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [8, 8, 16, 9], "texture": "#0"} + } + }, + { + "from": [7, 8, 8], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [7, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 8, 16, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 7, 16, 8], "texture": "#0"} + } + }, + { + "from": [6, 8, 9], + "to": [16, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [6, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [6, 9, 16, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 6, 16, 7], "texture": "#0"} + } + }, + { + "from": [5, 8, 10], + "to": [16, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 11, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [5, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [5, 10, 16, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [5, 5, 16, 6], "texture": "#0"} + } + }, + { + "from": [4, 8, 11], + "to": [16, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [4, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [4, 11, 16, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 4, 16, 5], "texture": "#0"} + } + }, + { + "from": [3, 8, 12], + "to": [16, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [3, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 16, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 3, 16, 4], "texture": "#0"} + } + }, + { + "from": [2, 8, 13], + "to": [16, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [2, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [2, 13, 16, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 2, 16, 3], "texture": "#0"} + } + }, + { + "from": [1, 8, 14], + "to": [16, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [1, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [1, 14, 16, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 1, 16, 2], "texture": "#0"} + } + }, + { + "from": [0, 8, 15], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [15, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_b.json new file mode 100644 index 0000000..4b8c48e --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_b.json @@ -0,0 +1,114 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [15, 0, 8], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [15, 8, 16, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [15, 7, 16, 8], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [14, 0, 9], + "to": [16, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 2, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [14, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [14, 9, 16, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [14, 6, 16, 7], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [13, 0, 10], + "to": [16, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 3, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [13, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [13, 10, 16, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [13, 5, 16, 6], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [12, 0, 11], + "to": [16, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [12, 11, 16, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [12, 4, 16, 5], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [11, 0, 12], + "to": [16, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 5, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [11, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [11, 12, 16, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [11, 3, 16, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [10, 0, 13], + "to": [16, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 6, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [10, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [10, 13, 16, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [10, 2, 16, 3], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [9, 0, 14], + "to": [16, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [9, 14, 16, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [9, 1, 16, 2], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [8, 0, 15], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 16]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [15, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [8, 15, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [8, 0, 16, 1], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_c.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_c.json new file mode 100644 index 0000000..d249c85 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_c.json @@ -0,0 +1,114 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [0, 0, 7], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 9, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [7, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 0], + "to": [16, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 9, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [7, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [7, 0, 16, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 9, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 1], + "to": [7, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [6, 1, 7, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 14, 7, 15], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [5, 0, 2], + "to": [7, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 11, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "south": {"uv": [5, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [5, 2, 7, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [5, 13, 7, 14], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 3], + "to": [7, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [4, 3, 7, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 12, 7, 13], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 4], + "to": [7, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "south": {"uv": [3, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [3, 4, 7, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 11, 7, 12], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 5], + "to": [7, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [2, 5, 7, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 10, 7, 11], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 6], + "to": [7, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [1, 6, 7, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 9, 7, 10], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_d.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_d.json new file mode 100644 index 0000000..fcf8bbe --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_d.json @@ -0,0 +1,23 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [0, 0, 12], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_d_high.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_d_high.json new file mode 100644 index 0000000..684b8ec --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_d_high.json @@ -0,0 +1,36 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [0, 0, 12], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 16, 12], + "to": [16, 24, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_e.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_e.json new file mode 100644 index 0000000..96899b0 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_e.json @@ -0,0 +1,23 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/gray_concrete", + "particle": "block/gray_concrete" + }, + "elements": [ + { + "from": [0, 0, 12], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_brick_e_high.json b/resourcepack/assets/wheat_plus/models/block/building/building_brick_e_high.json new file mode 100644 index 0000000..340240d --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_brick_e_high.json @@ -0,0 +1,36 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/gray_concrete", + "particle": "block/gray_concrete" + }, + "elements": [ + { + "from": [0, 0, 12], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#1", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "south"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#1", "cullface": "west"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [0, 16, 12], + "to": [16, 24, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#1"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#1"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 12, 16, 16], "texture": "#1", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 4], "texture": "#1"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_cover_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_cover_a.json new file mode 100644 index 0000000..108486f --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_cover_a.json @@ -0,0 +1,166 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "4": "block/gray_concrete", + "particle": "block/gray_concrete" + }, + "elements": [ + { + "from": [15, 13, 0], + "to": [16, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "up": {"uv": [15, 0, 16, 16], "texture": "#4"}, + "down": {"uv": [15, 0, 16, 16], "texture": "#4"} + } + }, + { + "from": [12, 13, 0], + "to": [13, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "south": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "up": {"uv": [12, 0, 13, 16], "texture": "#4"}, + "down": {"uv": [12, 0, 13, 16], "texture": "#4"} + } + }, + { + "from": [9, 13, 0], + "to": [10, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "south": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "up": {"uv": [9, 0, 10, 16], "texture": "#4"}, + "down": {"uv": [9, 0, 10, 16], "texture": "#4"} + } + }, + { + "from": [6, 13, 0], + "to": [7, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "south": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "up": {"uv": [6, 0, 7, 16], "texture": "#4"}, + "down": {"uv": [6, 0, 7, 16], "texture": "#4"} + } + }, + { + "from": [3, 13, 0], + "to": [4, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "south": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "up": {"uv": [3, 0, 4, 16], "texture": "#4"}, + "down": {"uv": [3, 0, 4, 16], "texture": "#4"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "south": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#4"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#4"} + } + }, + { + "from": [0, 13, 15], + "to": [16, 15, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "east": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "south"}, + "west": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 15, 16, 16], "texture": "#4"}, + "down": {"uv": [0, 0, 16, 1], "texture": "#4"} + } + }, + { + "from": [0, 13, 12], + "to": [16, 15, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "east": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "west": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 12, 16, 13], "texture": "#4"}, + "down": {"uv": [0, 3, 16, 4], "texture": "#4"} + } + }, + { + "from": [0, 13, 9], + "to": [16, 15, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "east": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "west": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 9, 16, 10], "texture": "#4"}, + "down": {"uv": [0, 6, 16, 7], "texture": "#4"} + } + }, + { + "from": [0, 13, 6], + "to": [16, 15, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "east": {"uv": [9, 1, 10, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "west": {"uv": [6, 1, 7, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 6, 16, 7], "texture": "#4"}, + "down": {"uv": [0, 9, 16, 10], "texture": "#4"} + } + }, + { + "from": [0, 13, 3], + "to": [16, 15, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "east": {"uv": [12, 1, 13, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "west": {"uv": [3, 1, 4, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 3, 16, 4], "texture": "#4"}, + "down": {"uv": [0, 12, 16, 13], "texture": "#4"} + } + }, + { + "from": [0, 13, 0], + "to": [16, 15, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 1, 16, 3], "texture": "#4", "cullface": "north"}, + "east": {"uv": [15, 1, 16, 3], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 1, 16, 3], "texture": "#4"}, + "west": {"uv": [0, 1, 1, 3], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 1], "texture": "#4"}, + "down": {"uv": [0, 15, 16, 16], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_bottom.json b/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_bottom.json new file mode 100644 index 0000000..75fd1d5 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_bottom.json @@ -0,0 +1,408 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/white_concrete", + "2": "block/black_concrete", + "particle": "block/white_concrete" + }, + "elements": [ + { + "from": [14, 12, 0], + "to": [16, 14, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 2, 2, 4], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 2, 16, 4], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [14, 2, 16, 4], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 2, 16, 4], "rotation": 90, "texture": "#1"}, + "up": {"uv": [14, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [14, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [12, 10, 0], + "to": [16, 12, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 4, 4, 6], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 4, 16, 6], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [12, 4, 16, 6], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 4, 16, 6], "rotation": 90, "texture": "#1"}, + "up": {"uv": [12, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [12, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [10, 8, 0], + "to": [16, 10, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 6, 6, 8], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 6, 16, 8], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [10, 6, 16, 8], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 6, 16, 8], "rotation": 90, "texture": "#1"}, + "up": {"uv": [10, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [10, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [8, 6, 0], + "to": [16, 8, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 8, 10], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 8, 16, 10], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [8, 8, 16, 10], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 8, 16, 10], "rotation": 90, "texture": "#1"}, + "up": {"uv": [8, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [8, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [6, 4, 0], + "to": [16, 6, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 10, 10, 12], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 10, 16, 12], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [6, 10, 16, 12], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 10, 16, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [4, 2, 0], + "to": [16, 4, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 12, 12, 14], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 12, 16, 14], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [4, 12, 16, 14], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 12, 16, 14], "rotation": 90, "texture": "#1"}, + "up": {"uv": [4, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [4, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [2, 0, 0], + "to": [16, 2, 16], + "rotation": {"angle": 0, "axis": "x", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 14, 14, 16], "rotation": 180, "texture": "#1", "cullface": "north"}, + "east": {"uv": [0, 14, 16, 16], "rotation": 270, "texture": "#1", "cullface": "east"}, + "south": {"uv": [2, 14, 16, 16], "texture": "#1", "cullface": "south"}, + "west": {"uv": [0, 14, 16, 16], "rotation": 90, "texture": "#1"}, + "up": {"uv": [2, 0, 16, 16], "rotation": 180, "texture": "#1"}, + "down": {"uv": [2, 0, 16, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [0, 0, 7], + "to": [1, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 0, 16, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [4, 4, 7], + "to": [5, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 0, 12, 12], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 12], "texture": "#2"}, + "south": {"uv": [4, 0, 5, 12], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 12], "texture": "#2"}, + "up": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [4, 7, 5, 9], "texture": "#2"} + } + }, + { + "from": [8, 8, 7], + "to": [9, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 8, 8], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 8], "texture": "#2"}, + "south": {"uv": [8, 0, 9, 8], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 8], "texture": "#2"}, + "up": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [8, 7, 9, 9], "texture": "#2"} + } + }, + { + "from": [12, 12, 7], + "to": [13, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 4, 4], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 4], "texture": "#2"}, + "south": {"uv": [12, 0, 13, 4], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 4], "texture": "#2"}, + "up": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [12, 7, 13, 9], "texture": "#2"} + } + }, + { + "from": [15, 14, 7], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 2], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#2"}, + "up": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [15, 7, 16, 9], "texture": "#2"} + } + }, + { + "from": [1, 0, 7], + "to": [2, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 13, 15, 16], "texture": "#2"}, + "east": {"uv": [7, 13, 9, 16], "texture": "#2"}, + "south": {"uv": [1, 13, 2, 16], "texture": "#2"}, + "west": {"uv": [7, 13, 9, 16], "texture": "#2"}, + "up": {"uv": [1, 7, 2, 9], "texture": "#2"}, + "down": {"uv": [1, 7, 2, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [3, 2, 7], + "to": [4, 5, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 11, 13, 14], "texture": "#2"}, + "east": {"uv": [7, 11, 9, 14], "texture": "#2"}, + "south": {"uv": [3, 11, 4, 14], "texture": "#2"}, + "west": {"uv": [7, 11, 9, 14], "texture": "#2"}, + "up": {"uv": [3, 7, 4, 9], "texture": "#2"}, + "down": {"uv": [3, 7, 4, 9], "texture": "#2"} + } + }, + { + "from": [5, 4, 7], + "to": [6, 7, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 9, 11, 12], "texture": "#2"}, + "east": {"uv": [7, 9, 9, 12], "texture": "#2"}, + "south": {"uv": [5, 9, 6, 12], "texture": "#2"}, + "west": {"uv": [7, 9, 9, 12], "texture": "#2"}, + "up": {"uv": [5, 7, 6, 9], "texture": "#2"}, + "down": {"uv": [5, 7, 6, 9], "texture": "#2"} + } + }, + { + "from": [7, 6, 7], + "to": [8, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 7, 9, 10], "texture": "#2"}, + "east": {"uv": [7, 7, 9, 10], "texture": "#2"}, + "south": {"uv": [7, 7, 8, 10], "texture": "#2"}, + "west": {"uv": [7, 7, 9, 10], "texture": "#2"}, + "up": {"uv": [7, 7, 8, 9], "texture": "#2"}, + "down": {"uv": [7, 7, 8, 9], "texture": "#2"} + } + }, + { + "from": [9, 8, 7], + "to": [10, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 5, 7, 8], "texture": "#2"}, + "east": {"uv": [7, 5, 9, 8], "texture": "#2"}, + "south": {"uv": [9, 5, 10, 8], "texture": "#2"}, + "west": {"uv": [7, 5, 9, 8], "texture": "#2"}, + "up": {"uv": [9, 7, 10, 9], "texture": "#2"}, + "down": {"uv": [9, 7, 10, 9], "texture": "#2"} + } + }, + { + "from": [11, 10, 7], + "to": [12, 13, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 3, 5, 6], "texture": "#2"}, + "east": {"uv": [7, 3, 9, 6], "texture": "#2"}, + "south": {"uv": [11, 3, 12, 6], "texture": "#2"}, + "west": {"uv": [7, 3, 9, 6], "texture": "#2"}, + "up": {"uv": [11, 7, 12, 9], "texture": "#2"}, + "down": {"uv": [11, 7, 12, 9], "texture": "#2"} + } + }, + { + "from": [13, 12, 7], + "to": [14, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 1, 3, 4], "texture": "#2"}, + "east": {"uv": [7, 1, 9, 4], "texture": "#2"}, + "south": {"uv": [13, 1, 14, 4], "texture": "#2"}, + "west": {"uv": [7, 1, 9, 4], "texture": "#2"}, + "up": {"uv": [13, 7, 14, 9], "texture": "#2"}, + "down": {"uv": [13, 7, 14, 9], "texture": "#2"} + } + }, + { + "from": [2, 2, 7], + "to": [3, 3, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 13, 14, 14], "texture": "#2"}, + "east": {"uv": [7, 13, 9, 14], "texture": "#2"}, + "south": {"uv": [2, 13, 3, 14], "texture": "#2"}, + "west": {"uv": [7, 13, 9, 14], "texture": "#2"}, + "up": {"uv": [2, 7, 3, 9], "texture": "#2"}, + "down": {"uv": [2, 7, 3, 9], "texture": "#2"} + } + }, + { + "from": [6, 6, 7], + "to": [7, 7, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 10, 10], "texture": "#2"}, + "east": {"uv": [7, 9, 9, 10], "texture": "#2"}, + "south": {"uv": [6, 9, 7, 10], "texture": "#2"}, + "west": {"uv": [7, 9, 9, 10], "texture": "#2"}, + "up": {"uv": [6, 7, 7, 9], "texture": "#2"}, + "down": {"uv": [6, 7, 7, 9], "texture": "#2"} + } + }, + { + "from": [10, 10, 7], + "to": [11, 11, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 5, 6, 6], "texture": "#2"}, + "east": {"uv": [7, 5, 9, 6], "texture": "#2"}, + "south": {"uv": [10, 5, 11, 6], "texture": "#2"}, + "west": {"uv": [7, 5, 9, 6], "texture": "#2"}, + "up": {"uv": [10, 7, 11, 9], "texture": "#2"}, + "down": {"uv": [10, 7, 11, 9], "texture": "#2"} + } + }, + { + "from": [14, 14, 7], + "to": [15, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 1, 2, 2], "texture": "#2"}, + "east": {"uv": [7, 1, 9, 2], "texture": "#2"}, + "south": {"uv": [14, 1, 15, 2], "texture": "#2"}, + "west": {"uv": [7, 1, 9, 2], "texture": "#2"}, + "up": {"uv": [14, 7, 15, 9], "texture": "#2"}, + "down": {"uv": [14, 7, 15, 9], "texture": "#2"} + } + }, + { + "from": [0, 16, 7], + "to": [1, 32, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 0, 16, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "up": {"uv": [0, 7, 1, 9], "texture": "#2"}, + "down": {"uv": [0, 7, 1, 9], "texture": "#2"} + } + }, + { + "from": [4, 16, 7], + "to": [5, 32, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "up": {"uv": [4, 7, 5, 9], "texture": "#2"}, + "down": {"uv": [4, 7, 5, 9], "texture": "#2"} + } + }, + { + "from": [8, 16, 7], + "to": [9, 32, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 8, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [8, 0, 9, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "up": {"uv": [8, 7, 9, 9], "texture": "#2"}, + "down": {"uv": [8, 7, 9, 9], "texture": "#2"} + } + }, + { + "from": [12, 16, 7], + "to": [13, 32, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 4, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [12, 0, 13, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "up": {"uv": [12, 7, 13, 9], "texture": "#2"}, + "down": {"uv": [12, 7, 13, 9], "texture": "#2"} + } + }, + { + "from": [15, 16, 7], + "to": [16, 32, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#2"}, + "up": {"uv": [15, 7, 16, 9], "texture": "#2"}, + "down": {"uv": [15, 7, 16, 9], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [7, 8, 9, 10, 11] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22] + } + ] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [23, 24, 25, 26, 27] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_top.json b/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_top.json new file mode 100644 index 0000000..9b388a1 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_fence_a_top.json @@ -0,0 +1,342 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "2": "block/black_concrete", + "particle": "block/white_concrete" + }, + "elements": [ + { + "from": [0, 18, 7], + "to": [16, 19, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 13, 16, 14], "texture": "#2"}, + "east": {"uv": [7, 13, 9, 14], "texture": "#2"}, + "south": {"uv": [0, 13, 16, 14], "texture": "#2"}, + "west": {"uv": [7, 13, 9, 14], "texture": "#2"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#2"} + } + }, + { + "from": [0, 16, 7], + "to": [1, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 10, 16, 16], "texture": "#2"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "south": {"uv": [0, 10, 1, 16], "texture": "#2"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "up": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [0, 7, 1, 9], "texture": "#2"} + } + }, + { + "from": [4, 16, 7], + "to": [5, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 10, 12, 16], "texture": "#2"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "south": {"uv": [4, 10, 5, 16], "texture": "#2"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "up": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [4, 7, 5, 9], "texture": "#2"} + } + }, + { + "from": [8, 16, 7], + "to": [9, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 10, 8, 16], "texture": "#2"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "south": {"uv": [8, 10, 9, 16], "texture": "#2"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "up": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [8, 7, 9, 9], "texture": "#2"} + } + }, + { + "from": [12, 16, 7], + "to": [13, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 10, 4, 16], "texture": "#2"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "south": {"uv": [12, 10, 13, 16], "texture": "#2"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "up": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [12, 7, 13, 9], "texture": "#2"} + } + }, + { + "from": [15, 16, 7], + "to": [16, 22, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 10, 1, 16], "texture": "#2"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "south": {"uv": [15, 10, 16, 16], "texture": "#2"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#2"}, + "up": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [15, 7, 16, 9], "texture": "#2"} + } + }, + { + "from": [0, 14, 7], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 6, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#2"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#2"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#2", "cullface": "up"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#2"} + } + }, + { + "from": [0, 0, 7], + "to": [1, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 2, 16, 16], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "south": {"uv": [0, 2, 1, 16], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 7, 1, 9], "texture": "#2"}, + "down": {"uv": [0, 7, 1, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [4, 0, 7], + "to": [5, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 2, 12, 16], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "south": {"uv": [4, 2, 5, 16], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "up": {"uv": [4, 7, 5, 9], "texture": "#2"}, + "down": {"uv": [4, 7, 5, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [8, 0, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 8, 16], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "south": {"uv": [8, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "up": {"uv": [8, 7, 9, 9], "texture": "#2"}, + "down": {"uv": [8, 7, 9, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [12, 0, 7], + "to": [13, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 2, 4, 16], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "south": {"uv": [12, 2, 13, 16], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "up": {"uv": [12, 7, 13, 9], "texture": "#2"}, + "down": {"uv": [12, 7, 13, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [15, 0, 7], + "to": [16, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 2, 1, 16], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2", "cullface": "east"}, + "south": {"uv": [15, 2, 16, 16], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 16], "rotation": 180, "texture": "#2"}, + "up": {"uv": [15, 7, 16, 9], "texture": "#2"}, + "down": {"uv": [15, 7, 16, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [1, 13, 7], + "to": [2, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 2, 15, 3], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"}, + "south": {"uv": [1, 2, 2, 3], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"}, + "up": {"uv": [1, 7, 2, 9], "texture": "#2"}, + "down": {"uv": [1, 7, 2, 9], "texture": "#2"} + } + }, + { + "from": [3, 11, 7], + "to": [4, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 2, 13, 5], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 5], "rotation": 180, "texture": "#2"}, + "south": {"uv": [3, 2, 4, 5], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 5], "rotation": 180, "texture": "#2"}, + "up": {"uv": [3, 7, 4, 9], "texture": "#2"}, + "down": {"uv": [3, 7, 4, 9], "texture": "#2"} + } + }, + { + "from": [5, 9, 7], + "to": [6, 12, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 4, 11, 7], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 4, 9, 7], "rotation": 180, "texture": "#2"}, + "south": {"uv": [5, 4, 6, 7], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 4, 9, 7], "rotation": 180, "texture": "#2"}, + "up": {"uv": [5, 7, 6, 9], "texture": "#2"}, + "down": {"uv": [5, 7, 6, 9], "texture": "#2"} + } + }, + { + "from": [7, 7, 7], + "to": [8, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 6, 9, 9], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 6, 9, 9], "rotation": 180, "texture": "#2"}, + "south": {"uv": [7, 6, 8, 9], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 6, 9, 9], "rotation": 180, "texture": "#2"}, + "up": {"uv": [7, 7, 8, 9], "texture": "#2"}, + "down": {"uv": [7, 7, 8, 9], "texture": "#2"} + } + }, + { + "from": [9, 5, 7], + "to": [10, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 8, 7, 11], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 8, 9, 11], "rotation": 180, "texture": "#2"}, + "south": {"uv": [9, 8, 10, 11], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 8, 9, 11], "rotation": 180, "texture": "#2"}, + "up": {"uv": [9, 7, 10, 9], "texture": "#2"}, + "down": {"uv": [9, 7, 10, 9], "texture": "#2"} + } + }, + { + "from": [11, 3, 7], + "to": [12, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 10, 5, 13], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 10, 9, 13], "rotation": 180, "texture": "#2"}, + "south": {"uv": [11, 10, 12, 13], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 10, 9, 13], "rotation": 180, "texture": "#2"}, + "up": {"uv": [11, 7, 12, 9], "texture": "#2"}, + "down": {"uv": [11, 7, 12, 9], "texture": "#2"} + } + }, + { + "from": [13, 1, 7], + "to": [14, 4, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 12, 3, 15], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 12, 9, 15], "rotation": 180, "texture": "#2"}, + "south": {"uv": [13, 12, 14, 15], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 12, 9, 15], "rotation": 180, "texture": "#2"}, + "up": {"uv": [13, 7, 14, 9], "texture": "#2"}, + "down": {"uv": [13, 7, 14, 9], "texture": "#2"} + } + }, + { + "from": [2, 13, 7], + "to": [3, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 2, 14, 3], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"}, + "south": {"uv": [2, 2, 3, 3], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 2, 9, 3], "rotation": 180, "texture": "#2"}, + "up": {"uv": [2, 7, 3, 9], "texture": "#2"}, + "down": {"uv": [2, 7, 3, 9], "texture": "#2"} + } + }, + { + "from": [6, 9, 7], + "to": [7, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 10, 7], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 6, 9, 7], "rotation": 180, "texture": "#2"}, + "south": {"uv": [6, 6, 7, 7], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 6, 9, 7], "rotation": 180, "texture": "#2"}, + "up": {"uv": [6, 7, 7, 9], "texture": "#2"}, + "down": {"uv": [6, 7, 7, 9], "texture": "#2"} + } + }, + { + "from": [10, 5, 7], + "to": [11, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 10, 6, 11], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 10, 9, 11], "rotation": 180, "texture": "#2"}, + "south": {"uv": [10, 10, 11, 11], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 10, 9, 11], "rotation": 180, "texture": "#2"}, + "up": {"uv": [10, 7, 11, 9], "texture": "#2"}, + "down": {"uv": [10, 7, 11, 9], "texture": "#2"} + } + }, + { + "from": [14, 1, 7], + "to": [15, 2, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 14, 2, 15], "rotation": 180, "texture": "#2"}, + "east": {"uv": [7, 14, 9, 15], "rotation": 180, "texture": "#2"}, + "south": {"uv": [14, 14, 15, 15], "rotation": 180, "texture": "#2"}, + "west": {"uv": [7, 14, 9, 15], "rotation": 180, "texture": "#2"}, + "up": {"uv": [14, 7, 15, 9], "texture": "#2"}, + "down": {"uv": [14, 7, 15, 9], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [ + { + "name": "group", + "origin": [15, 16, 7], + "color": 0, + "children": [6] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [7, 8, 9, 10, 11] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22] + } + ] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_fence_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b.json new file mode 100644 index 0000000..f655d01 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b.json @@ -0,0 +1,82 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "particle": "block/white_concrete", + "tex": "block/white_concrete" + }, + "elements": [ + { + "from": [1, 0, 7], + "to": [3, 16, 8], + "faces": { + "north": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [1, 7, 3, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [1, 8, 3, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [5, 0, 7], + "to": [7, 16, 8], + "faces": { + "north": {"uv": [9, 0, 11, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [5, 0, 7, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [5, 7, 7, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [5, 8, 7, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [9, 0, 7], + "to": [11, 16, 8], + "faces": { + "north": {"uv": [5, 0, 7, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [9, 0, 11, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [9, 7, 11, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [9, 8, 11, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [13, 0, 7], + "to": [15, 16, 8], + "faces": { + "north": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [13, 7, 15, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [13, 8, 15, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [0, 3, 8], + "to": [16, 6, 9], + "faces": { + "north": {"uv": [0, 10, 16, 13], "texture": "#tex"}, + "east": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "east"}, + "south": {"uv": [0, 10, 16, 13], "texture": "#tex"}, + "west": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "west"}, + "up": {"uv": [0, 8, 16, 9], "texture": "#tex"}, + "down": {"uv": [0, 7, 16, 8], "texture": "#tex"} + } + }, + { + "from": [0, 9, 8], + "to": [16, 12, 9], + "faces": { + "north": {"uv": [0, 4, 16, 7], "texture": "#tex"}, + "east": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "east"}, + "south": {"uv": [0, 4, 16, 7], "texture": "#tex"}, + "west": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "west"}, + "up": {"uv": [0, 8, 16, 9], "texture": "#tex"}, + "down": {"uv": [0, 7, 16, 8], "texture": "#tex"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_inner.json b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_inner.json new file mode 100644 index 0000000..0f7b962 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_inner.json @@ -0,0 +1,94 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "particle": "block/white_concrete", + "tex": "block/white_concrete" + }, + "elements": [ + { + "from": [13, 0, 7], + "to": [15, 16, 8], + "faces": { + "north": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [13, 7, 15, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [13, 8, 15, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [8, 0, 1], + "to": [9, 16, 3], + "faces": { + "north": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "east": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "south": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "west": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "up": {"uv": [8, 1, 9, 3], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [8, 13, 9, 15], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [10, 3, 8], + "to": [16, 6, 9], + "faces": { + "north": {"uv": [0, 10, 6, 13], "texture": "#tex"}, + "east": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "east"}, + "south": {"uv": [10, 10, 16, 13], "texture": "#tex"}, + "west": {"uv": [8, 10, 9, 13], "texture": "#tex"}, + "up": {"uv": [10, 8, 16, 9], "texture": "#tex"}, + "down": {"uv": [10, 7, 16, 8], "texture": "#tex"} + } + }, + { + "from": [10, 9, 8], + "to": [16, 12, 9], + "faces": { + "north": {"uv": [0, 4, 6, 7], "texture": "#tex"}, + "east": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "east"}, + "south": {"uv": [10, 4, 16, 7], "texture": "#tex"}, + "west": {"uv": [8, 4, 9, 7], "texture": "#tex"}, + "up": {"uv": [10, 8, 16, 9], "texture": "#tex"}, + "down": {"uv": [10, 7, 16, 8], "texture": "#tex"} + } + }, + { + "from": [7, 3, 0], + "to": [8, 6, 6], + "faces": { + "north": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "north"}, + "east": {"uv": [10, 10, 16, 13], "texture": "#tex"}, + "south": {"uv": [7, 10, 8, 13], "texture": "#tex"}, + "west": {"uv": [0, 10, 6, 13], "texture": "#tex"}, + "up": {"uv": [7, 0, 8, 6], "texture": "#tex"}, + "down": {"uv": [7, 10, 8, 16], "texture": "#tex"} + } + }, + { + "from": [7, 9, 0], + "to": [8, 12, 6], + "faces": { + "north": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "north"}, + "east": {"uv": [10, 4, 16, 7], "texture": "#tex"}, + "south": {"uv": [7, 4, 8, 7], "texture": "#tex"}, + "west": {"uv": [0, 4, 6, 7], "texture": "#tex"}, + "up": {"uv": [7, 0, 8, 6], "texture": "#tex"}, + "down": {"uv": [7, 10, 8, 16], "texture": "#tex"} + } + }, + { + "from": [6, 0, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "east": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "west": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "up": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_outer.json b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_outer.json new file mode 100644 index 0000000..5eb9be3 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_fence_b_corner_outer.json @@ -0,0 +1,94 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "particle": "block/white_concrete", + "tex": "block/white_concrete" + }, + "elements": [ + { + "from": [1, 0, 7], + "to": [3, 16, 8], + "faces": { + "north": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "south": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "up": {"uv": [1, 7, 3, 8], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [1, 8, 3, 9], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [8, 0, 13], + "to": [9, 16, 15], + "faces": { + "north": {"uv": [7, 0, 8, 16], "texture": "#tex"}, + "east": {"uv": [1, 0, 3, 16], "texture": "#tex"}, + "south": {"uv": [8, 0, 9, 16], "texture": "#tex"}, + "west": {"uv": [13, 0, 15, 16], "texture": "#tex"}, + "up": {"uv": [8, 13, 9, 15], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [8, 1, 9, 3], "texture": "#tex", "cullface": "down"} + } + }, + { + "from": [0, 3, 8], + "to": [6, 6, 9], + "faces": { + "north": {"uv": [10, 10, 16, 13], "texture": "#tex"}, + "east": {"uv": [7, 10, 8, 13], "texture": "#tex"}, + "south": {"uv": [0, 10, 6, 13], "texture": "#tex"}, + "west": {"uv": [8, 10, 9, 13], "texture": "#tex", "cullface": "west"}, + "up": {"uv": [0, 8, 6, 9], "texture": "#tex"}, + "down": {"uv": [0, 7, 6, 8], "texture": "#tex"} + } + }, + { + "from": [0, 9, 8], + "to": [6, 12, 9], + "faces": { + "north": {"uv": [10, 4, 16, 7], "texture": "#tex"}, + "east": {"uv": [7, 4, 8, 7], "texture": "#tex"}, + "south": {"uv": [0, 4, 6, 7], "texture": "#tex"}, + "west": {"uv": [8, 4, 9, 7], "texture": "#tex", "cullface": "west"}, + "up": {"uv": [0, 8, 6, 9], "texture": "#tex"}, + "down": {"uv": [0, 7, 6, 8], "texture": "#tex"} + } + }, + { + "from": [7, 3, 10], + "to": [8, 6, 16], + "faces": { + "north": {"uv": [8, 10, 9, 13], "texture": "#tex"}, + "east": {"uv": [0, 10, 6, 13], "texture": "#tex"}, + "south": {"uv": [7, 10, 8, 13], "texture": "#tex", "cullface": "south"}, + "west": {"uv": [10, 10, 16, 13], "texture": "#tex"}, + "up": {"uv": [7, 10, 8, 16], "texture": "#tex"}, + "down": {"uv": [7, 0, 8, 6], "texture": "#tex"} + } + }, + { + "from": [7, 9, 10], + "to": [8, 12, 16], + "faces": { + "north": {"uv": [8, 4, 9, 7], "texture": "#tex"}, + "east": {"uv": [0, 4, 6, 7], "texture": "#tex"}, + "south": {"uv": [7, 4, 8, 7], "texture": "#tex", "cullface": "south"}, + "west": {"uv": [10, 4, 16, 7], "texture": "#tex"}, + "up": {"uv": [7, 10, 8, 16], "texture": "#tex"}, + "down": {"uv": [7, 0, 8, 6], "texture": "#tex"} + } + }, + { + "from": [6, 0, 6], + "to": [10, 16, 10], + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "east": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "west": {"uv": [6, 0, 10, 16], "texture": "#tex"}, + "up": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "up"}, + "down": {"uv": [6, 6, 10, 10], "texture": "#tex", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_ground_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_ground_a.json new file mode 100644 index 0000000..9e0545d --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_ground_a.json @@ -0,0 +1,428 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/red_concrete", + "2": "block/polished_diorite", + "particle": "block/polished_diorite" + }, + "elements": [ + { + "from": [15, 0, 15], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [15, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [15, 15, 16, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [15, 0, 16, 1], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [14, 0, 14], + "to": [15, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 2, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 2, 16], "texture": "#2"}, + "south": {"uv": [14, 0, 15, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [14, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [14, 14, 15, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [14, 0, 15, 2], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [13, 0, 13], + "to": [14, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 3, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 3, 16], "texture": "#2"}, + "south": {"uv": [13, 0, 14, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [13, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [13, 13, 14, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [13, 0, 14, 3], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [12, 0, 12], + "to": [13, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 4, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#2"}, + "south": {"uv": [12, 0, 13, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [12, 12, 13, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [12, 0, 13, 4], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [11, 0, 11], + "to": [12, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 5, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 5, 16], "texture": "#2"}, + "south": {"uv": [11, 0, 12, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [11, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [11, 11, 12, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [11, 0, 12, 5], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [10, 0, 10], + "to": [11, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 0, 6, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 6, 16], "texture": "#2"}, + "south": {"uv": [10, 0, 11, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [10, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [10, 10, 11, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [10, 0, 11, 6], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [9, 0, 9], + "to": [10, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 7, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 7, 16], "texture": "#2"}, + "south": {"uv": [9, 0, 10, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [9, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [9, 9, 10, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [9, 0, 10, 7], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [8, 0, 8], + "to": [9, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 8, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 8, 16], "texture": "#2"}, + "south": {"uv": [8, 0, 9, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [8, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [8, 8, 9, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [8, 0, 9, 8], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [7, 0, 7], + "to": [8, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 0, 9, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 9, 16], "texture": "#2"}, + "south": {"uv": [7, 0, 8, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [7, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [7, 7, 8, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [7, 0, 8, 9], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [6, 0, 6], + "to": [7, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 10, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 10, 16], "texture": "#2"}, + "south": {"uv": [6, 0, 7, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [6, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [6, 6, 7, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [6, 0, 7, 10], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [5, 0, 5], + "to": [6, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 0, 11, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 11, 16], "texture": "#2"}, + "south": {"uv": [5, 0, 6, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [5, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [5, 5, 6, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [5, 0, 6, 11], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [4, 0, 4], + "to": [5, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 12, 16], "texture": "#2"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [4, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [4, 4, 5, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [4, 0, 5, 12], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [3, 0, 3], + "to": [4, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 13, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 13, 16], "texture": "#2"}, + "south": {"uv": [3, 0, 4, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [3, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [3, 3, 4, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [3, 0, 4, 13], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [2, 0, 2], + "to": [3, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 0, 14, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 14, 16], "texture": "#2"}, + "south": {"uv": [2, 0, 3, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [2, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [2, 2, 3, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [2, 0, 3, 14], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [1, 0, 1], + "to": [2, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 0, 15, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 15, 16], "texture": "#2"}, + "south": {"uv": [1, 0, 2, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [1, 0, 16, 16], "texture": "#2"}, + "up": {"uv": [1, 1, 2, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [1, 0, 2, 15], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [0, 0, 0], + "to": [1, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [15, 0, 16, 16], "texture": "#2", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "south": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "up"}, + "down": {"uv": [0, 0, 1, 16], "texture": "#2", "cullface": "down"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 1, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [1, 0, 16, 16], "texture": "#1", "cullface": "east"}, + "south": {"uv": [15, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 15, 16], "texture": "#1"}, + "up": {"uv": [15, 0, 16, 15], "texture": "#1", "cullface": "up"}, + "down": {"uv": [15, 1, 16, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [14, 0, 0], + "to": [15, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 2, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [2, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [14, 0, 15, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 14, 16], "texture": "#1"}, + "up": {"uv": [14, 0, 15, 14], "texture": "#1", "cullface": "up"}, + "down": {"uv": [14, 2, 15, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [13, 0, 0], + "to": [14, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 3, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [3, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [13, 0, 14, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 13, 16], "texture": "#1"}, + "up": {"uv": [13, 0, 14, 13], "texture": "#1", "cullface": "up"}, + "down": {"uv": [13, 3, 14, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [12, 0, 0], + "to": [13, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 4, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [4, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [12, 0, 13, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 12, 16], "texture": "#1"}, + "up": {"uv": [12, 0, 13, 12], "texture": "#1", "cullface": "up"}, + "down": {"uv": [12, 4, 13, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [11, 0, 0], + "to": [12, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 5, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [5, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [11, 0, 12, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 11, 16], "texture": "#1"}, + "up": {"uv": [11, 0, 12, 11], "texture": "#1", "cullface": "up"}, + "down": {"uv": [11, 5, 12, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [10, 0, 0], + "to": [11, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 0, 6, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [6, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [10, 0, 11, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 10, 16], "texture": "#1"}, + "up": {"uv": [10, 0, 11, 10], "texture": "#1", "cullface": "up"}, + "down": {"uv": [10, 6, 11, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [9, 0, 0], + "to": [10, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 7, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [7, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [9, 0, 10, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 9, 16], "texture": "#1"}, + "up": {"uv": [9, 0, 10, 9], "texture": "#1", "cullface": "up"}, + "down": {"uv": [9, 7, 10, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [8, 0, 0], + "to": [9, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 8, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [8, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [8, 0, 9, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 8, 16], "texture": "#1"}, + "up": {"uv": [8, 0, 9, 8], "texture": "#1", "cullface": "up"}, + "down": {"uv": [8, 8, 9, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [7, 0, 0], + "to": [8, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 0, 9, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [7, 0, 8, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#1"}, + "up": {"uv": [7, 0, 8, 7], "texture": "#1", "cullface": "up"}, + "down": {"uv": [7, 9, 8, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [6, 0, 0], + "to": [7, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 10, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [10, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [6, 0, 7, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 6, 16], "texture": "#1"}, + "up": {"uv": [6, 0, 7, 6], "texture": "#1", "cullface": "up"}, + "down": {"uv": [6, 10, 7, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [5, 0, 0], + "to": [6, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 0, 11, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [11, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [5, 0, 6, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 5, 16], "texture": "#1"}, + "up": {"uv": [5, 0, 6, 5], "texture": "#1", "cullface": "up"}, + "down": {"uv": [5, 11, 6, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [4, 0, 0], + "to": [5, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 0, 12, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [4, 0, 5, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#1"}, + "up": {"uv": [4, 0, 5, 4], "texture": "#1", "cullface": "up"}, + "down": {"uv": [4, 12, 5, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [3, 0, 0], + "to": [4, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 13, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [13, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [3, 0, 4, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 3, 16], "texture": "#1"}, + "up": {"uv": [3, 0, 4, 3], "texture": "#1", "cullface": "up"}, + "down": {"uv": [3, 13, 4, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [2, 0, 0], + "to": [3, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 0, 14, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [14, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [2, 0, 3, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 2, 16], "texture": "#1"}, + "up": {"uv": [2, 0, 3, 2], "texture": "#1", "cullface": "up"}, + "down": {"uv": [2, 14, 3, 16], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [1, 0, 0], + "to": [2, 16, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 0, 15, 16], "texture": "#1", "cullface": "north"}, + "east": {"uv": [15, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [1, 0, 2, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 16], "texture": "#1"}, + "up": {"uv": [1, 0, 2, 1], "texture": "#1", "cullface": "up"}, + "down": {"uv": [1, 15, 2, 16], "texture": "#1", "cullface": "down"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_iron_pole_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_iron_pole_a.json new file mode 100644 index 0000000..3dabf57 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_iron_pole_a.json @@ -0,0 +1,49 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [6, 0, 7], + "to": [10, 16, 9], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 9], + "to": [9, 16, 10], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 6], + "to": [9, 16, 7], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_misc_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_misc_a.json new file mode 100644 index 0000000..03ba18a --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_misc_a.json @@ -0,0 +1,25 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "block/quartz_block_side" + }, + "elements": [ + { + "from": [0, 0, 14], + "to": [16, 8, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 8, 2, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [14, 8, 16, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 14, 16, 16], "texture": "#3"}, + "down": {"uv": [0, 0, 16, 2], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_misc_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_misc_b.json new file mode 100644 index 0000000..acf9ae4 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_misc_b.json @@ -0,0 +1,38 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "block/quartz_block_side" + }, + "elements": [ + { + "from": [0, 8, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#3", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [0, 0, 4], + "to": [16, 8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#2"}, + "east": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#2"}, + "west": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 4, 16, 12], "texture": "#3"}, + "down": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_misc_c.json b/resourcepack/assets/wheat_plus/models/block/building/building_misc_c.json new file mode 100644 index 0000000..ec23a7f --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_misc_c.json @@ -0,0 +1,51 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "block/quartz_block_side" + }, + "elements": [ + { + "from": [0, 8, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 8], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#3", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#1"} + } + }, + { + "from": [0, 0, 4], + "to": [16, 8, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#2"}, + "east": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#2"}, + "west": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 4, 16, 12], "texture": "#3"}, + "down": {"uv": [0, 4, 16, 12], "texture": "#1", "cullface": "down"} + } + }, + { + "from": [4, 0, 0], + "to": [12, 8, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#2", "cullface": "north"}, + "east": {"uv": [12, 8, 16, 16], "texture": "#2"}, + "south": {"uv": [4, 8, 12, 16], "texture": "#2"}, + "west": {"uv": [0, 8, 4, 16], "texture": "#2"}, + "up": {"uv": [4, 0, 12, 4], "texture": "#3"}, + "down": {"uv": [4, 12, 12, 16], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a.json new file mode 100644 index 0000000..8aab603 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a.json @@ -0,0 +1,192 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [1, 0, 6], + "to": [15, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 5], + "to": [14, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 10], + "to": [14, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 11], + "to": [14, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 4], + "to": [14, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 3], + "to": [13, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "south": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 12], + "to": [13, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 2], + "to": [12, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 13], + "to": [12, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 1], + "to": [10, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 14], + "to": [10, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 7], + "to": [15, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 8], + "to": [15, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 9], + "to": [15, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a_high.json b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a_high.json new file mode 100644 index 0000000..b7cf819 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_a_high.json @@ -0,0 +1,388 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [1, 0, 6], + "to": [15, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 5], + "to": [14, 16, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 10], + "to": [14, 16, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [5, 0, 6, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [10, 0, 11, 16], "texture": "#0"}, + "up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 11], + "to": [14, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [2, 0, 4], + "to": [14, 16, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "east": {"uv": [11, 0, 12, 16], "texture": "#0"}, + "south": {"uv": [2, 0, 14, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 5, 16], "texture": "#0"}, + "up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 3], + "to": [13, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "south": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "west": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [3, 0, 12], + "to": [13, 16, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [3, 0, 13, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 2], + "to": [12, 16, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [4, 0, 13], + "to": [12, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [2, 0, 3, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [13, 0, 14, 16], "texture": "#0"}, + "up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 1], + "to": [10, 16, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "west": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 14], + "to": [10, 16, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "east": {"uv": [1, 0, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 0, 10, 16], "texture": "#0"}, + "west": {"uv": [14, 0, 15, 16], "texture": "#0"}, + "up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 7], + "to": [15, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 8], + "to": [15, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 8, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 0, 9], + "to": [15, 16, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "east": {"uv": [6, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [1, 0, 15, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 10, 16], "texture": "#0"}, + "up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [1, 16, 6], + "to": [15, 24, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "east": {"uv": [9, 8, 10, 16], "texture": "#0"}, + "south": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "west": {"uv": [6, 8, 7, 16], "texture": "#0"}, + "up": {"uv": [1, 6, 15, 7], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 9, 15, 10], "texture": "#0"} + } + }, + { + "from": [2, 16, 5], + "to": [14, 24, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "east": {"uv": [10, 8, 11, 16], "texture": "#0"}, + "south": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "west": {"uv": [5, 8, 6, 16], "texture": "#0"}, + "up": {"uv": [2, 5, 14, 6], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 10, 14, 11], "texture": "#0"} + } + }, + { + "from": [2, 16, 10], + "to": [14, 24, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "east": {"uv": [5, 8, 6, 16], "texture": "#0"}, + "south": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "west": {"uv": [10, 8, 11, 16], "texture": "#0"}, + "up": {"uv": [2, 10, 14, 11], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 5, 14, 6], "texture": "#0"} + } + }, + { + "from": [2, 16, 11], + "to": [14, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "east": {"uv": [4, 8, 5, 16], "texture": "#0"}, + "south": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "west": {"uv": [11, 8, 12, 16], "texture": "#0"}, + "up": {"uv": [2, 11, 14, 12], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 4, 14, 5], "texture": "#0"} + } + }, + { + "from": [2, 16, 4], + "to": [14, 24, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "east": {"uv": [11, 8, 12, 16], "texture": "#0"}, + "south": {"uv": [2, 8, 14, 16], "texture": "#0"}, + "west": {"uv": [4, 8, 5, 16], "texture": "#0"}, + "up": {"uv": [2, 4, 14, 5], "texture": "#0", "cullface": "up"}, + "down": {"uv": [2, 11, 14, 12], "texture": "#0"} + } + }, + { + "from": [3, 16, 3], + "to": [13, 24, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 8, 13, 16], "texture": "#0"}, + "east": {"uv": [12, 8, 13, 16], "texture": "#0"}, + "south": {"uv": [3, 8, 13, 16], "texture": "#0"}, + "west": {"uv": [3, 8, 4, 16], "texture": "#0"}, + "up": {"uv": [3, 3, 13, 4], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 12, 13, 13], "texture": "#0"} + } + }, + { + "from": [3, 16, 12], + "to": [13, 24, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 8, 13, 16], "texture": "#0"}, + "east": {"uv": [3, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [3, 8, 13, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 13, 16], "texture": "#0"}, + "up": {"uv": [3, 12, 13, 13], "texture": "#0", "cullface": "up"}, + "down": {"uv": [3, 3, 13, 4], "texture": "#0"} + } + }, + { + "from": [4, 16, 2], + "to": [12, 24, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "east": {"uv": [13, 8, 14, 16], "texture": "#0"}, + "south": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "west": {"uv": [2, 8, 3, 16], "texture": "#0"}, + "up": {"uv": [4, 2, 12, 3], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 13, 12, 14], "texture": "#0"} + } + }, + { + "from": [4, 16, 13], + "to": [12, 24, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "east": {"uv": [2, 8, 3, 16], "texture": "#0"}, + "south": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "west": {"uv": [13, 8, 14, 16], "texture": "#0"}, + "up": {"uv": [4, 13, 12, 14], "texture": "#0", "cullface": "up"}, + "down": {"uv": [4, 2, 12, 3], "texture": "#0"} + } + }, + { + "from": [6, 16, 1], + "to": [10, 24, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 8, 10, 16], "texture": "#0"}, + "east": {"uv": [14, 8, 15, 16], "texture": "#0"}, + "south": {"uv": [6, 8, 10, 16], "texture": "#0"}, + "west": {"uv": [1, 8, 2, 16], "texture": "#0"}, + "up": {"uv": [6, 1, 10, 2], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 14, 10, 15], "texture": "#0"} + } + }, + { + "from": [6, 16, 14], + "to": [10, 24, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 8, 10, 16], "texture": "#0"}, + "east": {"uv": [1, 8, 2, 16], "texture": "#0"}, + "south": {"uv": [6, 8, 10, 16], "texture": "#0"}, + "west": {"uv": [14, 8, 15, 16], "texture": "#0"}, + "up": {"uv": [6, 14, 10, 15], "texture": "#0", "cullface": "up"}, + "down": {"uv": [6, 1, 10, 2], "texture": "#0"} + } + }, + { + "from": [1, 16, 7], + "to": [15, 24, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "east": {"uv": [8, 8, 9, 16], "texture": "#0"}, + "south": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "west": {"uv": [7, 8, 8, 16], "texture": "#0"}, + "up": {"uv": [1, 7, 15, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 8, 15, 9], "texture": "#0"} + } + }, + { + "from": [1, 16, 8], + "to": [15, 24, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "east": {"uv": [7, 8, 8, 16], "texture": "#0"}, + "south": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "west": {"uv": [8, 8, 9, 16], "texture": "#0"}, + "up": {"uv": [1, 8, 15, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 7, 15, 8], "texture": "#0"} + } + }, + { + "from": [1, 16, 9], + "to": [15, 24, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "east": {"uv": [6, 8, 7, 16], "texture": "#0"}, + "south": {"uv": [1, 8, 15, 16], "texture": "#0"}, + "west": {"uv": [9, 8, 10, 16], "texture": "#0"}, + "up": {"uv": [1, 9, 15, 10], "texture": "#0", "cullface": "up"}, + "down": {"uv": [1, 6, 15, 7], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b.json new file mode 100644 index 0000000..1e01833 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b.json @@ -0,0 +1,231 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [-4, 0, 16], + "to": [0, 16, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [-4, 0, -4], + "to": [0, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [4, 0, -8], + "to": [12, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "down": {"uv": [4, 0, 12, 8], "texture": "#0"} + } + }, + { + "from": [12, 0, -7], + "to": [16, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 9, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 0, -7], + "to": [4, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 9, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 7], "texture": "#0"} + } + }, + { + "from": [0, 0, 16], + "to": [4, 16, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 4, 16], "texture": "#0"} + } + }, + { + "from": [12, 0, 16], + "to": [16, 16, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 7], "texture": "#0"}, + "down": {"uv": [12, 9, 16, 16], "texture": "#0"} + } + }, + { + "from": [-8, 0, 4], + "to": [0, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [8, 4, 16, 12], "texture": "#0"}, + "down": {"uv": [8, 4, 16, 12], "texture": "#0"} + } + }, + { + "from": [16, 0, 4], + "to": [24, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [0, 4, 8, 12], "texture": "#0"}, + "down": {"uv": [0, 4, 8, 12], "texture": "#0"} + } + }, + { + "from": [4, 0, 16], + "to": [12, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [4, 0, 12, 8], "texture": "#0"}, + "down": {"uv": [4, 8, 12, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, -4], + "to": [20, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "from": [16, 0, 0], + "to": [23, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 7, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 7, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, 12], + "to": [23, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 7, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 7, 4], "texture": "#0"} + } + }, + { + "from": [-7, 0, 12], + "to": [0, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [9, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [9, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [-7, 0, 0], + "to": [0, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [9, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [9, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, 16], + "to": [20, 16, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 4, 16], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b_high.json b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b_high.json new file mode 100644 index 0000000..3395371 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_pillar_b_high.json @@ -0,0 +1,466 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [-4, 0, 16], + "to": [0, 16, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [-4, 0, -4], + "to": [0, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [4, 0, -8], + "to": [12, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "west": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "down": {"uv": [4, 0, 12, 8], "texture": "#0"} + } + }, + { + "from": [12, 0, -7], + "to": [16, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 9, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 0, -7], + "to": [4, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 9, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 7], "texture": "#0"} + } + }, + { + "from": [0, 0, 16], + "to": [4, 16, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 4, 16], "texture": "#0"} + } + }, + { + "from": [12, 0, 16], + "to": [16, 16, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "east": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 7], "texture": "#0"}, + "down": {"uv": [12, 9, 16, 16], "texture": "#0"} + } + }, + { + "from": [-8, 0, 4], + "to": [0, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "south": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [8, 4, 16, 12], "texture": "#0"}, + "down": {"uv": [8, 4, 16, 12], "texture": "#0"} + } + }, + { + "from": [16, 0, 4], + "to": [24, 16, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "up": {"uv": [0, 4, 8, 12], "texture": "#0"}, + "down": {"uv": [0, 4, 8, 12], "texture": "#0"} + } + }, + { + "from": [4, 0, 16], + "to": [12, 16, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 0, 12, 16], "texture": "#0"}, + "east": {"uv": [8, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [4, 0, 12, 16], "texture": "#0", "cullface": "south"}, + "west": {"uv": [0, 0, 8, 16], "texture": "#0"}, + "up": {"uv": [4, 0, 12, 8], "texture": "#0"}, + "down": {"uv": [4, 8, 12, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, -4], + "to": [20, 16, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "from": [16, 0, 0], + "to": [23, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 7, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 7, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, 12], + "to": [23, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 7, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 7, 4], "texture": "#0"} + } + }, + { + "from": [-7, 0, 12], + "to": [0, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 0, 16, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [9, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [9, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [-7, 0, 0], + "to": [0, 16, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 7, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [9, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [9, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [9, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [16, 0, 16], + "to": [20, 16, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 0, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 4, 16], "texture": "#0"} + } + }, + { + "from": [-4, 16, 16], + "to": [0, 24, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "east": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [0, 16, 0], + "to": [16, 24, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + } + }, + { + "from": [-4, 16, -4], + "to": [0, 24, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [4, 16, -8], + "to": [12, 24, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 8, 16], "texture": "#0"}, + "south": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "west": {"uv": [8, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "down": {"uv": [4, 0, 12, 8], "texture": "#0"} + } + }, + { + "from": [12, 16, -7], + "to": [16, 24, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "south": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [12, 9, 16, 16], "texture": "#0"}, + "down": {"uv": [12, 0, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 16, -7], + "to": [4, 24, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "west": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 9, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 7], "texture": "#0"} + } + }, + { + "from": [0, 16, 16], + "to": [4, 24, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 4, 16], "texture": "#0"} + } + }, + { + "from": [12, 16, 16], + "to": [16, 24, 23], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "east": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "up": {"uv": [12, 0, 16, 7], "texture": "#0"}, + "down": {"uv": [12, 9, 16, 16], "texture": "#0"} + } + }, + { + "from": [-8, 16, 4], + "to": [0, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 8, 16], "texture": "#0"}, + "east": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "south": {"uv": [8, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "up": {"uv": [8, 4, 16, 12], "texture": "#0"}, + "down": {"uv": [8, 4, 16, 12], "texture": "#0"} + } + }, + { + "from": [16, 16, 4], + "to": [24, 24, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 8, 16], "texture": "#0"}, + "west": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "up": {"uv": [0, 4, 8, 12], "texture": "#0"}, + "down": {"uv": [0, 4, 8, 12], "texture": "#0"} + } + }, + { + "from": [4, 16, 16], + "to": [12, 24, 24], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "east": {"uv": [8, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [4, 8, 12, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 8, 16], "texture": "#0"}, + "up": {"uv": [4, 0, 12, 8], "texture": "#0"}, + "down": {"uv": [4, 8, 12, 16], "texture": "#0"} + } + }, + { + "from": [16, 16, -4], + "to": [20, 24, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 4, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 4, 4], "texture": "#0"} + } + }, + { + "from": [16, 16, 0], + "to": [23, 24, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 7, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 7, 16], "texture": "#0"} + } + }, + { + "from": [16, 16, 12], + "to": [23, 24, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [0, 12, 7, 16], "texture": "#0"}, + "down": {"uv": [0, 0, 7, 4], "texture": "#0"} + } + }, + { + "from": [-7, 16, 12], + "to": [0, 24, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "south": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "up": {"uv": [9, 12, 16, 16], "texture": "#0"}, + "down": {"uv": [9, 0, 16, 4], "texture": "#0"} + } + }, + { + "from": [-7, 16, 0], + "to": [0, 24, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 7, 16], "texture": "#0"}, + "east": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [9, 8, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "up": {"uv": [9, 0, 16, 4], "texture": "#0"}, + "down": {"uv": [9, 12, 16, 16], "texture": "#0"} + } + }, + { + "from": [16, 16, 16], + "to": [20, 24, 20], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "east": {"uv": [12, 8, 16, 16], "texture": "#0"}, + "south": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "west": {"uv": [0, 8, 4, 16], "texture": "#0"}, + "up": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "down": {"uv": [0, 12, 4, 16], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_a.json new file mode 100644 index 0000000..c3c6204 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_a.json @@ -0,0 +1,49 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [0, 6, 7], + "to": [16, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#0"} + } + }, + { + "from": [0, 7, 9], + "to": [16, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 9, 16, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [16, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 6, 16, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 16, 10], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_b.json new file mode 100644 index 0000000..4b6f37f --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_b.json @@ -0,0 +1,88 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [0, 6, 7], + "to": [16, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#0"} + } + }, + { + "from": [0, 7, 9], + "to": [16, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 9, 16, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [16, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 6, 16, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 16, 10], "texture": "#0"} + } + }, + { + "from": [6, 0, 7], + "to": [10, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 10, 10, 16], "texture": "#0"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "south": {"uv": [6, 10, 10, 16], "texture": "#0"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "up": {"uv": [6, 7, 10, 9], "texture": "#0"}, + "down": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 6], + "to": [9, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "east": {"uv": [9, 9, 10, 16], "texture": "#0"}, + "south": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "west": {"uv": [6, 9, 7, 16], "texture": "#0"}, + "up": {"uv": [7, 6, 9, 7], "texture": "#0"}, + "down": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 9], + "to": [9, 7, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "east": {"uv": [6, 9, 7, 16], "texture": "#0"}, + "south": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 16], "texture": "#0"}, + "up": {"uv": [7, 9, 9, 10], "texture": "#0"}, + "down": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_c.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_c.json new file mode 100644 index 0000000..9a51da9 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_c.json @@ -0,0 +1,166 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [0, 9, 7], + "to": [8, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 6, 16, 7], "texture": "#0"}, + "east": {"uv": [7, 6, 9, 7], "texture": "#0"}, + "south": {"uv": [0, 6, 8, 7], "texture": "#0"}, + "west": {"uv": [7, 6, 9, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 8, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 8, 9], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [7, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 10, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 6, 7, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 7, 10], "texture": "#0"} + } + }, + { + "from": [0, 6, 7], + "to": [6, 7, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 9, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 9, 9, 10], "texture": "#0"}, + "south": {"uv": [0, 9, 6, 10], "texture": "#0"}, + "west": {"uv": [7, 9, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 6, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 6, 6], + "to": [7, 7, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "east": {"uv": [6, 9, 10, 10], "texture": "#0"}, + "south": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "west": {"uv": [6, 9, 10, 10], "texture": "#0"}, + "up": {"uv": [6, 6, 7, 10], "texture": "#0"}, + "down": {"uv": [6, 6, 7, 10], "texture": "#0"} + } + }, + { + "from": [5, 5, 7], + "to": [6, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 10, 11, 11], "texture": "#0"}, + "east": {"uv": [7, 10, 9, 11], "texture": "#0"}, + "south": {"uv": [5, 10, 6, 11], "texture": "#0"}, + "west": {"uv": [7, 10, 9, 11], "texture": "#0"}, + "up": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "down": {"uv": [5, 7, 6, 9], "texture": "#0"} + } + }, + { + "from": [9, 0, 7], + "to": [10, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 8, 7, 16], "texture": "#0"}, + "east": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "south": {"uv": [9, 8, 10, 16], "texture": "#0"}, + "west": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "up": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "down": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 0, 6], + "to": [9, 7, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "east": {"uv": [6, 9, 10, 16], "texture": "#0"}, + "south": {"uv": [7, 9, 9, 16], "texture": "#0"}, + "west": {"uv": [6, 9, 10, 16], "texture": "#0"}, + "up": {"uv": [7, 6, 9, 10], "texture": "#0"}, + "down": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [6, 0, 7], + "to": [7, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 10, 10, 16], "texture": "#0"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "south": {"uv": [6, 10, 7, 16], "texture": "#0"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "up": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "down": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, 7, 6], + "to": [8, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 8, 9, 9], "texture": "#0"}, + "east": {"uv": [6, 8, 10, 9], "texture": "#0"}, + "south": {"uv": [7, 8, 8, 9], "texture": "#0"}, + "west": {"uv": [6, 8, 10, 9], "texture": "#0"}, + "up": {"uv": [7, 6, 8, 10], "texture": "#0"}, + "down": {"uv": [7, 6, 8, 10], "texture": "#0"} + } + }, + { + "from": [8, 7, 6], + "to": [9, 8, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 8, 8, 9], "texture": "#0"}, + "east": {"uv": [6, 8, 10, 9], "texture": "#0"}, + "south": {"uv": [8, 8, 9, 9], "texture": "#0"}, + "west": {"uv": [6, 8, 10, 9], "texture": "#0"}, + "up": {"uv": [8, 6, 9, 10], "texture": "#0"}, + "down": {"uv": [8, 6, 9, 10], "texture": "#0"} + } + }, + { + "from": [7, 8, 6], + "to": [8, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 7, 9, 8], "texture": "#0"}, + "east": {"uv": [6, 7, 10, 8], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "west": {"uv": [6, 7, 10, 8], "texture": "#0"}, + "up": {"uv": [7, 6, 8, 10], "texture": "#0"}, + "down": {"uv": [7, 6, 8, 10], "texture": "#0"} + } + }, + { + "from": [8, 8, 7], + "to": [9, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "east": {"uv": [7, 7, 9, 8], "texture": "#0"}, + "south": {"uv": [8, 7, 9, 8], "texture": "#0"}, + "west": {"uv": [7, 7, 9, 8], "texture": "#0"}, + "up": {"uv": [8, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [8, 7, 9, 9], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_d.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_d.json new file mode 100644 index 0000000..11d45e3 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_d.json @@ -0,0 +1,264 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 6, 0], + "to": [9, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [9, 6, 16, 10], "texture": "#0"}, + "south": {"uv": [7, 6, 9, 10], "texture": "#0"}, + "west": {"uv": [0, 6, 7, 10], "texture": "#0"}, + "up": {"uv": [7, 0, 9, 7], "texture": "#0"}, + "down": {"uv": [7, 9, 9, 16], "texture": "#0"} + } + }, + { + "from": [6, 7, 0], + "to": [7, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [10, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 6, 9], "texture": "#0"}, + "up": {"uv": [6, 0, 7, 6], "texture": "#0"}, + "down": {"uv": [6, 10, 7, 16], "texture": "#0"} + } + }, + { + "from": [9, 7, 0], + "to": [10, 9, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [8, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [9, 0, 10, 8], "texture": "#0"}, + "down": {"uv": [9, 8, 10, 16], "texture": "#0"} + } + }, + { + "from": [0, 6, 7], + "to": [7, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 6, 9, 10], "texture": "#0"}, + "south": {"uv": [0, 6, 7, 10], "texture": "#0"}, + "west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 7, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 7, 9], "texture": "#0"} + } + }, + { + "from": [0, 7, 9], + "to": [8, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 9, 8, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 8, 7], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [6, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 6, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 6, 6, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 6, 10], "texture": "#0"} + } + }, + { + "from": [5, 7, 5], + "to": [6, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "east": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "south": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "up": {"uv": [5, 5, 6, 6], "texture": "#0"}, + "down": {"uv": [5, 10, 6, 11], "texture": "#0"} + } + }, + { + "from": [5, 7, 4], + "to": [6, 9, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "east": {"uv": [11, 7, 12, 9], "texture": "#0"}, + "south": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "west": {"uv": [4, 7, 5, 9], "texture": "#0"}, + "up": {"uv": [5, 4, 6, 5], "texture": "#0"}, + "down": {"uv": [5, 11, 6, 12], "texture": "#0"} + } + }, + { + "from": [4, 7, 5], + "to": [5, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 7, 12, 9], "texture": "#0"}, + "east": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "south": {"uv": [4, 7, 5, 9], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "up": {"uv": [4, 5, 5, 6], "texture": "#0"}, + "down": {"uv": [4, 10, 5, 11], "texture": "#0"} + } + }, + { + "from": [6, 7, 6], + "to": [9, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 7, 10, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 10, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 9, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 9, 9], "texture": "#0"}, + "up": {"uv": [6, 6, 9, 9], "texture": "#0"}, + "down": {"uv": [6, 7, 9, 10], "texture": "#0"} + } + }, + { + "from": [7, 9, 7], + "to": [8, 10, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "south": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "west": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "up": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "down": {"uv": [7, 8, 8, 9], "texture": "#0"} + } + }, + { + "from": [6, 9, 6], + "to": [7, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "east": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "south": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "west": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "up": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "down": {"uv": [6, 9, 7, 10], "texture": "#0"} + } + }, + { + "from": [5, 9, 6], + "to": [6, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "texture": "#0"}, + "east": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "south": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "west": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "up": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "down": {"uv": [5, 9, 6, 10], "texture": "#0"} + } + }, + { + "from": [6, 9, 5], + "to": [7, 10, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "east": {"uv": [10, 6, 11, 7], "texture": "#0"}, + "south": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "west": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "up": {"uv": [6, 5, 7, 6], "texture": "#0"}, + "down": {"uv": [6, 10, 7, 11], "texture": "#0"} + } + }, + { + "from": [6, 6, 6], + "to": [7, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "south": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "west": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "up": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "down": {"uv": [6, 9, 7, 10], "texture": "#0"} + } + }, + { + "from": [5, 6, 6], + "to": [6, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 9, 11, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "south": {"uv": [5, 9, 6, 10], "texture": "#0"}, + "west": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "up": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "down": {"uv": [5, 9, 6, 10], "texture": "#0"} + } + }, + { + "from": [6, 6, 5], + "to": [7, 7, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "east": {"uv": [10, 9, 11, 10], "texture": "#0"}, + "south": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "west": {"uv": [5, 9, 6, 10], "texture": "#0"}, + "up": {"uv": [6, 5, 7, 6], "texture": "#0"}, + "down": {"uv": [6, 10, 7, 11], "texture": "#0"} + } + }, + { + "from": [7, 6, 7], + "to": [8, 7, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "east": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "south": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "west": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "up": {"uv": [7, 7, 8, 8], "texture": "#0"}, + "down": {"uv": [7, 8, 8, 9], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [3, 4, 5] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_e.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_e.json new file mode 100644 index 0000000..d0e2fda --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_e.json @@ -0,0 +1,492 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [9, 7, 0], + "to": [10, 9, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 7, 4, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [12, 7, 13, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "up": {"uv": [12, 0, 13, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 13, 16], "texture": "#0"} + } + }, + { + "from": [7, 6, 0], + "to": [9, 10, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 6, 6, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 6, 16, 10], "texture": "#0"}, + "south": {"uv": [10, 6, 12, 10], "texture": "#0"}, + "west": {"uv": [0, 6, 4, 10], "texture": "#0"}, + "up": {"uv": [10, 0, 12, 4], "texture": "#0"}, + "down": {"uv": [10, 12, 12, 16], "texture": "#0"} + } + }, + { + "from": [6, 7, 0], + "to": [7, 9, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "up": {"uv": [9, 0, 10, 4], "texture": "#0"}, + "down": {"uv": [9, 12, 10, 16], "texture": "#0"} + } + }, + { + "from": [5, 7, 4], + "to": [10, 9, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [11, 7, 12, 9], "texture": "#0"}, + "south": {"uv": [8, 7, 13, 9], "texture": "#0"}, + "west": {"uv": [4, 7, 5, 9], "texture": "#0"}, + "up": {"uv": [8, 4, 13, 5], "texture": "#0"}, + "down": {"uv": [8, 11, 13, 12], "texture": "#0"} + } + }, + { + "from": [4, 7, 5], + "to": [9, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 7, 9, 9], "texture": "#0"}, + "east": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 12, 9], "texture": "#0"}, + "west": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "up": {"uv": [7, 5, 12, 6], "texture": "#0"}, + "down": {"uv": [7, 10, 12, 11], "texture": "#0"} + } + }, + { + "from": [3, 7, 6], + "to": [8, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 7, 10, 9], "texture": "#0"}, + "east": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 11, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [6, 6, 11, 7], "texture": "#0"}, + "down": {"uv": [6, 9, 11, 10], "texture": "#0"} + } + }, + { + "from": [2, 7, 7], + "to": [7, 9, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 7, 11, 9], "texture": "#0"}, + "east": {"uv": [8, 7, 9, 9], "texture": "#0"}, + "south": {"uv": [5, 7, 10, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [5, 7, 10, 8], "texture": "#0"}, + "down": {"uv": [5, 8, 10, 9], "texture": "#0"} + } + }, + { + "from": [1, 7, 8], + "to": [6, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 7, 12, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [4, 7, 9, 9], "texture": "#0"}, + "west": {"uv": [8, 7, 9, 9], "texture": "#0"}, + "up": {"uv": [4, 8, 9, 9], "texture": "#0"}, + "down": {"uv": [4, 7, 9, 8], "texture": "#0"} + } + }, + { + "from": [0, 7, 9], + "to": [5, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 7, 13, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [3, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [3, 9, 8, 10], "texture": "#0"}, + "down": {"uv": [3, 6, 8, 7], "texture": "#0"} + } + }, + { + "from": [-1, 7, 10], + "to": [4, 9, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 7, 14, 9], "texture": "#0"}, + "east": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "south": {"uv": [2, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [10, 7, 11, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [2, 10, 7, 11], "texture": "#0"}, + "down": {"uv": [2, 5, 7, 6], "texture": "#0"} + } + }, + { + "from": [6, 9, 4], + "to": [9, 10, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 6, 7, 7], "texture": "#0"}, + "east": {"uv": [11, 6, 12, 7], "texture": "#0"}, + "south": {"uv": [9, 6, 12, 7], "texture": "#0"}, + "west": {"uv": [4, 6, 5, 7], "texture": "#0"}, + "up": {"uv": [9, 4, 12, 5], "texture": "#0"}, + "down": {"uv": [9, 11, 12, 12], "texture": "#0"} + } + }, + { + "from": [5, 9, 5], + "to": [8, 10, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 6, 8, 7], "texture": "#0"}, + "east": {"uv": [10, 6, 11, 7], "texture": "#0"}, + "south": {"uv": [8, 6, 11, 7], "texture": "#0"}, + "west": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "up": {"uv": [8, 5, 11, 6], "texture": "#0"}, + "down": {"uv": [8, 10, 11, 11], "texture": "#0"} + } + }, + { + "from": [4, 9, 6], + "to": [7, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 6, 9, 7], "texture": "#0"}, + "east": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "south": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "west": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "up": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "down": {"uv": [7, 9, 10, 10], "texture": "#0"} + } + }, + { + "from": [3, 9, 7], + "to": [6, 10, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "east": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "south": {"uv": [6, 6, 9, 7], "texture": "#0"}, + "west": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "up": {"uv": [6, 7, 9, 8], "texture": "#0"}, + "down": {"uv": [6, 8, 9, 9], "texture": "#0"} + } + }, + { + "from": [2, 9, 8], + "to": [5, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 6, 11, 7], "texture": "#0"}, + "east": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "south": {"uv": [5, 6, 8, 7], "texture": "#0"}, + "west": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "up": {"uv": [5, 8, 8, 9], "texture": "#0"}, + "down": {"uv": [5, 7, 8, 8], "texture": "#0"} + } + }, + { + "from": [1, 9, 9], + "to": [4, 10, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 12, 7], "texture": "#0"}, + "east": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "south": {"uv": [4, 6, 7, 7], "texture": "#0"}, + "west": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "up": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "down": {"uv": [4, 6, 7, 7], "texture": "#0"} + } + }, + { + "from": [0, 9, 10], + "to": [3, 10, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 13, 7], "texture": "#0"}, + "east": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "south": {"uv": [3, 6, 6, 7], "texture": "#0"}, + "west": {"uv": [10, 6, 11, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [3, 10, 6, 11], "texture": "#0"}, + "down": {"uv": [3, 5, 6, 6], "texture": "#0"} + } + }, + { + "from": [6, 6, 4], + "to": [9, 7, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "east": {"uv": [11, 9, 12, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 12, 10], "texture": "#0"}, + "west": {"uv": [4, 9, 5, 10], "texture": "#0"}, + "up": {"uv": [9, 4, 12, 5], "texture": "#0"}, + "down": {"uv": [9, 11, 12, 12], "texture": "#0"} + } + }, + { + "from": [5, 6, 5], + "to": [8, 7, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 9, 8, 10], "texture": "#0"}, + "east": {"uv": [10, 9, 11, 10], "texture": "#0"}, + "south": {"uv": [8, 9, 11, 10], "texture": "#0"}, + "west": {"uv": [5, 9, 6, 10], "texture": "#0"}, + "up": {"uv": [8, 5, 11, 6], "texture": "#0"}, + "down": {"uv": [8, 10, 11, 11], "texture": "#0"} + } + }, + { + "from": [4, 6, 6], + "to": [7, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 9, 9, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "south": {"uv": [7, 9, 10, 10], "texture": "#0"}, + "west": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "up": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "down": {"uv": [7, 9, 10, 10], "texture": "#0"} + } + }, + { + "from": [3, 6, 7], + "to": [6, 7, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 9, 10, 10], "texture": "#0"}, + "east": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "south": {"uv": [6, 9, 9, 10], "texture": "#0"}, + "west": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "up": {"uv": [6, 7, 9, 8], "texture": "#0"}, + "down": {"uv": [6, 8, 9, 9], "texture": "#0"} + } + }, + { + "from": [2, 6, 8], + "to": [5, 7, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 9, 11, 10], "texture": "#0"}, + "east": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "south": {"uv": [5, 9, 8, 10], "texture": "#0"}, + "west": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "up": {"uv": [5, 8, 8, 9], "texture": "#0"}, + "down": {"uv": [5, 7, 8, 8], "texture": "#0"} + } + }, + { + "from": [1, 6, 9], + "to": [4, 7, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 12, 10], "texture": "#0"}, + "east": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "south": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "up": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "down": {"uv": [4, 6, 7, 7], "texture": "#0"} + } + }, + { + "from": [0, 6, 10], + "to": [3, 7, 11], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 9, 13, 10], "texture": "#0"}, + "east": {"uv": [5, 9, 6, 10], "texture": "#0"}, + "south": {"uv": [3, 9, 6, 10], "texture": "#0"}, + "west": {"uv": [10, 9, 11, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [3, 10, 6, 11], "texture": "#0"}, + "down": {"uv": [3, 5, 6, 6], "texture": "#0"} + } + }, + { + "from": [-1, 6, 11], + "to": [2, 7, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 9, 14, 10], "texture": "#0"}, + "east": {"uv": [4, 9, 5, 10], "texture": "#0"}, + "south": {"uv": [2, 9, 5, 10], "texture": "#0"}, + "west": {"uv": [11, 9, 12, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [2, 11, 5, 12], "texture": "#0"}, + "down": {"uv": [2, 4, 5, 5], "texture": "#0"} + } + }, + { + "from": [-2, 7, 11], + "to": [3, 9, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 7, 15, 9], "texture": "#0"}, + "east": {"uv": [4, 7, 5, 9], "texture": "#0"}, + "south": {"uv": [1, 7, 6, 9], "texture": "#0"}, + "west": {"uv": [11, 7, 12, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 11, 6, 12], "texture": "#0"}, + "down": {"uv": [1, 4, 6, 5], "texture": "#0"} + } + }, + { + "from": [-1, 9, 11], + "to": [2, 10, 12], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 14, 7], "texture": "#0"}, + "east": {"uv": [4, 6, 5, 7], "texture": "#0"}, + "south": {"uv": [2, 6, 5, 7], "texture": "#0"}, + "west": {"uv": [11, 6, 12, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [2, 11, 5, 12], "texture": "#0"}, + "down": {"uv": [2, 4, 5, 5], "texture": "#0"} + } + }, + { + "from": [-2, 6, 12], + "to": [1, 7, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 9, 15, 10], "texture": "#0"}, + "east": {"uv": [3, 9, 4, 10], "texture": "#0"}, + "south": {"uv": [1, 9, 4, 10], "texture": "#0"}, + "west": {"uv": [12, 9, 13, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 12, 4, 13], "texture": "#0"}, + "down": {"uv": [1, 3, 4, 4], "texture": "#0"} + } + }, + { + "from": [-3, 7, 12], + "to": [2, 9, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [3, 7, 4, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 5, 9], "texture": "#0"}, + "west": {"uv": [12, 7, 13, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 12, 5, 13], "texture": "#0"}, + "down": {"uv": [0, 3, 5, 4], "texture": "#0"} + } + }, + { + "from": [-2, 9, 12], + "to": [1, 10, 13], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 6, 15, 7], "texture": "#0"}, + "east": {"uv": [3, 6, 4, 7], "texture": "#0"}, + "south": {"uv": [1, 6, 4, 7], "texture": "#0"}, + "west": {"uv": [12, 6, 13, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 12, 4, 13], "texture": "#0"}, + "down": {"uv": [1, 3, 4, 4], "texture": "#0"} + } + }, + { + "from": [-3, 6, 13], + "to": [0, 7, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 9, 16, 10], "texture": "#0"}, + "east": {"uv": [2, 9, 3, 10], "texture": "#0"}, + "south": {"uv": [0, 9, 3, 10], "texture": "#0"}, + "west": {"uv": [13, 9, 14, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 13, 3, 14], "texture": "#0"}, + "down": {"uv": [0, 2, 3, 3], "texture": "#0"} + } + }, + { + "from": [-3, 7, 13], + "to": [1, 9, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [2, 7, 3, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "west": {"uv": [13, 7, 14, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 13, 4, 14], "texture": "#0"}, + "down": {"uv": [0, 2, 4, 3], "texture": "#0"} + } + }, + { + "from": [-3, 9, 13], + "to": [0, 10, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 6, 16, 7], "texture": "#0"}, + "east": {"uv": [2, 6, 3, 7], "texture": "#0"}, + "south": {"uv": [0, 6, 3, 7], "texture": "#0"}, + "west": {"uv": [13, 6, 14, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 13, 3, 14], "texture": "#0"}, + "down": {"uv": [0, 2, 3, 3], "texture": "#0"} + } + }, + { + "from": [-2, 9, 14], + "to": [-1, 10, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 6, 15, 7], "texture": "#0"}, + "east": {"uv": [1, 6, 2, 7], "texture": "#0"}, + "south": {"uv": [1, 6, 2, 7], "texture": "#0"}, + "west": {"uv": [14, 6, 15, 7], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 14, 2, 15], "texture": "#0"}, + "down": {"uv": [1, 1, 2, 2], "texture": "#0"} + } + }, + { + "from": [-2, 6, 14], + "to": [-1, 7, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [14, 9, 15, 10], "texture": "#0"}, + "east": {"uv": [1, 9, 2, 10], "texture": "#0"}, + "south": {"uv": [1, 9, 2, 10], "texture": "#0"}, + "west": {"uv": [14, 9, 15, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 14, 2, 15], "texture": "#0"}, + "down": {"uv": [1, 1, 2, 2], "texture": "#0"} + } + }, + { + "from": [-2, 7, 14], + "to": [0, 9, 15], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [13, 7, 15, 9], "texture": "#0"}, + "east": {"uv": [1, 7, 2, 9], "texture": "#0"}, + "south": {"uv": [1, 7, 3, 9], "texture": "#0"}, + "west": {"uv": [14, 7, 15, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [1, 14, 3, 15], "texture": "#0"}, + "down": {"uv": [1, 1, 3, 2], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_f.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_f.json new file mode 100644 index 0000000..f090737 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_f.json @@ -0,0 +1,492 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [0, 7, 9], + "to": [4, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [3, 7, 4, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "west": {"uv": [12, 7, 13, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 12, 4, 13], "texture": "#0"}, + "down": {"uv": [0, 3, 4, 4], "texture": "#0"} + } + }, + { + "from": [0, 6, 7], + "to": [4, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 6, 16, 10], "texture": "#0"}, + "east": {"uv": [4, 6, 6, 10], "texture": "#0"}, + "south": {"uv": [0, 6, 4, 10], "texture": "#0"}, + "west": {"uv": [10, 6, 12, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 10, 4, 12], "texture": "#0"}, + "down": {"uv": [0, 4, 4, 6], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [4, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "south": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 9, 4, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 4, 7], "texture": "#0"} + } + }, + { + "from": [4, 7, 5], + "to": [5, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 7, 12, 9], "texture": "#0"}, + "east": {"uv": [3, 7, 8, 9], "texture": "#0"}, + "south": {"uv": [4, 7, 5, 9], "texture": "#0"}, + "west": {"uv": [8, 7, 13, 9], "texture": "#0"}, + "up": {"uv": [4, 8, 5, 13], "texture": "#0"}, + "down": {"uv": [4, 3, 5, 8], "texture": "#0"} + } + }, + { + "from": [5, 7, 4], + "to": [6, 9, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "east": {"uv": [4, 7, 9, 9], "texture": "#0"}, + "south": {"uv": [5, 7, 6, 9], "texture": "#0"}, + "west": {"uv": [7, 7, 12, 9], "texture": "#0"}, + "up": {"uv": [5, 7, 6, 12], "texture": "#0"}, + "down": {"uv": [5, 4, 6, 9], "texture": "#0"} + } + }, + { + "from": [6, 7, 3], + "to": [7, 9, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "east": {"uv": [5, 7, 10, 9], "texture": "#0"}, + "south": {"uv": [6, 7, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 11, 9], "texture": "#0"}, + "up": {"uv": [6, 6, 7, 11], "texture": "#0"}, + "down": {"uv": [6, 5, 7, 10], "texture": "#0"} + } + }, + { + "from": [7, 7, 2], + "to": [8, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 7, 9, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 11, 9], "texture": "#0"}, + "south": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "west": {"uv": [5, 7, 10, 9], "texture": "#0"}, + "up": {"uv": [7, 5, 8, 10], "texture": "#0"}, + "down": {"uv": [7, 6, 8, 11], "texture": "#0"} + } + }, + { + "from": [8, 7, 1], + "to": [9, 9, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 7, 8, 9], "texture": "#0"}, + "east": {"uv": [7, 7, 12, 9], "texture": "#0"}, + "south": {"uv": [8, 7, 9, 9], "texture": "#0"}, + "west": {"uv": [4, 7, 9, 9], "texture": "#0"}, + "up": {"uv": [8, 4, 9, 9], "texture": "#0"}, + "down": {"uv": [8, 7, 9, 12], "texture": "#0"} + } + }, + { + "from": [9, 7, 0], + "to": [10, 9, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [8, 7, 13, 9], "texture": "#0"}, + "south": {"uv": [9, 7, 10, 9], "texture": "#0"}, + "west": {"uv": [3, 7, 8, 9], "texture": "#0"}, + "up": {"uv": [9, 3, 10, 8], "texture": "#0"}, + "down": {"uv": [9, 8, 10, 13], "texture": "#0"} + } + }, + { + "from": [10, 7, -1], + "to": [11, 9, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 7, 6, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [9, 7, 14, 9], "texture": "#0"}, + "south": {"uv": [10, 7, 11, 9], "texture": "#0"}, + "west": {"uv": [2, 7, 7, 9], "texture": "#0"}, + "up": {"uv": [10, 2, 11, 7], "texture": "#0"}, + "down": {"uv": [10, 9, 11, 14], "texture": "#0"} + } + }, + { + "from": [4, 6, 6], + "to": [5, 7, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 9, 12, 10], "texture": "#0"}, + "east": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "south": {"uv": [4, 9, 5, 10], "texture": "#0"}, + "west": {"uv": [9, 9, 12, 10], "texture": "#0"}, + "up": {"uv": [4, 9, 5, 12], "texture": "#0"}, + "down": {"uv": [4, 4, 5, 7], "texture": "#0"} + } + }, + { + "from": [5, 6, 5], + "to": [6, 7, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 9, 11, 10], "texture": "#0"}, + "east": {"uv": [5, 9, 8, 10], "texture": "#0"}, + "south": {"uv": [5, 9, 6, 10], "texture": "#0"}, + "west": {"uv": [8, 9, 11, 10], "texture": "#0"}, + "up": {"uv": [5, 8, 6, 11], "texture": "#0"}, + "down": {"uv": [5, 5, 6, 8], "texture": "#0"} + } + }, + { + "from": [6, 6, 4], + "to": [7, 7, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "east": {"uv": [6, 9, 9, 10], "texture": "#0"}, + "south": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "west": {"uv": [7, 9, 10, 10], "texture": "#0"}, + "up": {"uv": [6, 7, 7, 10], "texture": "#0"}, + "down": {"uv": [6, 6, 7, 9], "texture": "#0"} + } + }, + { + "from": [7, 6, 3], + "to": [8, 7, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "east": {"uv": [7, 9, 10, 10], "texture": "#0"}, + "south": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "west": {"uv": [6, 9, 9, 10], "texture": "#0"}, + "up": {"uv": [7, 6, 8, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 8, 10], "texture": "#0"} + } + }, + { + "from": [8, 6, 2], + "to": [9, 7, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 9, 8, 10], "texture": "#0"}, + "east": {"uv": [8, 9, 11, 10], "texture": "#0"}, + "south": {"uv": [8, 9, 9, 10], "texture": "#0"}, + "west": {"uv": [5, 9, 8, 10], "texture": "#0"}, + "up": {"uv": [8, 5, 9, 8], "texture": "#0"}, + "down": {"uv": [8, 8, 9, 11], "texture": "#0"} + } + }, + { + "from": [9, 6, 1], + "to": [10, 7, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 9, 7, 10], "texture": "#0"}, + "east": {"uv": [9, 9, 12, 10], "texture": "#0"}, + "south": {"uv": [9, 9, 10, 10], "texture": "#0"}, + "west": {"uv": [4, 9, 7, 10], "texture": "#0"}, + "up": {"uv": [9, 4, 10, 7], "texture": "#0"}, + "down": {"uv": [9, 9, 10, 12], "texture": "#0"} + } + }, + { + "from": [10, 6, 0], + "to": [11, 7, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 9, 6, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [10, 9, 13, 10], "texture": "#0"}, + "south": {"uv": [10, 9, 11, 10], "texture": "#0"}, + "west": {"uv": [3, 9, 6, 10], "texture": "#0"}, + "up": {"uv": [10, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [10, 10, 11, 13], "texture": "#0"} + } + }, + { + "from": [4, 9, 6], + "to": [5, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [11, 6, 12, 7], "texture": "#0"}, + "east": {"uv": [4, 6, 7, 7], "texture": "#0"}, + "south": {"uv": [4, 6, 5, 7], "texture": "#0"}, + "west": {"uv": [9, 6, 12, 7], "texture": "#0"}, + "up": {"uv": [4, 9, 5, 12], "texture": "#0"}, + "down": {"uv": [4, 4, 5, 7], "texture": "#0"} + } + }, + { + "from": [5, 9, 5], + "to": [6, 10, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [10, 6, 11, 7], "texture": "#0"}, + "east": {"uv": [5, 6, 8, 7], "texture": "#0"}, + "south": {"uv": [5, 6, 6, 7], "texture": "#0"}, + "west": {"uv": [8, 6, 11, 7], "texture": "#0"}, + "up": {"uv": [5, 8, 6, 11], "texture": "#0"}, + "down": {"uv": [5, 5, 6, 8], "texture": "#0"} + } + }, + { + "from": [6, 9, 4], + "to": [7, 10, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "east": {"uv": [6, 6, 9, 7], "texture": "#0"}, + "south": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "west": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "up": {"uv": [6, 7, 7, 10], "texture": "#0"}, + "down": {"uv": [6, 6, 7, 9], "texture": "#0"} + } + }, + { + "from": [7, 9, 3], + "to": [8, 10, 6], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "east": {"uv": [7, 6, 10, 7], "texture": "#0"}, + "south": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "west": {"uv": [6, 6, 9, 7], "texture": "#0"}, + "up": {"uv": [7, 6, 8, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 8, 10], "texture": "#0"} + } + }, + { + "from": [8, 9, 2], + "to": [9, 10, 5], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 6, 8, 7], "texture": "#0"}, + "east": {"uv": [8, 6, 11, 7], "texture": "#0"}, + "south": {"uv": [8, 6, 9, 7], "texture": "#0"}, + "west": {"uv": [5, 6, 8, 7], "texture": "#0"}, + "up": {"uv": [8, 5, 9, 8], "texture": "#0"}, + "down": {"uv": [8, 8, 9, 11], "texture": "#0"} + } + }, + { + "from": [9, 9, 1], + "to": [10, 10, 4], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [6, 6, 7, 7], "texture": "#0"}, + "east": {"uv": [9, 6, 12, 7], "texture": "#0"}, + "south": {"uv": [9, 6, 10, 7], "texture": "#0"}, + "west": {"uv": [4, 6, 7, 7], "texture": "#0"}, + "up": {"uv": [9, 4, 10, 7], "texture": "#0"}, + "down": {"uv": [9, 9, 10, 12], "texture": "#0"} + } + }, + { + "from": [10, 9, 0], + "to": [11, 10, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [5, 6, 6, 7], "texture": "#0", "cullface": "north"}, + "east": {"uv": [10, 6, 13, 7], "texture": "#0"}, + "south": {"uv": [10, 6, 11, 7], "texture": "#0"}, + "west": {"uv": [3, 6, 6, 7], "texture": "#0"}, + "up": {"uv": [10, 3, 11, 6], "texture": "#0"}, + "down": {"uv": [10, 10, 11, 13], "texture": "#0"} + } + }, + { + "from": [11, 9, -1], + "to": [12, 10, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 6, 5, 7], "texture": "#0", "cullface": "north"}, + "east": {"uv": [11, 6, 14, 7], "texture": "#0"}, + "south": {"uv": [11, 6, 12, 7], "texture": "#0"}, + "west": {"uv": [2, 6, 5, 7], "texture": "#0"}, + "up": {"uv": [11, 2, 12, 5], "texture": "#0"}, + "down": {"uv": [11, 11, 12, 14], "texture": "#0"} + } + }, + { + "from": [11, 7, -2], + "to": [12, 9, 3], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 7, 5, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [10, 7, 15, 9], "texture": "#0"}, + "south": {"uv": [11, 7, 12, 9], "texture": "#0"}, + "west": {"uv": [1, 7, 6, 9], "texture": "#0"}, + "up": {"uv": [11, 1, 12, 6], "texture": "#0"}, + "down": {"uv": [11, 10, 12, 15], "texture": "#0"} + } + }, + { + "from": [11, 6, -1], + "to": [12, 7, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [4, 9, 5, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [11, 9, 14, 10], "texture": "#0"}, + "south": {"uv": [11, 9, 12, 10], "texture": "#0"}, + "west": {"uv": [2, 9, 5, 10], "texture": "#0"}, + "up": {"uv": [11, 2, 12, 5], "texture": "#0"}, + "down": {"uv": [11, 11, 12, 14], "texture": "#0"} + } + }, + { + "from": [12, 9, -2], + "to": [13, 10, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 6, 4, 7], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 6, 15, 7], "texture": "#0"}, + "south": {"uv": [12, 6, 13, 7], "texture": "#0"}, + "west": {"uv": [1, 6, 4, 7], "texture": "#0"}, + "up": {"uv": [12, 1, 13, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 13, 15], "texture": "#0"} + } + }, + { + "from": [12, 7, -3], + "to": [13, 9, 2], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 7, 4, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [11, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [12, 7, 13, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 5, 9], "texture": "#0"}, + "up": {"uv": [12, 0, 13, 5], "texture": "#0"}, + "down": {"uv": [12, 11, 13, 16], "texture": "#0"} + } + }, + { + "from": [12, 6, -2], + "to": [13, 7, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [3, 9, 4, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 9, 15, 10], "texture": "#0"}, + "south": {"uv": [12, 9, 13, 10], "texture": "#0"}, + "west": {"uv": [1, 9, 4, 10], "texture": "#0"}, + "up": {"uv": [12, 1, 13, 4], "texture": "#0"}, + "down": {"uv": [12, 12, 13, 15], "texture": "#0"} + } + }, + { + "from": [13, 9, -3], + "to": [14, 10, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 6, 3, 7], "texture": "#0", "cullface": "north"}, + "east": {"uv": [13, 6, 16, 7], "texture": "#0"}, + "south": {"uv": [13, 6, 14, 7], "texture": "#0"}, + "west": {"uv": [0, 6, 3, 7], "texture": "#0"}, + "up": {"uv": [13, 0, 14, 3], "texture": "#0"}, + "down": {"uv": [13, 13, 14, 16], "texture": "#0"} + } + }, + { + "from": [13, 7, -3], + "to": [14, 9, 1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 7, 3, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [12, 7, 16, 9], "texture": "#0"}, + "south": {"uv": [13, 7, 14, 9], "texture": "#0"}, + "west": {"uv": [0, 7, 4, 9], "texture": "#0"}, + "up": {"uv": [13, 0, 14, 4], "texture": "#0"}, + "down": {"uv": [13, 12, 14, 16], "texture": "#0"} + } + }, + { + "from": [13, 6, -3], + "to": [14, 7, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [2, 9, 3, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [13, 9, 16, 10], "texture": "#0"}, + "south": {"uv": [13, 9, 14, 10], "texture": "#0"}, + "west": {"uv": [0, 9, 3, 10], "texture": "#0"}, + "up": {"uv": [13, 0, 14, 3], "texture": "#0"}, + "down": {"uv": [13, 13, 14, 16], "texture": "#0"} + } + }, + { + "from": [14, 6, -2], + "to": [15, 7, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 9, 2, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [14, 9, 15, 10], "texture": "#0"}, + "south": {"uv": [14, 9, 15, 10], "texture": "#0"}, + "west": {"uv": [1, 9, 2, 10], "texture": "#0"}, + "up": {"uv": [14, 1, 15, 2], "texture": "#0"}, + "down": {"uv": [14, 14, 15, 15], "texture": "#0"} + } + }, + { + "from": [14, 9, -2], + "to": [15, 10, -1], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 6, 2, 7], "texture": "#0", "cullface": "north"}, + "east": {"uv": [14, 6, 15, 7], "texture": "#0"}, + "south": {"uv": [14, 6, 15, 7], "texture": "#0"}, + "west": {"uv": [1, 6, 2, 7], "texture": "#0"}, + "up": {"uv": [14, 1, 15, 2], "texture": "#0"}, + "down": {"uv": [14, 14, 15, 15], "texture": "#0"} + } + }, + { + "from": [14, 7, -2], + "to": [15, 9, 0], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 7, 2, 9], "texture": "#0", "cullface": "north"}, + "east": {"uv": [13, 7, 15, 9], "texture": "#0"}, + "south": {"uv": [14, 7, 15, 9], "texture": "#0"}, + "west": {"uv": [1, 7, 3, 9], "texture": "#0"}, + "up": {"uv": [14, 1, 15, 3], "texture": "#0"}, + "down": {"uv": [14, 13, 15, 15], "texture": "#0"} + } + } + ], + "groups": [ + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [0, 1, 2] + }, + { + "name": "group", + "origin": [8, 8, 8], + "color": 0, + "children": [3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_rail_g.json b/resourcepack/assets/wheat_plus/models/block/building/building_rail_g.json new file mode 100644 index 0000000..4ba7bb0 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_rail_g.json @@ -0,0 +1,65 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [0, 6, 7], + "to": [16, 10, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 6, 16, 10], "texture": "#0"}, + "west": {"uv": [7, 6, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#0"} + } + }, + { + "from": [0, 7, 9], + "to": [16, 9, 10], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 9, 16, 10], "texture": "#0"}, + "down": {"uv": [0, 6, 16, 7], "texture": "#0"} + } + }, + { + "from": [0, 7, 6], + "to": [16, 9, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "east": {"uv": [9, 7, 10, 9], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "west": {"uv": [6, 7, 7, 9], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 6, 16, 7], "texture": "#0"}, + "down": {"uv": [0, 9, 16, 10], "texture": "#0"} + } + }, + { + "from": [0, 0, 1], + "to": [16, 1, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 15, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 15, 15, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 15, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [1, 15, 16, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 1, 16, 16], "texture": "#3"}, + "down": {"uv": [0, 0, 16, 15], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a.json new file mode 100644 index 0000000..6516d2c --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a.json @@ -0,0 +1,49 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 14, 7], + "to": [7, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 7, 2], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 7, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 7, 7, 9], "texture": "#0"} + } + }, + { + "from": [7, 14, 0], + "to": [9, 16, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "north"}, + "east": {"uv": [9, 0, 16, 2], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 7, 2], "texture": "#0"}, + "up": {"uv": [7, 0, 9, 7], "rotation": 90, "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 9, 9, 16], "rotation": 270, "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a_half.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a_half.json new file mode 100644 index 0000000..209cf42 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_a_half.json @@ -0,0 +1,49 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 8, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 6, 7], + "to": [7, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 8, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 8, 9, 10], "texture": "#0"}, + "south": {"uv": [0, 8, 7, 10], "texture": "#0"}, + "west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 7, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 7, 9], "texture": "#0"} + } + }, + { + "from": [7, 6, 0], + "to": [9, 8, 7], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "north"}, + "east": {"uv": [9, 8, 16, 10], "texture": "#0"}, + "south": {"uv": [7, 8, 9, 10], "texture": "#0"}, + "west": {"uv": [0, 8, 7, 10], "texture": "#0"}, + "up": {"uv": [7, 0, 9, 7], "rotation": 90, "texture": "#0"}, + "down": {"uv": [7, 9, 9, 16], "rotation": 270, "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b.json new file mode 100644 index 0000000..86cc29d --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b.json @@ -0,0 +1,36 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 14, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 2, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 2, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 2, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 2, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 14, 7], + "to": [16, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 2], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b_half.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b_half.json new file mode 100644 index 0000000..69695af --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_b_half.json @@ -0,0 +1,36 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 6, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 10, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 6, 7], + "to": [16, 8, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 8, 16, 10], "texture": "#0"}, + "east": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 8, 16, 10], "texture": "#0"}, + "west": {"uv": [7, 8, 9, 10], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 16, 9], "texture": "#0"}, + "down": {"uv": [0, 7, 16, 9], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_c.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_c.json new file mode 100644 index 0000000..2fdfb49 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_c.json @@ -0,0 +1,36 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [7, 0, 7], + "to": [9, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 14, 7], + "to": [7, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [9, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 7, 2], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 7, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 7, 7, 9], "texture": "#0"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_d.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_d.json new file mode 100644 index 0000000..05b3fa0 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_d.json @@ -0,0 +1,49 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [3, 12, 7], + "to": [15, 14, 9], + "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 2, 13, 4], "texture": "#0"}, + "east": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "south": {"uv": [3, 2, 15, 4], "texture": "#0"}, + "west": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "up": {"uv": [3, 7, 15, 9], "texture": "#0"}, + "down": {"uv": [3, 7, 15, 9], "texture": "#0"} + } + }, + { + "from": [7, 0, 7], + "to": [9, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, -8, 7], + "to": [9, 0, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_e.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_e.json new file mode 100644 index 0000000..be2c69d --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_e.json @@ -0,0 +1,62 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [3, 12, 7], + "to": [15, 14, 9], + "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 2, 13, 4], "texture": "#0"}, + "east": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "south": {"uv": [3, 2, 15, 4], "texture": "#0"}, + "west": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "up": {"uv": [3, 7, 15, 9], "texture": "#0"}, + "down": {"uv": [3, 7, 15, 9], "texture": "#0"} + } + }, + { + "from": [0, 14, 7], + "to": [9, 16, 9], + "rotation": {"angle": 0, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 16, 2], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 9, 2], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 2], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 7, 9, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 7, 9, 9], "texture": "#0"} + } + }, + { + "from": [7, 0, 7], + "to": [9, 16, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "up"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, -8, 7], + "to": [9, 0, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_f.json b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_f.json new file mode 100644 index 0000000..e6ecfcd --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_stair_rail_f.json @@ -0,0 +1,62 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "block/iron_block", + "particle": "block/iron_block" + }, + "elements": [ + { + "from": [3, 12, 7], + "to": [15, 14, 9], + "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 2, 13, 4], "texture": "#0"}, + "east": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "south": {"uv": [3, 2, 15, 4], "texture": "#0"}, + "west": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "up": {"uv": [3, 7, 15, 9], "texture": "#0"}, + "down": {"uv": [3, 7, 15, 9], "texture": "#0"} + } + }, + { + "from": [-8, 12, 7], + "to": [4, 14, 9], + "rotation": {"angle": -45, "axis": "z", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [1, 2, 13, 4], "texture": "#0"}, + "east": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "south": {"uv": [3, 2, 15, 4], "texture": "#0"}, + "west": {"uv": [7, 2, 9, 4], "texture": "#0"}, + "up": {"uv": [3, 7, 15, 9], "texture": "#0"}, + "down": {"uv": [3, 7, 15, 9], "texture": "#0"} + } + }, + { + "from": [7, 0, 7], + "to": [9, 15, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "east": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "south": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "west": {"uv": [7, 1, 9, 16], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [7, -8, 7], + "to": [9, 0, 9], + "rotation": {"angle": 0, "axis": "y", "origin": [8, -8, 8]}, + "faces": { + "north": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "east": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "south": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "west": {"uv": [7, 0, 9, 8], "texture": "#0"}, + "up": {"uv": [7, 7, 9, 9], "texture": "#0"}, + "down": {"uv": [7, 7, 9, 9], "texture": "#0", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_wall_a.json b/resourcepack/assets/wheat_plus/models/block/building/building_wall_a.json new file mode 100644 index 0000000..704b378 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_wall_a.json @@ -0,0 +1,39 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "0": "wheat_plus:block/brick/brick_d", + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "wheat_plus:block/brick/brick_d" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#0", "cullface": "north"}, + "east": {"uv": [8, 0, 16, 16], "texture": "#0", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, + "west": {"uv": [0, 0, 8, 16], "texture": "#0", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 8], "texture": "#0", "cullface": "up"}, + "down": {"uv": [0, 8, 16, 16], "texture": "#0", "cullface": "down"} + } + }, + { + "from": [0, 0, 8], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 8, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [8, 0, 16, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 8, 16, 16], "texture": "#3", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 8], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_wall_b.json b/resourcepack/assets/wheat_plus/models/block/building/building_wall_b.json new file mode 100644 index 0000000..efff45b --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_wall_b.json @@ -0,0 +1,39 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "4": "block/gray_concrete", + "particle": "block/gray_concrete" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 8], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#4", "cullface": "north"}, + "east": {"uv": [8, 0, 16, 16], "texture": "#4", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#4"}, + "west": {"uv": [0, 0, 8, 16], "texture": "#4", "cullface": "west"}, + "up": {"uv": [0, 0, 16, 8], "texture": "#4", "cullface": "up"}, + "down": {"uv": [0, 8, 16, 16], "texture": "#4", "cullface": "down"} + } + }, + { + "from": [0, 0, 8], + "to": [16, 16, 16], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 8]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "east": {"uv": [0, 0, 8, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [8, 0, 16, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 8, 16, 16], "texture": "#3", "cullface": "up"}, + "down": {"uv": [0, 0, 16, 8], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file diff --git a/resourcepack/assets/wheat_plus/models/block/building/building_wall_c.json b/resourcepack/assets/wheat_plus/models/block/building/building_wall_c.json new file mode 100644 index 0000000..16ea829 --- /dev/null +++ b/resourcepack/assets/wheat_plus/models/block/building/building_wall_c.json @@ -0,0 +1,25 @@ +{ + "credit": "Created by Frost-ZX using Blockbench.", + "parent": "block/block", + "textures": { + "1": "block/quartz_block_bottom", + "2": "block/quartz_block_side", + "3": "block/quartz_block_top", + "particle": "block/quartz_block_side" + }, + "elements": [ + { + "from": [0, 0, 3], + "to": [16, 16, 14], + "rotation": {"angle": 0, "axis": "y", "origin": [8, 8, 6]}, + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "east": {"uv": [2, 0, 13, 16], "texture": "#2", "cullface": "east"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#2", "cullface": "south"}, + "west": {"uv": [3, 0, 14, 16], "texture": "#2", "cullface": "west"}, + "up": {"uv": [0, 3, 16, 14], "texture": "#3"}, + "down": {"uv": [0, 2, 16, 13], "texture": "#1", "cullface": "down"} + } + } + ] +} \ No newline at end of file