Cubyz/assets/cubyz/blocks/limestone.zig.zon
OneAvargeCoder193 4898012311
Use comptime modding for rotation loading (#1509)
Related to: #1507
closes #1533 

I'm pretty sure that the rest of the moving into a comptime mod
interface can be done in a future pr

---------

Co-authored-by: Krzysztof Wiśniewski <argmaster.world@gmail.com>
2025-06-17 18:13:48 +02:00

36 lines
645 B
Zig

.{
.tags = .{.stone, .limestone},
.blockHealth = 27.5,
.blockResistance = 1,
.drops = .{
.{.items = .{.auto}},
},
.item = .{
.material = .{
.density = 2.75,
.elasticity = 0.9,
.hardness = 3.33,
.textureRoughness = 0.5,
.colors = .{
0xff70583E, 0xff886D52, 0xffAB8D6A, 0xffC09B6E, 0xffCCA780,
},
.modifiers = .{
.{
.id = "good_at",
.strength = 0.5,
.tag = .limestone,
.restriction = .{
.id = .encased,
.tag = .precious,
.amount = 2,
},
},
},
},
},
.allowOres = true,
.rotation = "cubyz:stairs",
.model = "cubyz:cube",
.texture = "cubyz:limestone",
}