Developers
Landing Page
Custom Bees
Custom Bees
  • Creating A Custom Bee
    • The Custom Bee JSON
    • Core Data
    • Render Data
      • Layer Data
      • Color Data
    • Breed Data
      • Bee Family
    • Combat Data
    • Mutation Data
      • Mutation Recipe
        • Mutation Type
    • Trait Data
      • Bee Aura
      • Potion Effect
      • Damage Effect
      • Damage Type
    • Trade Data
Powered by GitBook
On this page
  • Customization Options
  • effect
  • strength

Was this helpful?

Edit on GitHub
Export as PDF
  1. Creating A Custom Bee
  2. Trait Data

Potion Effect

Customization Options


effect

The ResourceLocation for any registered MobEffect, including modded ones.


Name: Effect

Key: effect

Type: ResourceLocation

Default: minecraft:luck

Example
{
  "auras": [
    {
      "aura": "POTION",
      "potionEffect": {
        "effect": "minecraft:blindness"
      }
    }
  ]
}

strength

The strength of the potion effect.


Name: Strength

Key: strength

Type: Integer

Range: 0 - 4

Default: 1

Example
{
  "auras": [
    {
      "aura": "POTION",
      "potionEffect": {
        "effect": "minecraft:hunger",
        "strength": 2
      }
    }
  ]
}

PreviousBee AuraNextDamage Effect

Last updated 1 year ago

Was this helpful?