Cubyz/assets/cubyz/blocks/furnace.zig.zon
Carrie bb0289c738
Furnace assets (#1479)
Following suggestions in #1151, this adds the nonfunctional kiln,
furnace, bellows, and chimney blocks.


![image](https://github.com/user-attachments/assets/94e9de34-b1fc-4344-94e2-5cbfbbb7d394)

![image](https://github.com/user-attachments/assets/b9a071c6-5a09-4d09-b954-70a6e4af31a7)
And I even did lit textures.
![Recording 2025-05-18 at 19 10
56](https://github.com/user-attachments/assets/e96fd91b-3ed2-4045-a1c1-f6c9c056222e)

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
2025-05-23 20:51:37 +02:00

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",
}