@alpaca-software/40kdc-data
    Preparing search index...

    Interface Stratagem

    A CP-costed ability usable during specific game phases.

    This interface was referenced by 0KdcBundledSchemas's JSON-Schema via the definition "stratagem".

    interface Stratagem {
        id: string;
        name: string;
        category: "core" | "detachment";
        type: "battle-tactic" | "strategic-ploy" | "epic-deed" | "wargear";
        detachment_id?: string | null;
        cp_cost: number;
        phases: PhaseList;
        player_turn: PlayerTurn;
        timing:
            | "once-per-phase"
            | "once-per-turn"
            | "once-per-battle"
            | "unlimited";
        target_restrictions?: | {
            required_keywords?: KeywordList;
            excluded_keywords?: KeywordList;
            notes?: string;
        }
        | null;
        ability_id?: string
        | null;
        game_version: GameVersionReference;
    }
    Index

    Properties

    id: string
    name: string
    category: "core" | "detachment"

    Whether this is a universal core stratagem or tied to a specific detachment

    type: "battle-tactic" | "strategic-ploy" | "epic-deed" | "wargear"

    GW-printed stratagem category from the card

    detachment_id?: string | null

    Null for core stratagems

    cp_cost: number
    phases: PhaseList
    player_turn: PlayerTurn
    timing: "once-per-phase" | "once-per-turn" | "once-per-battle" | "unlimited"
    target_restrictions?:
        | {
            required_keywords?: KeywordList;
            excluded_keywords?: KeywordList;
            notes?: string;
        }
        | null
    ability_id?: string | null
    game_version: GameVersionReference