Tool Stats Tweaker
This modification offers extensive capabilities for configuring tools, weapons, and armor characteristics through a configuration file.
Editor Settings
Use the following syntax to modify parameters:
For tools or items: your_mod:your_item=[parameter:operator_value]
For item tags: your_mod:your_tag=[parameter:operator_value]
Available Operations
*(number)— multiplies the value by the specified factor/(number)— divides the value by the specified number-(number)— subtracts the specified amount+(number)— adds the specified amount=(number)— sets an exact value
Parameter Management
Boolean parameters:
- fireproof — makes the item immune to fire
Integer parameters:
- durability — overall item durability
- enchantability — probability of obtaining high-level enchantments
- max_stack — maximum stack size (not exceeding 64)
- tool_tier — tool level (0 = no tool, 1 = stone, 2 = iron, 3 = diamond)
Decimal parameters:
- armor — amount of armor points
- armor_toughness — armor toughness
- attack_speed — weapon attack speed
- attack_damage — attack damage
- mining_speed — block mining speed
String parameters:
- thrown — type of projectile launched when using the item
Practical Configuration Examples
Example: Increase golden sword durability
minecraft:golden_sword=[durability:+600]
Example: Increase durability and fire resistance of golden axe
minecraft:golden_axe=[durability:+600,fireproof:true]
Example: Reduce damage and durability of diamond sword while making it fireproof
minecraft:diamond_sword=[durability:-600,fireproof:true,attack_damage:/4]

Example: Modify netherite sword characteristics to launch fireball
minecraft:netherite_sword=[thrown:'minecraft:fireball']

Example: Set fixed armor values for iron boots
minecraft:iron_boots=[armor_toughness:=5.0]
