Cubyz/assets/cubyz/blocks/terracotta_wall.zig.zon
IntegratedQuantum 54c2d2afc6 Replace blockClass with block tags.
This allows defining custom block tags, and multiple of them.

fixes #948
2025-02-26 21:11:08 +01:00

16 lines
313 B
Zig

.{
.tags = .{.stone},
.blockHealth = 20,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .fence,
.model = "cubyz:wall",
.texture = "cubyz:terracotta_wall",
.texture_top = "cubyz:terracotta_wall_top",
.texture_bottom = "cubyz:terracotta_wall_top",
.item = .{
.texture = "wall/terracotta.png",
},
}