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

25 lines
503 B
Zig

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