Skip to content

Tool overwrite

tyra edited this page Nov 24, 2017 · 1 revision

Tools can have multiple classes. The overwrites for tools are also pretty simple.

Examples

You can overwrite the harvest level of a tool.

# Increase harvest level
S:"minecraft:golden_pickaxe"=pickaxe=3
# ... or decrease harvest level
S:"minecraft:diamond_pickaxe"=pickaxe=0

You can add new tool classes, which were previously not part of the tool. When specifying multiple tool classes, separate them with a comma.

# Diamond pickaxe is also a shovel
S:"minecraft:diamond_pickaxe"=pickaxe=3,shovel=3

You can add completely new tool classes. For instance, this adds a tool class for hoes.

S:"minecraft:golden_hoe"=hoe=3

You can overwrite any item to be a tool. For example, this makes wooden sticks usable as pickaxes. However, this won't add durability to those items, so be careful, which items you're promoting to tools.

S:"minecraft:stick"=pickaxe=2

Notes

  • Tinkers' Construct tools can only be changed by changing the material
  • Once a Tinkers' Construct tool is crafted, newly added overwrites won't apply, as the harvest level is stored inside of the item stack as NBT data.
Clone this wiki locally