fcb8463953
- Add a bit of stone to the tip of a wooden tool to harden it. - Stone tools wear back down to their wooden originals. - Stone tools dig faster, but wear quickly, so you need to pay attention to wear levels and carry spare stone tips. Also: - Nerfed mining speeds again, but made higher-tier tools much faster relative to lower. - Nerfed tool durability as well. Also: - Standardized item ejection logic.
17 lines
436 B
Lua
17 lines
436 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local minetest, nodecore, type
|
|
= minetest, nodecore, type
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
minetest.register_item(":", {
|
|
type = "none",
|
|
wield_image = "nc_hand.png",
|
|
wield_scale = {x=1, y=1, z=2.5},
|
|
tool_capabilities = nodecore.toolcaps({
|
|
uses = 0,
|
|
crumbly = 1,
|
|
snappy = 1,
|
|
thumpy = 1
|
|
})
|
|
})
|