mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00

* PR! * Rename hardness to blockHealth * Replaced Hardness! * Adjusted new blocks --------- Co-authored-by: IntegratedQuantum <jahe788@gmail.com>
20 lines
340 B
Zig
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",
|
|
}
|