Orbs Data

So in the end, the structure of an orb should look something of the sort:

{
  "OrbData": {
    "type": "healing",
    "effectMultiplier": 2,
    "texture": "pickableorbs:textures/entity/plain_orb.png",
    "color": "#FF0046",
    "blockList": ["minecraft:spawner"],
    "blockListType": "whitelist",
    "blockDropChance": 30.0,
    "entityList": ["minecraft:pig", "minecraft:sheep"],
    "entityListType": "blacklist",
    "entityDropChance": 15.5
  },
  "ExtraData": {
    "pickup-message": "You've picked up a health orb!",
    "animation": false,
    "sound": true,
    "follow-player": false,
    "pickup-delay": 10
  }
}

Orbs Data - what do they mean????

Well let's start with the OrbData field first, there we can have:

Ok that's all for that field, let's do the ExtraData field now:

Last updated

Was this helpful?