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

    Interface Detachment

    A detachment option within a faction, providing a detachment rule, enhancements, and stratagems.

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

    interface Detachment {
        id: string;
        name: string;
        faction_id: string;
        detachment_rule_id?: string | null;
        detachment_points?: number | null;
        force_dispositions?: string[];
        enhancement_ids?: string[];
        stratagem_ids?: string[];
        restrictions?:
            | {
                required_keywords?: KeywordList;
                excluded_keywords?: KeywordList;
                notes?: string;
            }
            | null;
        game_version: GameVersionReference;
    }
    Index

    Properties

    id: string
    name: string
    faction_id: string
    detachment_rule_id?: string | null
    detachment_points?: number | null

    11e: the detachment-point cost (1–3) charged against the army's detachment-point budget. null when not yet assigned.

    force_dispositions?: string[]

    11e: ids of the Force Disposition entities this detachment grants. Empty until assigned.

    enhancement_ids?: string[]
    stratagem_ids?: string[]
    restrictions?:
        | {
            required_keywords?: KeywordList;
            excluded_keywords?: KeywordList;
            notes?: string;
        }
        | null
    game_version: GameVersionReference