To create your own squad, it is enough to:

  1. Create an empty file with the .json extension.
  2. Copy the example provided below into this new empty file.
  3. Modify the example however you like. Including adding/deleting objects inside of the “units” fields.

{
    "array": [
        {
            "id": "squad_unique_sid",
            "useOldSquads": false,
            "rollChance": 0,
            "canBeMainGuard": true,
            "baseSquad": {
                "units": [
                    {
                        "s": "esquire",
                        "v": 1000
                    },
                    {
                        "s": "crossbowman",
                        "v": 250
                    },
                    {
                        "s": "lightweaver",
                        "v": 1
                    }
                ]
            },
            "dynamicSquad": {
                "requiredValue": 0,
                "units": [
                    "esquire",
                    "crossbowman",
                    "lightweaver"
                ]
            },
            "randomSquad": {
                "maxValue": 500000,
                "units": [
                    {
                        "s": "esquire",
                        "v": 100000
                    },
                    {
                        "s": "crossbowman",
                        "v": 150000
                    },
                    {
                        "s": "lightweaver",
                        "v": 250000
                    }
                ]
            },
            "tier": 4,
            "fraction": "human"
        }
    ]
}