mwg API
    Preparing search index...

    Interface MwlCarryover

    What one scenario hands to the next. Plain data, so it survives a save.

    interface MwlCarryover {
        add: boolean;
        gold: number;
        nextScenario: string | null;
        recall: readonly string[];
        result: "victory" | "defeat";
    }
    Index
    add: boolean

    whether the share is added to the next scenario's gold or taken as a floor under it

    gold: number

    the gold handed on: the side's share, plus the bonus

    nextScenario: string | null

    where the campaign goes next; null ends it

    recall: readonly string[]

    ids of the side's units still standing, which become the recall list

    result: "victory" | "defeat"