diff --git a/assets/cubyz/blocks/bellows.zig.zon b/assets/cubyz/blocks/bellows.zig.zon new file mode 100644 index 00000000..e8e0432a --- /dev/null +++ b/assets/cubyz/blocks/bellows.zig.zon @@ -0,0 +1,18 @@ +.{ + .tags = .{.wood}, + .blockHealth = 5, + .drops = .{ + .{.items = .{.auto}}, + }, + .rotation = .planar, + .model = "cubyz:bellows", + .texture = "cubyz:bellows/side", + .texture_front = "cubyz:bellows/nozzle", + .texture_left = "cubyz:bellows/nozzle", + .texture_right = "cubyz:bellows/side", + .texture_top = "cubyz:bellows/top", + .texture_bottom = "cubyz:bellows/bottom", + .item = .{ + .texture = "bellows.png", + }, +} diff --git a/assets/cubyz/blocks/chimney.zig.zon b/assets/cubyz/blocks/chimney.zig.zon new file mode 100644 index 00000000..f7652c95 --- /dev/null +++ b/assets/cubyz/blocks/chimney.zig.zon @@ -0,0 +1,14 @@ +.{ + .tags = .{.stone}, + .blockHealth = 10, + .drops = .{ + .{.items = .{.auto}}, + }, + .model = "cubyz:chimney", + .texture = "cubyz:chimney/side", + .texture_top = "cubyz:chimney/top", + .texture_bottom = "cubyz:chimney/bottom", + .item = .{ + .texture = "chimney.png", + }, +} diff --git a/assets/cubyz/blocks/furnace.zig.zon b/assets/cubyz/blocks/furnace.zig.zon new file mode 100644 index 00000000..0ec238a4 --- /dev/null +++ b/assets/cubyz/blocks/furnace.zig.zon @@ -0,0 +1,15 @@ +.{ + .tags = .{.stone}, + .blockHealth = 20, + .drops = .{ + .{.items = .{.auto}}, + }, + .rotation = .planar, + .model = "cubyz:cube", + .texture = "cubyz:furnace/back", + .texture_front = "cubyz:furnace/front", + .texture_left = "cubyz:furnace/side", + .texture_right = "cubyz:furnace/side", + .texture_top = "cubyz:furnace/top", + .texture_bottom = "cubyz:furnace/bottom", +} diff --git a/assets/cubyz/blocks/kiln.zig.zon b/assets/cubyz/blocks/kiln.zig.zon new file mode 100644 index 00000000..78de64f7 --- /dev/null +++ b/assets/cubyz/blocks/kiln.zig.zon @@ -0,0 +1,15 @@ +.{ + .tags = .{.stone}, + .blockHealth = 10, + .drops = .{ + .{.items = .{.auto}}, + }, + .rotation = .planar, + .model = "cubyz:cube", + .texture = "cubyz:kiln/back", + .texture_front = "cubyz:kiln/front", + .texture_left = "cubyz:kiln/side", + .texture_right = "cubyz:kiln/side", + .texture_top = "cubyz:kiln/top", + .texture_bottom = "cubyz:kiln/bottom", +} diff --git a/assets/cubyz/blocks/textures/bellows/bottom.png b/assets/cubyz/blocks/textures/bellows/bottom.png new file mode 100644 index 00000000..b6bb410d Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/bottom.png differ diff --git a/assets/cubyz/blocks/textures/bellows/nozzle.png b/assets/cubyz/blocks/textures/bellows/nozzle.png new file mode 100644 index 00000000..184c42c0 Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/nozzle.png differ diff --git a/assets/cubyz/blocks/textures/bellows/nozzle_reflectivity.png b/assets/cubyz/blocks/textures/bellows/nozzle_reflectivity.png new file mode 100644 index 00000000..c7087bcc Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/nozzle_reflectivity.png differ diff --git a/assets/cubyz/blocks/textures/bellows/side.png b/assets/cubyz/blocks/textures/bellows/side.png new file mode 100644 index 00000000..d416320a Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/side.png differ diff --git a/assets/cubyz/blocks/textures/bellows/side_reflectivity.png b/assets/cubyz/blocks/textures/bellows/side_reflectivity.png new file mode 100644 index 00000000..8c6df81b Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/side_reflectivity.png differ diff --git a/assets/cubyz/blocks/textures/bellows/top.png b/assets/cubyz/blocks/textures/bellows/top.png new file mode 100644 index 00000000..42783508 Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/top.png differ diff --git a/assets/cubyz/blocks/textures/bellows/top_reflectivity.png b/assets/cubyz/blocks/textures/bellows/top_reflectivity.png new file mode 100644 index 00000000..b690f437 Binary files /dev/null and b/assets/cubyz/blocks/textures/bellows/top_reflectivity.png differ diff --git a/assets/cubyz/blocks/textures/chimney/bottom.png b/assets/cubyz/blocks/textures/chimney/bottom.png new file mode 100644 index 00000000..7570eafc Binary files /dev/null and b/assets/cubyz/blocks/textures/chimney/bottom.png differ diff --git a/assets/cubyz/blocks/textures/chimney/side.png b/assets/cubyz/blocks/textures/chimney/side.png new file mode 100644 index 00000000..3c4beb47 Binary files /dev/null and b/assets/cubyz/blocks/textures/chimney/side.png differ diff --git a/assets/cubyz/blocks/textures/chimney/side_reflectivity.png b/assets/cubyz/blocks/textures/chimney/side_reflectivity.png new file mode 100644 index 00000000..c0cbdd07 Binary files /dev/null and b/assets/cubyz/blocks/textures/chimney/side_reflectivity.png differ diff --git a/assets/cubyz/blocks/textures/chimney/top.png b/assets/cubyz/blocks/textures/chimney/top.png new file mode 100644 index 00000000..ef9cd3d8 Binary files /dev/null and b/assets/cubyz/blocks/textures/chimney/top.png differ diff --git a/assets/cubyz/blocks/textures/chimney/top_reflectivity.png b/assets/cubyz/blocks/textures/chimney/top_reflectivity.png new file mode 100644 index 00000000..29690ec9 Binary files /dev/null and b/assets/cubyz/blocks/textures/chimney/top_reflectivity.png differ diff --git a/assets/cubyz/blocks/textures/copper_block.png b/assets/cubyz/blocks/textures/copper_block.png index f699af19..ac48131d 100644 Binary files a/assets/cubyz/blocks/textures/copper_block.png and b/assets/cubyz/blocks/textures/copper_block.png differ diff --git a/assets/cubyz/blocks/textures/copper_ore.png b/assets/cubyz/blocks/textures/copper_ore.png index 15dccf2b..ca97d4d7 100644 Binary files a/assets/cubyz/blocks/textures/copper_ore.png and b/assets/cubyz/blocks/textures/copper_ore.png differ diff --git a/assets/cubyz/blocks/textures/furnace/back.png b/assets/cubyz/blocks/textures/furnace/back.png new file mode 100644 index 00000000..baf2208a Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/back.png differ diff --git a/assets/cubyz/blocks/textures/furnace/bottom.png b/assets/cubyz/blocks/textures/furnace/bottom.png new file mode 100644 index 00000000..adf02c3d Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/bottom.png differ diff --git a/assets/cubyz/blocks/textures/furnace/front.png b/assets/cubyz/blocks/textures/furnace/front.png new file mode 100644 index 00000000..215ea2b0 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/front.png differ diff --git a/assets/cubyz/blocks/textures/furnace/front_lit.png b/assets/cubyz/blocks/textures/furnace/front_lit.png new file mode 100644 index 00000000..6c869a87 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/front_lit.png differ diff --git a/assets/cubyz/blocks/textures/furnace/front_lit.zig.zon b/assets/cubyz/blocks/textures/furnace/front_lit.zig.zon new file mode 100644 index 00000000..e6d47240 --- /dev/null +++ b/assets/cubyz/blocks/textures/furnace/front_lit.zig.zon @@ -0,0 +1,4 @@ +.{ + .frames = 4, + .time = 150, +} diff --git a/assets/cubyz/blocks/textures/furnace/front_lit_emission.png b/assets/cubyz/blocks/textures/furnace/front_lit_emission.png new file mode 100644 index 00000000..ba61934d Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/front_lit_emission.png differ diff --git a/assets/cubyz/blocks/textures/furnace/side.png b/assets/cubyz/blocks/textures/furnace/side.png new file mode 100644 index 00000000..bc6b6bc5 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/side.png differ diff --git a/assets/cubyz/blocks/textures/furnace/side_lit.png b/assets/cubyz/blocks/textures/furnace/side_lit.png new file mode 100644 index 00000000..329f9cb7 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/side_lit.png differ diff --git a/assets/cubyz/blocks/textures/furnace/side_lit.zig.zon b/assets/cubyz/blocks/textures/furnace/side_lit.zig.zon new file mode 100644 index 00000000..e6d47240 --- /dev/null +++ b/assets/cubyz/blocks/textures/furnace/side_lit.zig.zon @@ -0,0 +1,4 @@ +.{ + .frames = 4, + .time = 150, +} diff --git a/assets/cubyz/blocks/textures/furnace/side_lit_emission.png b/assets/cubyz/blocks/textures/furnace/side_lit_emission.png new file mode 100644 index 00000000..c2445191 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/side_lit_emission.png differ diff --git a/assets/cubyz/blocks/textures/furnace/top.png b/assets/cubyz/blocks/textures/furnace/top.png new file mode 100644 index 00000000..e5110a48 Binary files /dev/null and b/assets/cubyz/blocks/textures/furnace/top.png differ diff --git a/assets/cubyz/blocks/textures/kiln/back.png b/assets/cubyz/blocks/textures/kiln/back.png new file mode 100644 index 00000000..c77f1da3 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/back.png differ diff --git a/assets/cubyz/blocks/textures/kiln/bottom.png b/assets/cubyz/blocks/textures/kiln/bottom.png new file mode 100644 index 00000000..c419334c Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/bottom.png differ diff --git a/assets/cubyz/blocks/textures/kiln/front.png b/assets/cubyz/blocks/textures/kiln/front.png new file mode 100644 index 00000000..3a59df1e Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/front.png differ diff --git a/assets/cubyz/blocks/textures/kiln/front_lit.png b/assets/cubyz/blocks/textures/kiln/front_lit.png new file mode 100644 index 00000000..1959a75c Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/front_lit.png differ diff --git a/assets/cubyz/blocks/textures/kiln/front_lit.zig.zon b/assets/cubyz/blocks/textures/kiln/front_lit.zig.zon new file mode 100644 index 00000000..e6d47240 --- /dev/null +++ b/assets/cubyz/blocks/textures/kiln/front_lit.zig.zon @@ -0,0 +1,4 @@ +.{ + .frames = 4, + .time = 150, +} diff --git a/assets/cubyz/blocks/textures/kiln/front_lit_emission.png b/assets/cubyz/blocks/textures/kiln/front_lit_emission.png new file mode 100644 index 00000000..5000a4a0 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/front_lit_emission.png differ diff --git a/assets/cubyz/blocks/textures/kiln/side.png b/assets/cubyz/blocks/textures/kiln/side.png new file mode 100644 index 00000000..5f8bd648 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/side.png differ diff --git a/assets/cubyz/blocks/textures/kiln/side_lit.png b/assets/cubyz/blocks/textures/kiln/side_lit.png new file mode 100644 index 00000000..67824437 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/side_lit.png differ diff --git a/assets/cubyz/blocks/textures/kiln/side_lit.zig.zon b/assets/cubyz/blocks/textures/kiln/side_lit.zig.zon new file mode 100644 index 00000000..e6d47240 --- /dev/null +++ b/assets/cubyz/blocks/textures/kiln/side_lit.zig.zon @@ -0,0 +1,4 @@ +.{ + .frames = 4, + .time = 150, +} diff --git a/assets/cubyz/blocks/textures/kiln/side_lit_emission.png b/assets/cubyz/blocks/textures/kiln/side_lit_emission.png new file mode 100644 index 00000000..c2445191 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/side_lit_emission.png differ diff --git a/assets/cubyz/blocks/textures/kiln/top.png b/assets/cubyz/blocks/textures/kiln/top.png new file mode 100644 index 00000000..14306944 Binary files /dev/null and b/assets/cubyz/blocks/textures/kiln/top.png differ diff --git a/assets/cubyz/blocks/textures/terracotta_bricks.png b/assets/cubyz/blocks/textures/terracotta_bricks.png index bbb5fcae..098a04c5 100644 Binary files a/assets/cubyz/blocks/textures/terracotta_bricks.png and b/assets/cubyz/blocks/textures/terracotta_bricks.png differ diff --git a/assets/cubyz/blocks/textures/terracotta_tiles.png b/assets/cubyz/blocks/textures/terracotta_tiles.png index 93f8d717..574fe702 100644 Binary files a/assets/cubyz/blocks/textures/terracotta_tiles.png and b/assets/cubyz/blocks/textures/terracotta_tiles.png differ diff --git a/assets/cubyz/blocks/textures/terracotta_wall.png b/assets/cubyz/blocks/textures/terracotta_wall.png index 2b0ce7fb..f776286d 100644 Binary files a/assets/cubyz/blocks/textures/terracotta_wall.png and b/assets/cubyz/blocks/textures/terracotta_wall.png differ diff --git a/assets/cubyz/blocks/textures/terracotta_wall_top.png b/assets/cubyz/blocks/textures/terracotta_wall_top.png index f6ff98f3..f70bd70f 100644 Binary files a/assets/cubyz/blocks/textures/terracotta_wall_top.png and b/assets/cubyz/blocks/textures/terracotta_wall_top.png differ diff --git a/assets/cubyz/blocks/textures/torch.png b/assets/cubyz/blocks/textures/torch.png index b255d018..68c281dc 100644 Binary files a/assets/cubyz/blocks/textures/torch.png and b/assets/cubyz/blocks/textures/torch.png differ diff --git a/assets/cubyz/items/textures/bellows.png b/assets/cubyz/items/textures/bellows.png new file mode 100644 index 00000000..76eaeca7 Binary files /dev/null and b/assets/cubyz/items/textures/bellows.png differ diff --git a/assets/cubyz/items/textures/chimney.png b/assets/cubyz/items/textures/chimney.png new file mode 100644 index 00000000..559743f2 Binary files /dev/null and b/assets/cubyz/items/textures/chimney.png differ diff --git a/assets/cubyz/items/textures/wall/terracotta.png b/assets/cubyz/items/textures/wall/terracotta.png index b231e748..ba47060a 100644 Binary files a/assets/cubyz/items/textures/wall/terracotta.png and b/assets/cubyz/items/textures/wall/terracotta.png differ diff --git a/assets/cubyz/models/bellows.obj b/assets/cubyz/models/bellows.obj new file mode 100644 index 00000000..bf415569 --- /dev/null +++ b/assets/cubyz/models/bellows.obj @@ -0,0 +1,162 @@ +o Nozzle +v 0.625 1 0.3749999999999999 +v 0.375 1 0.3749999999999999 +v 0.625 1 0.12499999999999989 +v 0.375 1 0.12499999999999989 +v 0.625 0.875 0.3749999999999999 +v 0.375 0.875 0.3749999999999999 +v 0.625 0.875 0.1249999999999999 +v 0.375 0.875 0.1249999999999999 +vt 0.84375 0.15625 +vt 0.84375 0.21875 +vt 0.78125 0.21875 +vt 0.78125 0.15625 +vt 0.78125 0.21875 +vt 0.84375 0.21875 +vt 0.84375 0.25 +vt 0.78125 0.25 +vt 0.84375 0.125 +vt 0.78125 0.125 +vt 0.78125 0.15625 +vt 0.84375 0.15625 +vt 0.78125 0.15625 +vt 0.78125 0.21875 +vt 0.75 0.21875 +vt 0.75 0.15625 +vt 0.875 0.15625 +vt 0.875 0.21875 +vt 0.84375 0.21875 +vt 0.84375 0.15625 +vn 2.220446049250313e-16 1 -2.220446049250313e-16 +vn 0 2.220446049250313e-16 1 +vn 0 -2.220446049250313e-16 -1 +vn 1 -2.220446049250313e-16 4.930380657631324e-32 +vn -1 2.220446049250313e-16 -4.930380657631324e-32 +f 4/1/1 2/2/1 1/3/1 3/4/1 +f 1/5/2 2/6/2 6/7/2 5/8/2 +f 4/9/3 3/10/3 7/11/3 8/12/3 +f 3/13/4 1/14/4 5/15/4 7/16/4 +f 8/17/5 6/18/5 2/19/5 4/20/5 +o Bottom +v 0.9375 0.06249999999999989 0.1250000000000001 +v 0.9375 0.9374999999999999 0.1249999999999999 +v 0.9375 0.06249999999999989 9.71445146547012e-17 +v 0.9375 0.9374999999999999 -9.71445146547012e-17 +v 0.0625 0.06249999999999989 0.1250000000000001 +v 0.0625 0.9374999999999999 0.1249999999999999 +v 0.0625 0.06249999999999989 9.71445146547012e-17 +v 0.0625 0.9374999999999999 -9.71445146547012e-17 +vt 0.734375 0 +vt 0.734375 0.03125 +vt 0.515625 0.03125 +vt 0.515625 0 +vt 0.734375 0 +vt 0.734375 0.03125 +vt 0.515625 0.03125 +vt 0.515625 0 +vt 0.265625 0.234375 +vt 0.265625 0.015625 +vt 0.484375 0.015625 +vt 0.484375 0.234375 +vt 0.015625 0.015625 +vt 0.015625 0.234375 +vt 0.234375 0.234375 +vt 0.234375 0.015625 +vt 0.734375 0 +vt 0.734375 0.03125 +vt 0.515625 0.03125 +vt 0.515625 0 +vt 0.734375 0 +vt 0.734375 0.03125 +vt 0.515625 0.03125 +vt 0.515625 0 +vn 1 0 0 +vn -1 0 0 +vn 0 2.220446049250313e-16 1 +vn 0 -2.220446049250313e-16 -1 +vn 0 -1 2.220446049250313e-16 +vn 0 1 -2.220446049250313e-16 +f 12/21/6 10/22/6 9/23/6 11/24/6 +f 15/25/7 13/26/7 14/27/7 16/28/7 +f 9/29/8 10/30/8 14/31/8 13/32/8 +f 12/33/9 11/34/9 15/35/9 16/36/9 +f 11/37/10 9/38/10 13/39/10 15/40/10 +f 16/41/11 14/42/11 10/43/11 12/44/11 +o Center +v 0.875 0.12500000000000006 0.7500000000000001 +v 0.875 0.875 0.7499999999999999 +v 0.875 0.12499999999999994 0.1250000000000001 +v 0.875 0.875 0.12499999999999989 +v 0.125 0.12500000000000006 0.7500000000000001 +v 0.125 0.875 0.7499999999999999 +v 0.125 0.12499999999999994 0.1250000000000001 +v 0.125 0.875 0.12499999999999989 +vt 0.71875 0.03125 +vt 0.71875 0.1875 +vt 0.53125 0.1875 +vt 0.53125 0.03125 +vt 0.71875 0.03125 +vt 0.71875 0.1875 +vt 0.53125 0.1875 +vt 0.53125 0.03125 +vt 0.71875 0.03125 +vt 0.71875 0.1875 +vt 0.53125 0.1875 +vt 0.53125 0.03125 +vt 0.71875 0.03125 +vt 0.71875 0.1875 +vt 0.53125 0.1875 +vt 0.53125 0.03125 +vn 1 0 0 +vn -1 0 0 +vn 0 -1 2.220446049250313e-16 +vn 0 1 -2.220446049250313e-16 +f 20/45/12 18/46/12 17/47/12 19/48/12 +f 23/49/13 21/50/13 22/51/13 24/52/13 +f 19/53/14 17/54/14 21/55/14 23/56/14 +f 24/57/15 22/58/15 18/59/15 20/60/15 +o Top +v 0.9375 0.06250000000000011 0.8750000000000001 +v 0.9375 0.9375000000000001 0.8749999999999999 +v 0.9375 0.06250000000000011 0.7500000000000001 +v 0.9375 0.9375000000000001 0.7499999999999999 +v 0.0625 0.06250000000000011 0.8750000000000001 +v 0.0625 0.9375000000000001 0.8749999999999999 +v 0.0625 0.06250000000000011 0.7500000000000001 +v 0.0625 0.9375000000000001 0.7499999999999999 +vt 0.734375 0.1875 +vt 0.734375 0.21875 +vt 0.515625 0.21875 +vt 0.515625 0.1875 +vt 0.734375 0.1875 +vt 0.734375 0.21875 +vt 0.515625 0.21875 +vt 0.515625 0.1875 +vt 0.015625 0.234375 +vt 0.015625 0.015625 +vt 0.234375 0.015625 +vt 0.234375 0.234375 +vt 0.265625 0.015625 +vt 0.265625 0.234375 +vt 0.484375 0.234375 +vt 0.484375 0.015625 +vt 0.734375 0.1875 +vt 0.734375 0.21875 +vt 0.515625 0.21875 +vt 0.515625 0.1875 +vt 0.734375 0.1875 +vt 0.734375 0.21875 +vt 0.515625 0.21875 +vt 0.515625 0.1875 +vn 1 0 0 +vn -1 0 0 +vn 0 2.220446049250313e-16 1 +vn 0 -2.220446049250313e-16 -1 +vn 0 -1 2.220446049250313e-16 +vn 0 1 -2.220446049250313e-16 +f 28/61/16 26/62/16 25/63/16 27/64/16 +f 31/65/17 29/66/17 30/67/17 32/68/17 +f 25/69/18 26/70/18 30/71/18 29/72/18 +f 28/73/19 27/74/19 31/75/19 32/76/19 +f 27/77/20 25/78/20 29/79/20 31/80/20 +f 32/81/21 30/82/21 26/83/21 28/84/21 \ No newline at end of file diff --git a/assets/cubyz/models/chimney.obj b/assets/cubyz/models/chimney.obj new file mode 100644 index 00000000..8cd526bb --- /dev/null +++ b/assets/cubyz/models/chimney.obj @@ -0,0 +1,84 @@ +o unknown +v 0.8125 0.1875 0.75 +v 0.8125 0.8125 0.75 +v 0.1875 0.8125 0.75 +v 0.1875 0.1875 0.75 +v 0.1875 0.1875 0 +v 0.1875 0.8125 0 +v 0.8125 0.8125 0 +v 0.8125 0.1875 0 +vt 0.296875 0.203125 +vt 0.296875 0.046875 +vt 0.453125 0.046875 +vt 0.453125 0.203125 +vt 0.546875 0.1875 +vt 0.546875 0 +vt 0.703125 0 +vt 0.703125 0.1875 +vt 0.796875 0.1875 +vt 0.796875 0 +vt 0.953125 0 +vt 0.953125 0.1875 +vt 0.046875 0.4375 +vt 0.046875 0.25 +vt 0.203125 0.25 +vt 0.203125 0.4375 +vt 0.296875 0.4375 +vt 0.296875 0.25 +vt 0.453125 0.25 +vt 0.453125 0.4375 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +f 5/1/1 6/2/1 7/3/1 8/4/1 +f 1/5/2 8/6/2 7/7/2 2/8/2 +f 3/9/3 6/10/3 5/11/3 4/12/3 +f 2/13/4 7/14/4 6/15/4 3/16/4 +f 4/17/5 5/18/5 8/19/5 1/20/5 +o unknown +v 0.875 0.125 1 +v 0.875 0.875 1 +v 0.125 0.875 1 +v 0.125 0.125 1 +v 0.125 0.125 0.75 +v 0.125 0.875 0.75 +v 0.875 0.875 0.75 +v 0.875 0.125 0.75 +vt 0.03125 0.21875 +vt 0.03125 0.03125 +vt 0.21875 0.03125 +vt 0.21875 0.21875 +vt 0.03125 0.21875 +vt 0.03125 0.03125 +vt 0.21875 0.03125 +vt 0.21875 0.21875 +vt 0.53125 0.25 +vt 0.53125 0.1875 +vt 0.71875 0.1875 +vt 0.71875 0.25 +vt 0.78125 0.25 +vt 0.78125 0.1875 +vt 0.96875 0.1875 +vt 0.96875 0.25 +vt 0.03125 0.5 +vt 0.03125 0.4375 +vt 0.21875 0.4375 +vt 0.21875 0.5 +vt 0.28125 0.5 +vt 0.28125 0.4375 +vt 0.46875 0.4375 +vt 0.46875 0.5 +vn 0 0 1 +vn 0 0 -1 +vn 1 0 0 +vn -1 0 0 +vn 0 1 0 +vn 0 -1 0 +f 9/21/6 10/22/6 11/23/6 12/24/6 +f 13/25/7 14/26/7 15/27/7 16/28/7 +f 9/29/8 16/30/8 15/31/8 10/32/8 +f 11/33/9 14/34/9 13/35/9 12/36/9 +f 10/37/10 15/38/10 14/39/10 11/40/10 +f 12/41/11 13/42/11 16/43/11 9/44/11 \ No newline at end of file