Minetest tool ranks mod
Go to file
Sys Quatre 8b466b199f Merge remote-tracking branch 'upstream/master' into nalc-1.2-dev 2020-06-20 16:07:16 +02:00
locale Add translation support for french (#9) 2020-02-04 23:31:06 +01:00
sounds -Add a sound when tool levels up 2017-07-27 15:21:03 +02:00
README.md Use tool capabilities and add more levels (#12) 2020-06-18 13:37:21 +02:00
depends.txt Remove `moreores` support to fix circular dependencies (#7) 2020-01-01 21:56:32 +01:00
init.lua Merge remote-tracking branch 'upstream/master' into nalc-1.2-dev 2020-06-20 16:07:16 +02:00
mod.conf Add translation support for french (#9) 2020-02-04 23:31:06 +01:00
settingtypes.txt Use tool capabilities and add more levels (#12) 2020-06-18 13:37:21 +02:00

README.md

minetest-toolranks [toolranks]

Minetest tool ranks mod

Tools gain levels for digging nodes. Higher level tools dig faster and take longer to wear out.

Are you a mod developer?

Does one of your mods add new tools? If so, to support this mod, add this code to your mod, after your tool's code:

if minetest.get_modpath("toolranks") then
    minetest.override_item("mymod:mytool", {
        original_description = "My Tool",
        description = toolranks.create_description("My Tool", 0, 1),
        after_use = toolranks.new_afteruse
    })
    end
end

Or alternatively, you can use the helper function:

toolranks.add_tool("mymod:mytool")