Compatibility
Minecraft: Java Edition
Platforms
Supported environments
Creators
Details
Ever had the thought it would be cool if you could assign specific origins to a special orb? Well now you can! introducing:
Orb'd
Orb'd is an Origins Addon which allows you to define custom Orbs of Origin through Json!
Implementation of data-driven orbs is quite simple and requires very little setup.
How do I define Custom Orbs?
In your datapack, create the following file path:
datapackname/data/namespace/orbs/
this is the file path for all custom orbs, meant to keep them all in one nice place.
Next up is the Json structure, its quite simple & small so no headaches required.
{
"orb_name": "Fire Orb", // Name of Orb
"orb_description": "Grants the powers of a Fire Elemental.", // Description of the orb
"orb": "orbd:fire_orb", // ID of the orb, allows for unique ids (namespace:id)
"origin": "origins:blazeborn", // Origin to turn into (in this case blazeborn)
}
I want Custom Textures though!
Defining custom textures for your custom orb is also pretty simple and only requires basic resource pack knowledge. Orb'd uses minecraft's override system to keep things simple, however a new system will be put into place in the future, but for now this works.
{
"parent": "item/generated", // Original model
"textures": {
"layer0": "origins:item/orb_of_origin" // Original texture
},
"overrides": [
{
"predicate": { "custom_model_data": 42700 }, // Custom model data
"model": "item/fire_orb" // The model
}
]
}
Do note other resource packs may conflict with other ones.
How do I give myself the Custom Orb?
You can use this command to grab your custom orb:
/give @s orbd:generic_orb{OrbId:"orb_id:namespace:id"} 1
You Did it!
And thats it! You've completely defined a custom orb bound to one origin!