Cubyz/assets/cubyz/blocks/torch.zig.zon
ikabod-kee 0f4b93330e
Add Block Health (ft. QuantumDeveloper) (#945)
* PR!

* Rename hardness to blockHealth

* Replaced Hardness!

* Adjusted new blocks

---------

Co-authored-by: IntegratedQuantum <jahe788@gmail.com>
2025-01-23 22:35:00 +01:00

20 lines
340 B
Zig

.{
.class = .wood,
.blockHealth = 1,
.drops = .{
.{.items = .{.auto}},
},
.solid = false,
.emittedLight = 0xa58d73,
.viewThrough = true,
.absorbedLight = 0x010101,
.collide= false,
.rotation = .torch,
.model = "cubyz:torch",
.texture = "cubyz:torch",
.item= .{
.texture = "torch.png",
},
.lodReplacement = "cubyz:air",
}