FormChangeFusionDataItem - Provismet/Gimme-That-Gimmick GitHub Wiki

Describes how to create a data-driven fusion item. These items always have the minecraft id of gimme-that-gimmick:data_driven_fusion, regardless of the clientside representation of the item.

Give Command

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

File Location

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

Fields

Field Type Default Description
item DataItem The clientside representation of the item.
fusion Fusion The fusion to perform.

Examples

Using the same example from Fusion, this would create an entire item that functions the same as the DNA Splicers.

{
    "fusion": {
        "defaultFeatures": {
            "absofusion": "none"
        },
        "inputFeatures": [
            {
                "absofusion": "white"
            },
            {
                "absofusion": "black"
            }
        ],
        "inputPokemon": [
            {
                "speciesShowdownIds": [
                    "reshiram"
                ]
            },
            {
                "speciesShowdownIds": [
                    "zekrom"
                ]
            }
        ],
        "recipient": {
            "speciesShowdownIds": [
                "kyurem"
            ]
        }
    },
    "item": {
        "customModelData": 20,
        "name": "Example DNA Splicers",
        "rarity": "epic",
        "tooltip": [
            "Tooltip line 1",
            "Tooltip line 2"
        ],
        "vanillaItem": "minecraft:paper"
    }
}
⚠️ **GitHub.com Fallback** ⚠️