Cubyz/assets/cubyz/blocks/void_stone.zig.zon
2025-05-09 16:42:46 +02:00

40 lines
693 B
Zig

.{
.tags = .{.stone, .voidStone},
.blockHealth = 60,
.blockResistance = 5,
.drops = .{
.{.items = .{.auto}},
},
.item = .{
.material = .{
.density = 6.0,
.elasticity = 2.0,
.hardness = 8.0,
.textureRoughness = 1.0,
.colors = .{
0xff030308, 0xff0D0C11, 0xff151420, 0xff1C1A2B, 0xff28253D,
},
.modifiers = .{
.{
.id = "durable",
.strength = 0.1,
},
.{
.id = "good_at",
.strength = 0.5,
.tag = .voidStone,
.restriction = .{
.id = .encased,
.tag = .precious,
.amount = 2,
},
},
},
},
},
.allowOres = true,
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:void_stone",
}