Mob Effect

ID
"cobblebadges:mob_effect"

Gives a permanent Mob Effectarrow-up-right.

Data Structure

{
  "instance": {
    "id": "[mob effect identifier]", // See Mob Effects
    "amplifier": [amount], // Amplifier of 0 will give an effect at lvl 1 etc.
    "ambient": [true | false], // Different background & less particles
    "show_particles": [true | false], // Show or Hide particles when the effect is active
    "show_icon": [true | false] // Icon Shown in inventory
  }
}

Example

Will permanently apply the effect Regeneration 2 without the particles

{
  "instance": {
    "id": "regeneration",
    "ambient": true,
    "show_particles": false,
    "amplifier": 1
  }
}

Last updated