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

    Interface LoadoutModel

    A unit-composition model row, as far as loadout maths cares: its count range, whether it is a leader (taken at a fixed small count), and the weapons every such model carries by default. Pass the unit's unit_composition.models here.

    interface LoadoutModel {
        name?: string;
        min: number;
        max: number;
        default_weapon_ids?: readonly string[];
        is_leader_model?: boolean;
    }
    Index

    Properties

    name?: string

    Model-profile name; matched against an option's model_constraint.model_name.

    min: number
    max: number
    default_weapon_ids?: readonly string[]
    is_leader_model?: boolean