Tinker Tool Leveling Config
Tinkers' Tool Leveling. Using this mod means you forfeit all resemblance with balance, since Tinkers' Construct is based around the limited amount of modifiers. Add this suggestion to a batch that can be applied as a single commit. This suggestion is invalid because no changes were made to the code. Suggestions cannot be applied while the pull request is closed. Track tasks and feature requests. Join 40 million developers who use GitHub issues to help identify, assign, and keep track of the features and bug fixes your projects need. It follows the same order that patterns are ordered in a Stencil Table (Tool Rod-Pickaxe Head-Shovel Head, etc.). This is a useful way to save wood and inventory space. Flint no longer drops directly from Gravel. 3 Gravel can be crafted together to make 1 Flint. New value; skill level. It will increase as you use the tool, and will level up.
PermalinkJoin GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Studio 7 voa news zimbabwe. Use the most advanced software yourself straight away, and perform the best mixes you can!
Sign upBranch:master
2 contributors
packageslimeknights.toolleveling.config; |
importnet.minecraft.item.Item; |
importjava.io.File; |
importslimeknights.mantle.config.AbstractConfig; |
publicclassConfigextendsAbstractConfig { |
publicstaticConfigINSTANCE=newConfig(); |
publicConfigFile configFile; |
publicvoidload(Filefile) { |
ConfigFile.init(); |
configFile =this.load(newConfigFile(file), ConfigFile.class); |
if (configFile.toolxp.levelMultiplier <2) { |
configFile.toolxp.levelMultiplier =2f; |
configFile.setNeedsSaving(); |
} |
} |
publicstaticintgetBaseXpForTool(Itemitem) { |
ConfigFile.ToolXP toolXP =INSTANCE.configFile.toolxp; |
return toolXP.baseXpForTool.getOrDefault(item, toolXP.defaultBaseXP); |
} |
publicstaticfloatgetLevelMultiplier() { |
returnINSTANCE.configFile.toolxp.levelMultiplier; |
} |
publicstaticintgetStartingModifiers() { |
returnINSTANCE.configFile.general.newToolMinModifiers; |
} |
publicstaticbooleancanLevelUp(intcurrentLevel) { |
returnINSTANCE.configFile.general.maximumLevels <0INSTANCE.configFile.general.maximumLevels >= currentLevel; |
} |
} |
Tinker Tool Leveling Config Tool
Copy lines Copy permalink