1
1
Fork
You've already forked toolranks
0
custom toolranks mod for minetest to level up tools with use
  • Lua 100%
Find a file
2026年06月20日 17:28:33 +01:00
locale quick tidy, add mcl_tools 2026年05月23日 17:22:49 +01:00
sounds quick tidy, add mcl_tools 2026年05月23日 17:22:49 +01:00
init.lua readability 2026年06月20日 17:28:33 +01:00
license.txt fix license 2019年10月12日 14:05:18 +01:00
mod.conf add toolranks to default hoes 2026年06月01日 11:38:22 +01:00
README.md update to increase speed levels 2021年05月09日 15:35:01 +01:00
settingtypes.txt update to increase speed levels 2021年05月09日 15:35:01 +01:00

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")