forked from minetest-mods/moreores
Add sounds and rotate wield images for shovels
This commit is contained in:
parent
560e5becc5
commit
1e2dcc6fd6
4
init.lua
4
init.lua
@ -177,7 +177,8 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
tool_capabilities = {
|
tool_capabilities = {
|
||||||
max_drop_level = 3,
|
max_drop_level = 3,
|
||||||
groupcaps = tooldef
|
groupcaps = tooldef
|
||||||
}
|
},
|
||||||
|
sound = {breaks = "default_tool_breaks"},
|
||||||
}
|
}
|
||||||
|
|
||||||
if tool_name == "sword" then
|
if tool_name == "sword" then
|
||||||
@ -202,6 +203,7 @@ local function add_ore(modname, description, mineral_name, oredef)
|
|||||||
tdef.full_punch_interval = oredef.full_punch_interval
|
tdef.full_punch_interval = oredef.full_punch_interval
|
||||||
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
tdef.tool_capabilities.damage_groups = oredef.damage_groups
|
||||||
tdef.description = S("%s Shovel"):format(S(description))
|
tdef.description = S("%s Shovel"):format(S(description))
|
||||||
|
tdef.wield_image = toolimg_base .. tool_name .. ".png^[transformR90"
|
||||||
end
|
end
|
||||||
|
|
||||||
if tool_name == "hoe" then
|
if tool_name == "hoe" then
|
||||||
|
Loading…
Reference in New Issue
Block a user