Cubyz/assets/cubyz/items/iron_ingot.zig.zon
IntegratedQuantum 176c9d4c75 Introduce item tags and generalize the tag system
All tags now share the same index space, I don't see a reason why we should have separate spaces for these.

I also made diamond powerful if encased in gold/silver
2025-04-20 17:43:24 +02:00

16 lines
277 B
Zig

.{
.tags = .{.metal},
.texture = "iron_ingot.png",
.material = .{
.density = 7.5,
.strength = 6.0,
.elasticity = 5.0,
.grip = 2.0,
.hardness = 5.0,
.textureRoughness = 0.1,
.colors = .{
0xff69696b, 0xff878484, 0xffa3a3a3, 0xffc2c2c2, 0xffe9e9e9,
},
},
}