24 lines
493 B
Lua

-- player hand
minetest.register_item(":", {
type = "none",
wield_image = "hand.png"
})
minetest.override_item("", {
range = 6,
tool_capabilities = {
groupcaps = {
block = {
times = {
[PyuTestCore.BLOCK_BREAKABLE_INSTANT] = 0.25,
[PyuTestCore.BLOCK_BREAKABLE_NORMAL] = 0.4,
[PyuTestCore.BLOCK_BREAKABLE_LONG] = 4,
[PyuTestCore.BLOCK_BREAKABLE_FOREVER] = 12
},
uses = 0
}
},
punch_attack_uses = 0
}
})