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

47 lines
815 B
Zig

.{
.tags = .{.stone, .sandstone},
.blockHealth = 20,
.drops = .{
.{.items = .{.auto}},
},
.item = .{
.material = .{
.density = 2.0,
.elasticity = 0.25,
.hardness = 6.5,
.textureRoughness = 3.0,
.colors = .{
0xffAF8354, 0xffC89965, 0xffE6B776, 0xffEEC589, 0xffEDD0AD,
},
.modifiers = .{
.{
.id = "fragile",
.strength = 0.20,
.restriction = .{
.id = .not,
.child = .{
.id = .encased,
.tag = .precious,
.amount = 2,
},
},
},
.{
.id = "good_at",
.strength = 0.5,
.tag = .sandstone,
.restriction = .{
.id = .encased,
.tag = .precious,
.amount = 2,
},
},
},
},
},
.allowOres = true,
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:sandstone",
}