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

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

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

Tools

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

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
Potion Effects Set
ModLicenseRef-All-Rights-Reserved

Potion Effects Set

Grant potion effects to your items

120
Downloads
4
Followers
4 months ago
Updated
📦
4
Versions
game-mechanicsmanagementutilityforgeneoforge
Download Latestv1.0.0View on Modrinth

📖About Potion Effects Set

🧪 PotionEffectsSet

Transform any item into legendary equipment! ✨

PotionEffectsSet allows you to attach custom potion effects to any item in the game using a simple datapack system. Whether you want a sword that poisons enemies or armor that heals you when struck, you can configure it easily.


✨ Features

  • ⚔️ Slot-Specific Triggers: Effects only activate when the item is in the correct slot (Mainhand, Offhand, Armor, etc.).
  • 🎲 Multiple Trigger Types:
    • Passive: Constant effect while equipped.
    • On Hit: Chance to apply effect to the target when attacking.
    • On Hurt: Chance to apply effect to self when taking damage.
  • 💍 Curios API Support: Fully compatible with rings, necklaces, belts, and other accessories.
  • 📝 Datapack Driven: No hardcoding! easy JSON configuration.
  • 🔄 Hot Reload: Tweak values live using /reload.

📋 Usage Examples

Copy these into your datapack JSON files to get started immediately.

⚔️ Example: Diamond Sword with Poison

This configuration makes any Diamond Sword apply Poison II for 5 seconds (30% chance) when hitting enemies.

{
  "minecraft:diamond_sword": {
    "on_hit_effects": [
      {
        "effect": "minecraft:poison",
        "amplifier": 1,
        "duration": 100,
        "chance": 0.3,
        "slot": "mainhand"
      }
    ]
  }
}
🛡️ Example: Tank Chestplate

Grants permanent Resistance I. When you get hit, there is a 50% chance to gain Regeneration II.

{
  "minecraft:diamond_chestplate": {
    "passive_effects": [
      {
        "effect": "minecraft:resistance",
        "amplifier": 0,
        "permanent": true,
        "slot": "chest"
      }
    ],
    "on_hurt_effects": [
      {
        "effect": "minecraft:regeneration",
        "amplifier": 1,
        "duration": 100,
        "chance": 0.5,
        "slot": "chest"
      }
    ]
  }
}
👟 Example: Speed Boots

Gives Speed II while worn.

{
  "minecraft:golden_boots": {
    "passive_effects": [
      {
        "effect": "minecraft:speed",
        "amplifier": 1,
        "permanent": true,
        "slot": "feet"
      }
    ]
  }
}
💍 Example: Invisibility Ring (Curios)

Grants Invisibility while worn in a 'ring' slot.

{
  "curios:ring_gold": {
    "passive_effects": [
      {
        "effect": "minecraft:invisibility",
        "amplifier": 0,
        "permanent": true,
        "slot": "ring",
        "is_curio": true
      }
    ]
  }
}

🔧 Configuration Guide

📁 Location

world/datapacks/<name>/data/potioneffectsmodify/potion_effects/your_file.json

⚙️ Options

Property Type Description
effect ID The potion effect ID (e.g., minecraft:strength)
amplifier Int Level of the effect (0 = Level I, 1 = Level II)
duration Int Duration in ticks (20 ticks = 1 second)
chance Float Probability (0.0 to 1.0) for On Hit/On Hurt
slot String Required slot (mainhand, head, feet, curios:ring, etc.)
permanent Bool If true, effect refreshes automatically (for passive)
is_curio Bool Set to true if targeting a Curios slot

📦 Installation

  1. Download the mod and place it in your mods folder.
  2. (Optional) Install Curios API if you want accessory support.
  3. Launch the game.
  4. Create your JSON configs in a datapack (see examples above).
  5. Run /reload in-game to apply changes instantly!

Please join our Discord for support, suggestions, or to share your configs!

Discord

👥 Team & Contributors

Etema
EtemaOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
forgeneoforge
Minecraft Versions
1.21.11.21.21.21.31.21.41.21.51.21.61.21.71.21.8+3 more

🔗 Links

Modrinth Page