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

.{
.tags = .{.leaf},
.blockHealth = 0.5,
.drops = .{
.{.items = .{.auto}},
.{.chance = 0.1, .items = .{"cubyz:apple"}},
},
.degradable = true,
.alwaysViewThrough = true,
.absorbedLight = 0x363436,
.model = "cubyz:cube",
.texture = "cubyz:birch_leaves",
.lodReplacement = "cubyz:birch_leaves_opaque",
.opaqueVariant = "cubyz:birch_leaves_opaque",
}