Magical Scepter

Spell Definition

Spells are stored as JSON files within a data pack in the path data/<namespace>/magicalscepter/spell.

  • {}: Root object.
    • []{} casts: Cast components.
      • []{} effects: Effect components - Controls the effect of the spell.
        • "" type: Effect type specified by ID.
        • + Additional fields based on effect type.
      • []{} transformers: Transformer components - Controls the context of the spell.
        • "" type: Transformer type specified by ID.
        • + Additional fields based on transformer type.
    • I cooldown: Non negative integer - Duration of casting cooldown in ticks afterthe spell is cast.
    • @ description: Text component - Tooltip description for the spell.
Example JSON
{
"casts": [
{
"effects": [
{
"type": "magicalscepter:play_sound",
...
}
]
},
{
"effects": [
{
"type": "magicalscepter:summon_entity",
...
}
],
"transformers": [
{
"type": "magicalscepter:move",
...
}
]
}
],
"cooldown": 100,
"description": {
"translate": "spell.magicalscepter.dragon_fireball"
}
}

Effect

...

Transformer

...