Cubyz/assets/cubyz/blocks/resin.zig.zon
Carrie 900b52a02c
Resin assets (#1383)
* Resin assets

* resin_block = .wood

* Make resin block more frictiony
2025-05-04 12:34:17 +02:00

23 lines
391 B
Zig

.{
.tags = .{.wood},
.blockHealth = 1,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .ore,
.model = "cubyz:cube",
.texture = "cubyz:resin",
.item = .{
.texture = "resin.png",
.material = .{
.density = 1.5,
.elasticity = 1,
.hardness = 1.5,
.textureRoughness = 0.1,
.colors = .{
0xff7e331f, 0xffa03d25, 0xffc34b27, 0xffdf682d, 0xfffc813a,
},
},
},
}