Перейти к содержимому
Mineforgian

Simplify Tool Config Lib

Simplify your modded tools configuration with a single value on each tool properties.

Загрузки
1K
Подписчики
3
Обновлён
17 июня 2026 г.
Лицензия
MIT

Опубликован 29 августа 2023 г.

This mod library changes some Tools values to simplify Tools configuration. If your mod has tools or sword & other. With this mod, You need juste to put one value on each tool properties and restore some Minecraft tool values to "0". It's fix somme values ( int/ float) prevented giving precise values, mainly on "attack damage" value. You just put one value directly on your tool items of your choice without additionals values away in the code.

Example: on attack damage in default "1" and attack speed in default "4".

If you want to implements this mod in your mod, I have methods.

Directly implement -Go to Github and download java files and add on your project files and remap "imports".

Local Implementation -Download this mods and add in "build.gradle" file on section dependencies:

dependancies {
           modImplementation(fileTree("Local File Path"))
}

Example code to add:

Custom ToolMaterials:

//Minecraft version 1.20.1 method

public enum CustomToolMaterials implements FixToolMaterial {

 CUSTOM(  miningLevel, itemDurability, miningSpeed, enchantability, Ingredient)

...

Custom ToolItems (pretty much the code):

... CUSTOM_TOOL = register( "custom_tool" , new SimplifySwordItem( materials, float Damage, float Speed, new FabricItemSettings()));

//Minecraft version 1.20.6 method

public static CustomToolMaterials impleement Tier {

CUSTOM( BlocksTags... , durability, enchantementValue, Repair Ingredient);

...

Item CUSTOM_TOOL = register( "custom_tool", new Fix...Item( material, new Item.properties().attribute(Fix...Item.createAttributes(damage, speed))));

Ченджлог

1.1.0Релиз26.2 · 17 июня 2026 г.
  • Update Library for Minecraft 26.2 Mods.
1.1.0Релиз26.1, 26.1.1, 26.1.2 · 28 апреля 2026 г.

-Update Library For Minecraft 26.1.0 to 26.1.2

1.1.0Релиз1.21.11 · 7 января 2026 г.
  • Update Library STC:lib 1.1.0 for Minecraft 1.21.11
  • Add spear on library
1.1.0Релиз1.21.9, 1.21.10 · 1 ноября 2025 г.

-Update Library for Minecraft 1.21.9 and 1.21.11.

1.1.0Релиз1.21.6, 1.21.7, 1.21.8 · 8 сентября 2025 г.
  • Update mod RVL:STC 1.1.0 for Minecraft 1.21.5+
1.1.0Релиз1.21.2, 1.21.3, 1.21.4 · 8 сентября 2025 г.
  • Update mod RVL:STC 1.1.0 for Minecraft 1.21.2 to 1.21.4
1.1.0Релиз1.21, 1.21.1 · 8 сентября 2025 г.
  • Update mod RVL:STC 1.1.0 for Minecraft 1.21 to 1.21.1.
1.1.0Релиз1.20.5, 1.20.6 · 8 сентября 2025 г.
  • Update mod RVL:STC 1.1.0 for Minecraft 1.20.5 to 1.20.6.

Комментарии

Загружаем…