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>
35 lines
609 B
Zig
35 lines
609 B
Zig
.{
|
|
.tags = .{.stone, .marble},
|
|
.blockHealth = 28,
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.item = .{
|
|
.material = .{
|
|
.density = 2.6,
|
|
.elasticity = 0.0,
|
|
.hardness = 4.0,
|
|
.textureRoughness = 1.0,
|
|
.colors = .{
|
|
0xffA89B94, 0xffC9C0BB, 0xffECE9E3, 0xffFBF8F1, 0xffECE9E3,
|
|
},
|
|
.modifiers = .{
|
|
.{
|
|
.id = "good_at",
|
|
.strength = 0.5,
|
|
.tag = .marble,
|
|
.restriction = .{
|
|
.id = .encased,
|
|
.tag = .precious,
|
|
.amount = 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.allowOres = true,
|
|
.rotation = "cubyz:stairs",
|
|
.model = "cubyz:cube",
|
|
.texture = "cubyz:marble",
|
|
}
|