Cubyz/assets/cubyz/blocks/bolete.zig.zon
IntegratedQuantum 4d62da9ae8 Rename solid to replacable
fixes #1358
2025-05-12 18:06:21 +02:00

25 lines
485 B
Zig

.{
.tags = .{.wood},
.blockHealth = 0.2,
.drops = .{
.{.items = .{.auto}},
},
.replacable = true,
.viewThrough = true,
.degradable = true,
.absorbedLight = 0x010101,
.collide = false,
.rotation = .torch,
.model = .{
.base = "cubyz:bolete/floor",
.side = "cubyz:bolete/shelf",
},
.texture = "cubyz:bolete_side",
.texture_top = "cubyz:bolete_top",
.texture_bottom = "cubyz:bolete_bottom",
.item = .{
.texture = "bolete.png",
},
.lodReplacement = "cubyz:air",
}