17 lines
439 B
Lua
Raw Normal View History

2019-04-14 00:57:14 -04:00
-- LUALOCALS < ---------------------------------------------------------
local minetest, nodecore
= minetest, nodecore
2019-04-14 00:57:14 -04:00
-- LUALOCALS > ---------------------------------------------------------
minetest.register_item(":", {
["type"] = "none",
2019-04-14 00:57:14 -04:00
wield_image = "nc_player_hand.png",
wield_scale = {x = 4, y = 8, z = 3},
tool_capabilities = nodecore.toolcaps({
uses = 0,
crumbly = 1,
snappy = 1,
thumpy = 1
})
})