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",
|
2019-03-02 20:32:50 -05:00
|
|
|
wield_image = "nc_player_hand.png",
|
2019-03-10 15:47:22 -04:00
|
|
|
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
|
|
|
})
|