Ability to match based on ItemTool.getToolClasses and getHarvestLevel (and getMaxDamage)
IMarvinTPA opened this issue ยท 0 comments
I would like the ability to say have a tag such as
and have it match any item that has pickaxe in the set of getToolClasses (case insensitive) then sort those in best to worst by getHarvestLevel then by maxDamage best to worst (with unbreakable being MaxInt max damage.
Then all of the modded picks would sort themselves out without dealing with looking at them for every mod or mod pack that manipulates them.
Hoes aren't ItemTool class items, so an additional data type might be
that maches where given Item x; x instanceof ItemHoe is a match.
Thanks,
IMarv