-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Differentiating blocks, minerals and cooktimes #47
base: master
Are you sure you want to change the base?
Differentiating blocks, minerals and cooktimes #47
Conversation
Adjust tools
…oup rating=0 and adjust uses and digging times
Improve ore generation to better match recent Minetest versions (minetest-mods#45)
Note that this changes the underlying structure of the code to some degree, as described in the following: |
An explanation for level=5: The mithril block should have less "uses" and a greater "digging time" than the diamond block, which is a level=3 node. Therefore, for the mithril block to have a higher digging time than the diamond block, it has to be not only level=4, but level=5. |
Blocks, minerals and cooktimes were the same for all ores (e.g. the mithril block had the same attributes as the silver one and thus was less tough than the diamondblock).
The changes from this branch are:
3.1 The mithril block is probably now the first block with level=5 (> level 3) to result in a higher digging time and lower uses than for the diamondblock. It can only be dug with a mithril pickaxe.
3.2 Because of 3.1, all mithril tools have now max level=5. The digging times and uses are adjusted, so that they are still better for lower level blocks than the values for diamond tools (e.g. 207 versus 30 (or 40) uses for level=3).
3.3 The mithril block is now also TNT resistant.