2018-11-02 21:20:51 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
2019-01-24 22:08:05 -05:00
|
|
|
local minetest, nodecore, type
|
|
|
|
= minetest, nodecore, type
|
2018-11-02 21:20:51 -04:00
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
2018-10-30 11:12:36 -04:00
|
|
|
|
2018-10-29 22:37:57 -04:00
|
|
|
minetest.register_item(":", {
|
2018-11-02 21:20:51 -04:00
|
|
|
type = "none",
|
|
|
|
wield_image = "nc_hand.png",
|
|
|
|
wield_scale = {x=1, y=1, z=2.5},
|
2019-01-24 22:08:05 -05:00
|
|
|
tool_capabilities = nodecore.toolcaps({
|
|
|
|
uses = 0,
|
|
|
|
crumbly = 1,
|
|
|
|
snappy = 1,
|
|
|
|
thumpy = 1
|
|
|
|
})
|
2019-01-25 09:26:15 -05:00
|
|
|
})
|