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.
/gimme-that-gimmick give <player> megastone <item id>
data/<namespace>/gimme-that-gimmick/item/megastone/<path>.json
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. |
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"
}