399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
|
})
minetest.register_item("starlit:_hand_dig", {
type = "none",
wield_image = "wieldhand.png",
wield_scale = {x=1,y=1,z=2.5},
tool_capabilities = {
groupcaps = {
object = {maxlevel=1, times = {.20,.10}};
plant = {maxlevel=1, times = {.50}};
-- sand, dirt, gravel
looseClump = {maxlevel=1, times = {1.5, 2.5}};
};
}
})
|
|
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
|
})
minetest.register_item("starlit:_hand_dig", {
type = "none",
wield_image = "wieldhand.png",
wield_scale = {x=1,y=1,z=2.5},
tool_capabilities = {
groupcaps = {
object = {maxlevel=1, times = {.10,.20,.40}};
plant = {maxlevel=1, times = {.50}};
-- sand, dirt, gravel
looseClump = {maxlevel=1, times = {1.5, 2.5}};
};
}
})
|