2018-11-02 21:20:51 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
|
|
|
local minetest, type
|
|
|
|
= minetest, type
|
|
|
|
-- 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},
|
|
|
|
tool_capabilities = {
|
|
|
|
full_punch_interval = 0.9,
|
|
|
|
max_drop_level = 0,
|
|
|
|
groupcaps = {
|
|
|
|
crumbly = {times={[2]=3.00, [3]=0.70}, uses=0, maxlevel=1},
|
|
|
|
snappy = {times={[2]=2.00, [3]=0.40}, uses=0, maxlevel=1}
|
|
|
|
},
|
|
|
|
damage_groups = {slappy = 1},
|
|
|
|
}
|
|
|
|
})
|