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
  • damageType
  • amplifier

Was this helpful?

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

Damage Type

Customization Options


damageType

Currently, there are only two acceptable choices:

When the bee attacks, the targeted entity explodes.

When the bee attacks, the target entity is set on fire.


Name: Damage Type

Key: damageType

Type: String

Default: Empty String

Example
{
  "damageTypes": [
    {
      "damageType": "explosive",
      "amplifier": 3
    },
    {
      "damageType": "setOnFire",
      "amplifier": 4
    }
  ]
}

amplifier

The strength of the damage effect.


Name: Amplifier

Key: amplifier

Type: Integer

Range: ≥0

Default: 0

Example
{
  "damageTypes": [
    {
      "damageType": "explosive",
      "amplifier": 3
    }
  ]
}

PreviousDamage EffectNextTrade Data

Last updated 1 year ago

Was this helpful?