mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
36 lines
626 B
Zig
36 lines
626 B
Zig
.{
|
|
.tags = .{.stone, .basalt},
|
|
.blockHealth = 30,
|
|
.blockResistance = 1,
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.item = .{
|
|
.material = .{
|
|
.density = 3.0,
|
|
.elasticity = 0.75,
|
|
.hardness = 5.5,
|
|
.textureRoughness = 5.0,
|
|
.colors = .{
|
|
0xff282328, 0xff353135, 0xff434041, 0xff4A4849, 0xff605E5F,
|
|
},
|
|
.modifiers = .{
|
|
.{
|
|
.id = "good_at",
|
|
.strength = 0.5,
|
|
.tag = .basalt,
|
|
.restriction = .{
|
|
.id = .encased,
|
|
.tag = .precious,
|
|
.amount = 2,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
.allowOres = true,
|
|
.rotation = .stairs,
|
|
.model = "cubyz:cube",
|
|
.texture = "cubyz:basalt",
|
|
}
|