MegaStone - Provismet/Gimme-That-Gimmick GitHub Wiki

Describes a complete held item that can be used to perform mega evolution when included in a datapack.

Give Command

/gimme-that-gimmick give <player> megastone <item id>

File Location

data/<namespace>/gimme-that-gimmick/item/megastone/<path>.json

Fields

Field Type Default Description
item DataItem The vanilla item to build and apply data to.
megaEvolution MegaEvolution The mega evolution data to use.
showdownId String The id of the item in Showdown, required for use in battle.

Examples

This example is functionally identitical to Gardevoirite.

{
    "item": {
        "name": "Gardevoirite 2.0",
        "rarity": "rare",
        "tooltip": [
            "The fan favourite."
        ],
        "vanillaItem": "minecraft:emerald"
    },
    "megaEvolution": {
        "pokemon": {
            "formShowdownIds": [
                "normal"
            ],
            "speciesShowdownIds": [
                "gardevoir"
            ]
        }
    },
    "showdownId": "gardevoirite"
}
⚠️ **GitHub.com Fallback** ⚠️