37 lines
887 B
Lua
Raw Normal View History

2021-03-22 11:29:28 -04:00
fl_hand = {}
fl_hand.details = {
version = 1,
name = "fl_hand",
author = "wsor",
license = "MIT",
}
minetest.register_item(":", {
type = "none",
wield_image = "farlands_hand.png",
wield_scale = {x = 1, y = 1, z = 2.5},
2021-04-28 00:31:26 -04:00
--.2 added to range for snek
range = 5.2,
2021-03-22 11:29:28 -04:00
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 = {[3] = 0.40},
uses = 0,
maxlevel = 1,
},
oddly_breakable_by_hand = {
times = {[1] = 3.50, [2] = 2.00, [3] = 0.70},
uses = 0,
},
},
damage_groups = {fleshy = 1},
}
})