NathanSalapat 67a78de58c Added toolranks | 4 лет назад | |
---|---|---|
.. | ||
locale | 4 лет назад | |
sounds | 4 лет назад | |
README.md | 4 лет назад | |
init.lua | 4 лет назад | |
mod.conf | 4 лет назад | |
settingtypes.txt | 4 лет назад |
Minetest tool ranks mod
Tools gain levels for digging nodes. Higher level tools dig faster and take longer to wear out.
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")