mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

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>
36 lines
645 B
Zig
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",
|
|
}
|