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
15 lines
271 B
Zig
15 lines
271 B
Zig
.{
|
|
.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",
|
|
},
|
|
}
|