mwg API
    Preparing search index...

    Interface MwlEndLevel

    What [endlevel] says when a scenario ends.

    interface MwlEndLevel {
        bonus?: number;
        carryoverAdd?: boolean;
        carryoverPercentage?: number;
        nextScenario?: string | null;
        result: "victory" | "defeat";
    }
    Index
    bonus?: number

    bonus: gold added on top of the share, not a share of it

    carryoverAdd?: boolean

    carryover_add: add the share to the next scenario's gold rather than take the larger of them

    carryoverPercentage?: number

    carryover_percentage: the share of the side's gold kept, 80 when unset

    nextScenario?: string | null

    next_scenario: where the campaign goes instead of the authored chain, null to end it

    result: "victory" | "defeat"