Core Data
The core customization component is responsible for defining four key aspects of nearly every bee imaginable:
the flower(s) which a bee uses for pollination
the base amount of time the bee spends in the hive
associated lore
the honeycombs produced, if any
"resourcefulbees:core/v1": {
"entityFlower": [
"minecraft:cow",
"minecraft:sheep"
],
"maxTimeInHive": 4000,
"lore": [
{
"text": "This bee is a dummy and does not exist"
},
{
"text": "Bee happy...--``-..-``---."
}
],
"honeycombVariation": "dummy_honeycomb",
"flower": [
"minecraft:diamond_block",
"minecraft:emerald_block"
]
}Identifier
The root JSON of the core customization component looks like this:
"resourcefulbees:core/v1": {
...
}The identifier of the component is as such:
resourcefulbees:core/v1Customization Options
honeycombVariation
honeycombVariationThe identifier of the honeycomb variation produced by the bee. More information about honeycomb variation can be found in the Custom Honeycombs section.
flower
flowerSpecifies what flower(s) the bee can pollinate. With the use of Miscellaneous, the syntax will vary based on the definition. The flower can be defined as a tag, a list of blocks, or a single block. See the examples below for further understanding.
"resourcefulbees:core/v1": {
"flower": "#minecraft:flowers"
}"resourcefulbees:core/v1": {
"flower": [
"minecraft:diamond_block",
"minecraft:emerald_block"
]
}"resourcefulbees:core/v1": {
"flower": "minecraft:diamond_block"
}entityFlower
entityFlowerWhen the flower a bee can pollinate is an entity, entityflower must be used instead. The syntax used remains the same as blocks. See the examples below for further understanding.
"resourcefulbees:core/v1": {
"entityFlower": "#minecraft:raiders"
}"resourcefulbees:core/v1": {
"entityFlower": [
"minecraft:pig",
"minecraft:cow"
]
}"resourcefulbees:core/v1": {
"entityFlower": "minecraft:cow"
}maxTimeInHive
maxTimeInHiveThe base amount of time a bee spends in a hive. This value is modified based on the hive tier.
lore
loreLore is cosmetic text displayed in JEI tooltips when hovering over the bee with the cursor. It can be extremely useful for providing players with hints on how to obtain the bee or it can be useful for memes and credits.
Last updated
Was this helpful?