Cubyz/assets/cubyz/items/uranium_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
278 B
Zig

.{
.tags = .{.metal},
.texture = "uranium_ingot.png",
.material = .{
.density = 18,
.strength = 7.0,
.elasticity = 5.0,
.grip = -1,
.hardness = 8.0,
.textureRoughness = 0.3,
.colors = .{
0xff395533, 0xff466e45, 0xff5d8a5f, 0xff6da367, 0xff74c761,
},
},
}