-
Notifications
You must be signed in to change notification settings - Fork 0
Modded
Levviata edited this page Aug 22, 2026
·
4 revisions
To modify another mod's items, you must get the ModID:ItemID, this can be seen by enabling advanced tooltips (F3 + H) and hovering any item.
If I wanted to modify Nuclear Tech's Schrabidium Sword, I would hover it and see that its Mod ID is "hbm" and that its Item ID "schrabidium_sword" (together "hbm:schrabidium_sword").
This is the location of the item and we can use it to modify it's attributes.
Examples:
{
"hbm:schrabidium_sword": {
"attackDamage": 100.0,
"attackSpeed": -0.5
}
}This modifies the
- Damage attribute and set it as 100
- Attack speed attribute and sets it a bit faster than the average speed.