16 lines
435 B
Lua
Raw Normal View History

-- 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
})
2019-01-25 01:17:08 -05:00
})