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

    Interface BaseSize

    A model's base. 'round' carries 'diameter'; 'oval' carries 'width'+'length'. 'flying-base' (with 'size': small/large), 'hull', and 'unique' are categories the GW base-size guide gives without standard millimetre dimensions; entries carrying such a category, or any millimetre value not taken from an authoritative source, set 'draft': true to mark them for later hand-authoring.

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

    interface BaseSize {
        shape: "round" | "oval" | "flying-base" | "hull" | "unique";
        diameter?: number;
        width?: number;
        length?: number;
        size?: "small" | "large";
        draft?: boolean;
    }
    Index

    Properties

    shape: "round" | "oval" | "flying-base" | "hull" | "unique"
    diameter?: number
    width?: number
    length?: number
    size?: "small" | "large"

    Flying-base size class, when 'shape' is 'flying-base'.

    draft?: boolean

    True when the entry is provisional/guessed (e.g. a category without authoritative dimensions) and should be revisited.