Cubyz/assets/cubyz/blocks/workbench.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
397 B
Zig

.{
.tags = .{.wood},
.blockHealth = 10,
.drops = .{
.{.items = .{.auto}},
},
.gui = .workbench,
.model = "cubyz:cube",
.rotation = .planar,
.texture = "cubyz:workbench_back",
.texture_front = "cubyz:workbench_front",
.texture_left = "cubyz:workbench_side",
.texture_right = "cubyz:workbench_side",
.texture_top = "cubyz:workbench_top",
.texture_bottom = "cubyz:workbench_bottom",
}