Campaign Creation Documentation

Use this page to navigate the Campaign Creation Documentation. It's not expected that you read all of this to create a campaign - Instead, use this as a reference during campaign creation, whenever you need to use a specific event.






These pages are being restructured and may not be complete!

You can find the older version of this page here.

gate

Description

In a gate event, the user destroys cards they own as a toll.
By default, this is the only functionality.
By using 'chain', rewards can be given when a specific card is destroyed.




Specific Attributes

LinkNameData TypeDescriptionNotes
LINKtolls[ Array of Objects ]Each toll requires destroying specific cards.
LINKremoveRedundant[ Boolean ]If true, impossible tolls will not appear.



Example

"gate": {
    "sacrificeGoat": {
        "tolls": [
            {
                "cost": "Scapegoat",
                "copiesNeeded": 1,
                "chain": "pack:smallReward"
            },
            {
                "cost": "Stray Lambs",
                "copiesNeeded": 1,
                "chain": "pack:smallReward"
            },
            {
                "cost": "Tanngrisnir of the Nordic Beasts",
                "copiesNeeded": 1,
                "chain": "pack:smallReward"
            }
        ]
    }
}