mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

* Change how to specify tool parameters * Some mild reparammarametetrizatation and pickaxes now only have one relevant tip. * Ignore properties that couldn't be found instead of assigning some default * Remove grip and strength from materials * Ensure that all woods can break all stones, but not copper, and ensure that all stones tipped woods can break copper. Also increased weight damage slightly * Reparammamaramamararara * Update shover and axe (mostly copied from the pickaxe with less damage) * Remove the unused FunctionType struct. * Remove named slots from axe
21 lines
313 B
Zig
21 lines
313 B
Zig
.{
|
|
.tags = .{.stone},
|
|
.blockHealth = 60,
|
|
.blockResistance = 7.0,
|
|
.ore = .{
|
|
.veins = 3,
|
|
.size = 15,
|
|
.height = -500,
|
|
.density = 0.25,
|
|
},
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.rotation = .ore,
|
|
.model = "cubyz:cube",
|
|
.texture = "cubyz:silver_ore",
|
|
.item = .{
|
|
.texture = "raw_silver.png",
|
|
},
|
|
}
|