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
23 lines
384 B
Zig
23 lines
384 B
Zig
.{
|
|
.tags = .{.wood},
|
|
.blockHealth = 6,
|
|
.item = .{
|
|
.material = .{
|
|
.density = 0.75,
|
|
.elasticity = 2.875,
|
|
.hardness = 2.125,
|
|
.textureRoughness = 0.7,
|
|
.colors = .{
|
|
0xff35281b, 0xff493523, 0xff60462e, 0xff6f5133, 0xff815d39,
|
|
},
|
|
},
|
|
},
|
|
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.model = "cubyz:cube",
|
|
.rotation = .stairs,
|
|
.texture = "cubyz:willow_planks",
|
|
}
|