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
  • Identifier
  • Customization Options
  • auraRange
  • traits

Was this helpful?

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

Trait Data

A unique feature to Resourceful Bees. traits group together:

  • Particle Effects

  • Damage and Potion Immunities

  • Damage Types and Potion Effects

  • Special Abilities

  • and Auras

Traits enable users to breathe life into infinite variations of bees that can be godly, pesky, helpful, or just downright evil.

Template:
"resourcefulbees:trait/v1": {
  "auraRange": 20,
  "traits": ["nether", "wither"]
}

Identifier


The root JSON of the trait customization component looks like this:

"resourcefulbees:trait/v1": {
    ...
}

The identifier of the component is as such:

resourcefulbees:trait/v1

Customization Options


auraRange

The range within which players would be affected by the aura. This value is the number of blocks.


Name: Aura Range

Key: auraRange

Type: Integer

Range: 3 - 20

Default: 10

Example
"resourcefulbees:trait/v1": {
  "auraRange": 20
}

traits

The list of traits given to the bee.


Name: Traits List

Key: traits

Type: String[]

Default: Optional/Empty

Example
"resourcefulbees:trait/v1": {
  "traits": ["nether", "wither"]
}

PreviousMutation TypeNextBee Aura

Last updated 1 year ago

Was this helpful?