Differentiating blocks, minerals and cooktimes#47
Differentiating blocks, minerals and cooktimes#47GreenDirkfried wants to merge 13 commits intominetest-mods:masterfrom
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. |
|
I've added the changes to my own moreores fork as "init.lua_newmithril" for testing, but would it be possible to maybe alter mithril armor values as well for a much broader test ? |
|
@GreenDirkfried PR needs a rebase. It seems that #55 also changed some tool capabilities. I hope they're going in the same direction as your efforts. |
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.