Tool Stats
Take full control over your tools and weapons. Tool Stats is a lightweight, straightforward mod that allows you to easily modify the base statistics of any tool or weapon in the game using a simple JSON configuration file.
Whether you are building a custom modpack and need to rebalance vanilla tiers, or you just want to make specific modded items viable, this mod gives you the power to do it instantly - no complex scripting or coding required.
Features
You can override and customize the following base stats for any item in the game:
- Mining Speed (
miningSpeed) - Durability (
durability) - Attack Damage (
attackDamage) - Attack Speed (
attackSpeed)
Configuration
Everything is handled through a single, easy-to-read JSON file. Simply define the exact stats you want for any specific item registry name, and the mod handles the rest.
Example configuration:
{
"minecraft:diamond_pickaxe": {
"miningSpeed": 50,
"durability": 500,
"attackDamage": 100,
"attackSpeed": 10
},
"minecraft:iron_pickaxe": {
"miningSpeed": 25,
"durability": 300,
"attackDamage": 20,
"attackSpeed": 5
},
"minecraft:wooden_pickaxe": {
"miningSpeed": 10,
"durability": 100,
"attackDamage": 10,
"attackSpeed": 2
}
}

