Tool Stats Tweaker

Quick rating

Tool Stats Tweaker

No reviews yet

A mod that lets you edit tool stats such as durability and damage via config

No Theme
No Genre
QoL & Tweaks
Mod Loaders
Forge
NeoForge
Fabric
Minecraft

Community voices

Reviews

Versions
Loading versions…
Match includes

Click once to include, again to exclude, again to clear

Rating Any
Any 0.5 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 5.0
Min
Max
Play Status
Reviews
Time Played
hrs+
Verified developers only
Has developer response
List view
Grid view
Compact view
Sort by
Date
Rating
Helpful
Unhelpful
Edited
Sort ascending
Delete this review?

This removes your review from the project. You can write a new review after.

Review submitted for moderation

Your review has been sent to moderators, who will check that it meets our guidelines before it appears publicly.

No reviews yet. Be the first to review this project!

Get it on

Available Platforms

Compatibility

Supported Environments

Dev Environment
Client Unsupported
Server Required

About

Project Details

Type
Mod
License
MIT License
Latest Version
tool-stats-tweaker-1.0.0.jar
Authors
CurseForge
Modrinth

For authors

Embed Badge

If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.

Custom banner text
ModDex rating badge preview

Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.

Identifiers

Platform IDs

CurseForge ID
Modrinth ID

Resources

External Links

Source Issues Wiki Discord

About

Description

Fabric requires Fabric API
Forge and NeoForge requires Sinytra Connector and its dependencies!

This mod lets you edit tool stats and whatnot through a config:

Documentation:

Format:

your_mod:your_item=[a_value:<operator>the_value,b_value:true/false]
#your_mod:your_tag=[a_value:<operator>the_value,b_value:true/false]

Operations:
*(value) - multiplies by that amount

Ex: Multiply stone sword durability by 2
minecraft:stone_sword=[durability:*2]

/(value) - divides by that amount

Ex: Divide diamond sword damage by 4
minecraft:diamond_sword=[attack_damage:/4]

-(value) - subtracts by that amount

Ex: Make iron pickaxe as weak as a stone one
minecraft:iron_pickaxe=[tool_tier:-1]

+(value) - adds by that amount

Ex: Give golden axes 600 extra durability
minecraft:golden_axe=[durability:+600]

=(value) - sets it to that amount

Ex: Sets all food items to have a maximim stack of 1
#c:foods=[max_stack:=1]

Boolean values:
fireproof - whether or not an item becomes fireproof

Ex: Make golden axes fireproof
minecraft:golden_axe=[fireproof:true]

Integer values:
durability - overall durability
enchantability - likelihood of getting higher level enchantments
max_stack - maximum item stack (do note that you cannot go over 64)
tool_tier - (0 is nothing, 1 is stone tools, 2 is iron tools, 3 is diamond tools)

Decimal values:
armor - armor points given by this armor
armor_toughness - armor toughness of this armor
attack_speed - attack speed of the weapon
attack_damage - attack damage of the weapon (do note that some weapons have a base damage that is fixed)
mining_speed - mining speed of the tool

Strings:
thrown - projectile to shoot when this weapon is right clicked

More examples:

minecraft:iron_boots=[armor_toughness:=5.0]
description_e44ad8ba-b8fb-41a3-a418-c2a8b48737e1.png
by writing =5.0, it sets the armor toughness of iron boots to 5

minecraft:golden_axe=[fireproof:true]
description_09f837fa-c75d-4caf-b32e-498614480caf.png
this makes the golden axe unburnable

minecraft:diamond_sword=[durability:-600,attack_damage:/4]
description_c6170ab0-91af-4e08-9aba-addc2d79c89a.png
durability: -600 reduces durability by 600, attack_damage: /4 reduces its bonus attack damage by 75%

minecraft:netherite_sword=[thrown:'minecraft:fireball']
description_d0c3a86f-32d2-4a04-9a1b-09a473657170.png
makes netherite swords shoot a fireball when right clicked

Example config for you to play around with

tool-stats-tweaker.txt

minecraft:golden_sword=[durability:+600]

minecraft:golden_axe=[durability:+600,fireproof:true]

minecraft:diamond_sword=[durability:-600,fireproof:true,attack_damage:/4]

minecraft:stone_sword=[durability:*2]

minecraft:netherite_axe=[durability:/2,fireproof:false,attack_speed:+1]

minecraft:fire_charge=[thrown:'minecraft:small_fireball',max_stack:=16]

minecraft:netherite_sword=[thrown:'minecraft:fireball']

minecraft:netherite_hoe=[enchantability:*100,thrown:'minecraft:wither_skull',attack_speed:*4]

minecraft:stick=[max_stack:=32]

