mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

Following suggestions in #1151, this adds the nonfunctional kiln, furnace, bellows, and chimney blocks.   And I even did lit textures.  This is what I imagine for recipes: ``` Kiln - 8 any stone Furnace - 8 terracotta Bellows - 2 planks - 2 copper - 4 leather Chimney - 4 terracotta - 2 iron ``` There is a lot of changes because I had to do some consistency fixes along the way: - terracotta grout colour - copper block palette changes - change 1 colour of the torch flame
16 lines
366 B
Zig
16 lines
366 B
Zig
.{
|
|
.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",
|
|
}
|