mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
36 lines
648 B
Zig
36 lines
648 B
Zig
.{
|
|
.tags = .{.stone, .mineable, .baseStone},
|
|
.blockHealth = 30,
|
|
.blockResistance = 1,
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.item = .{
|
|
.material = .{
|
|
.density = 3.0,
|
|
.elasticity = 1.0,
|
|
.hardness = 4.0,
|
|
.textureRoughness = 1.0,
|
|
.colors = .{
|
|
0xff444444, 0xff626262, 0xff7A7876, 0xff878583, 0xff9c9996,
|
|
},
|
|
.modifiers = .{
|
|
.{
|
|
.id = "good_at",
|
|
.strength = 0.5,
|
|
.tag = .baseStone,
|
|
.restriction = .{
|
|
.id = .encased,
|
|
.tag = .precious,
|
|
.amount = 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.allowOres = true,
|
|
.rotation = "cubyz:stairs",
|
|
.model = "cubyz:cube",
|
|
.texture = "cubyz:stone",
|
|
}
|