Cubyz/assets/cubyz/blocks/birch_fence.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

17 lines
324 B
Zig

.{
.tags = .{.wood},
.blockHealth = 5,
.drops = .{
.{.items = .{.auto}},
},
.absorbedLight = 0x202830,
.rotation = .fence,
.model = "cubyz:fence",
.texture = "cubyz:birch_fence",
.texture_top = "cubyz:birch_fence_top",
.texture_bottom = "cubyz:birch_fence_top",
.item = .{
.texture = "fence/birch.png",
},
}