You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Milan2018 29d57bc728
update
2 years ago
..
.github/workflows update 2 years ago
locale update 2 years ago
sounds first 3 years ago
.luacheckrc update 2 years ago
README.md update 2 years ago
depends.txt update 2 years ago
init.lua update 2 years ago
mod.conf update 2 years ago
settingtypes.txt update 2 years ago

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"),
        after_use = toolranks.new_afteruse
    })
    end
end

Or alternatively, you can use the helper function:

toolranks.add_tool("mymod:mytool")