KO
|
EN
gitlite — search
Search
#python
#java
#python3
#arduino
#golang
#machine-learning
#rust
#html
#flask
#javascript
#seismology
#nodejs
minetest-toolranks
★ 18
Open GitHub ↗
Minetest tool ranks mod
Download README (.md)
Explore Similar Repositories
ARAE
:
tensorflow implementation of Adversarially Regularized Autoencoders (ARAE)
sercapnp
:
Capnp support for intellij
imad-app
:
Base repository for IMAD course application.
WaveViewDemo
:
a demo about trigonometric function
LoginPurpel
:
No description available.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
minetest-toolranks
?
Download (.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. ## Licence Code: LGPLv2.1+ Tool level sound: [CC BY 3.0](https://freesound.org/people/MakoFox/sounds/126422/) ## 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: ```lua 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: ```lua toolranks.add_tool("mymod:mytool") ```