minecraft:golden_leggings=[armor:=5.0,armor_toughness:=2.0]

minecraft:golden_boots=[armor:=5.0]

minecraft:wooden_pickaxe=[mining_speed:+3.0]

minecraft:iron_pickaxe=[tool_tier:-1]

minecraft:iron_helmet=[armor:+5.0]

minecraft:iron_boots=[armor_toughness:=5.0]

#c:foods=[max_stack:=1]

Fabric requires Fabric API Forge and NeoForge requires Sinytra Connector and its dependencies!

This mod lets you edit tool stats and whatnot through a config:

Documentation:

Format:

your_mod:your_item=[a_value:the_value,b_value:true/false] #your_mod:your_tag=[a_value:the_value,b_value:true/false]

Operations:

*(value) - multiplies by that amount

Ex: Multiply stone sword durability by 2 minecraft:stone_sword=[durability:*2]

/(value) - divides by that amount

Ex: Divide diamond sword damage by 4 minecraft:diamond_sword=[attack_damage:/4]

-(value) - subtracts by that amount

Ex: Make iron pickaxe as weak as a stone one minecraft:iron_pickaxe=[tool_tier:-1]

+(value) - adds by that amount

Ex: Give golden axes 600 extra durability minecraft:golden_axe=[durability:+600]

=(value) - sets it to that amount

Ex: Sets all food items to have a maximim stack of 1 #c:foods=[max_stack:=1]

Boolean values:

fireproof - whether or not an item becomes fireproof

Ex: Make golden axes fireproof minecraft:golden_axe=[fireproof:true]

Integer values:

durability - overall durability

enchantability - likelihood of getting higher level enchantments

max_stack - maximum item stack (do note that you cannot go over 64)

tool_tier - (0 is nothing, 1 is stone tools, 2 is iron tools, 3 is diamond tools)

Decimal values:

armor - armor points given by this armor

armor_toughness - armor toughness of this armor

attack_speed - attack speed of the weapon

attack_damage - attack damage of the weapon (do note that some weapons have a base damage that is fixed)

mining_speed - mining speed of the tool

Strings:

thrown - projectile to shoot when this weapon is right clicked

More examples:

minecraft:iron_boots=[armor_toughness:=5.0]

A pair of iron boots that are tougher than the others

by writing =5.0, it sets the armor toughness of iron boots to 5

minecraft:golden_axe=[fireproof:true]

A golden axe casually floating in lava

this makes the golden axe unburnable

minecraft:diamond_sword=[durability:-600,attack_damage:/4]

A diamond sword with less durability and attack damage

durability: -600 reduces durability by 600, attack_damage: /4 reduces its bonus attack damage by 75%

minecraft:netherite_sword=[thrown:'minecraft:fireball']

A netherite sword shooting a fireball

makes netherite swords shoot a fireball when right clicked

Example config for you to play around with

tool-stats-tweaker.txt

minecraft:golden_sword=[durability:+600]

minecraft:golden_axe=[durability:+600,fireproof:true]

minecraft:diamond_sword=[durability:-600,fireproof:true,attack_damage:/4]

minecraft:stone_sword=[durability:*2]

minecraft:netherite_axe=[durability:/2,fireproof:false,attack_speed:+1]

minecraft:fire_charge=[thrown:'minecraft:small_fireball',max_stack:=16]

minecraft:netherite_sword=[thrown:'minecraft:fireball']

minecraft:netherite_hoe=[enchantability:*100,thrown:'minecraft:wither_skull',attack_speed:*4]

minecraft:stick=[max_stack:=32]

minecraft:golden_leggings=[armor:=5.0,armor_toughness:=2.0]

minecraft:golden_boots=[armor:=5.0]

minecraft:wooden_pickaxe=[mining_speed:+3.0]

minecraft:iron_pickaxe=[tool_tier:-1]

minecraft:iron_helmet=[armor:+5.0]

minecraft:iron_boots=[armor_toughness:=5.0]

#c:foods=[max_stack:=1]

Screenshots

Gallery

  • No longer strong, huh?
    No longer strong, huh? A diamond sword whose stats were butchered
  • Tougher than usual
    Tougher than usual A pair of iron boots with more armor toughness than other iron boots

Versions

Files

Relations

Project Relations

More like this

Similar Mods

Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.

On ModDex

Community snapshot

0
Ratings
0
Followers
0
In stacks

By the numbers

Statistics

~49,000
Total Downloads
CurseForge
~14,000
Modrinth
~34,000
Last Updated
CurseForge
Created
CurseForge
Modrinth
Last synced
When ModDex last fetched this project from CurseForge or Modrinth. Every project is re-checked on a schedule, and any project that ships a new file is synced automatically within hours of the release.
New file updates sync automatically
How syncing works