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

    Interface TargetProfile

    A named target archetype for damage comparison. References a real dataset unit (faction_id + unit_id) rather than copying its stat line, so the profile stays in sync with dataset updates. Stats, keywords, and defensive abilities are resolved from the referenced unit at use time.

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

    interface TargetProfile {
        id: string;
        name: string;
        description?: string;
        faction_id: string;
        unit_id: string;
        model_count_override?: number | null;
        game_version: GameVersionReference;
    }
    Index

    Properties

    id: string
    name: string
    description?: string
    faction_id: string

    Kebab-case identifier

    unit_id: string

    Kebab-case identifier

    model_count_override?: number | null

    Optional non-default squad size for the comparison. When null/absent, the referenced unit's model_count.min is used.

    game_version: GameVersionReference