Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Attribute Modify
ModLicenseRef-All-Rights-Reserved

Attribute Modify

This mod allows the modification of item attributes, both vanilla and curios. Do you want to buff or nerf a weapon or curios? With this mod, you only need a datapack to do so.

401
Downloads
5
Followers
2 months ago
Updated
📦
5
Versions
game-mechanicsmanagementutilityforgeneoforge
Download Latestv1.0.4View on Modrinth

📖About Attribute Modify

AttributeModify

Customize every item attribute in Minecraft with JSON datapacks. No Java coding required.

This mod gives modpack creators and server admins complete control over item attributes (Damage, Health, Speed, Luck, etc.) using a simple data-driven system. It supports Vanilla items, Modded items, and fully integrates with the Curios API.


AttributeModify allows you to customize item attributes in Minecraft with high flexibility. Instead of hardcoding changes, you use clean JSON files to modify any item in the game.

What makes it special?

  • Smart Tooltips: Automatically formats tooltips with color coding (Green for weapons, Blue for armor) and sums up values for a clean look.
  • Complete Control: Add, Remove, or Modify existing attributes.
  • Deep Integration: Works with mainhand, offhand, armor slots, and Curios slots.

✨ Key Features

✅ Universal Compatibility: Works with Vanilla and Modded items.
✅ Curios API Support: Native support for necklaces, rings, charms, etc.
✅ Smart Tooltips: Auto-calculates totals and applies intuitive coloring.
✅ Hot-Reload: Use /reload to test changes instantly.
✅ Server Friendly: Works for singleplayer and multiplayer.


🚀 How to Use

1. File Structure

Create your attributes files in your datapack or resourcepack under:
data/your_mod_id/item_attributes/my_changes.json

2. Basic Example (Diamond Sword)

This adds Luck and increases Attack Damage on a Diamond Sword.

{
  "minecraft:diamond_sword": {
    "equipment_slots": {
      "mainhand": [
        {
          "action": "add",
          "attribute": "minecraft:generic.luck",
          "amount": 1.0,
          "operation": "addition",
        },
        {
          "action": "add",
          "attribute": "minecraft:generic.attack_damage",
          "amount": 2.0,
          "operation": "addition",
        }
      ]
    }
  }
}

3. Curios Example (Necklace)

Requires Curios API to be installed.

{
  "dungeons_and_combat:ernos_fang_necklace": {
    "curios_slots": {
      "necklace": [
        {
          "action": "add",
          "attribute": "minecraft:generic.max_health",
          "amount": 4.0,
          "operation": "addition",
        }
      ]
    }
  }
}

📚 Documentation Reference

🛠 Supported Slots

  • Standard: mainhand, offhand, head, chest, legs, feet
  • Curios: Any registered curios slot (e.g., necklace, ring, charm)

⚡ Actions

  • "add": Adds a new attribute modifier.
  • "remove": Removes an existing attribute from the item (e.g., remove damage from a sword).
  • "modify": Replaces an existing attribute modifier.

🧮 Operations

  • "addition" (or "add"): Adds a flat value (e.g., +2 Damage).
  • "multiply_base": Multiplies the base value (e.g., +50% of base damage).
  • "multiply_total": Multiplies the final calculated value.

Discord

👥 Team & Contributors

Etema
EtemaOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
forgeneoforge
Minecraft Versions
1.20.11.20.21.20.31.20.41.20.51.20.6

🔗 Links

Modrinth Page