Interface StatProps

Source
interface StatProps {
    category: string;
    description: string;
    displayPriorityInCategory?: number;
    hideAtValue?: number;
    label: string;
    name: string;
    scenarioRandomizable?: boolean;
    show: Partial<
        {
            animals?: boolean;
            developmentalStageFilter?: string;
            drones?: boolean;
            entities?: boolean;
            modsLoaded?: string[];
            undefined?: boolean;
        },
    >;
    value: {
        default: number;
        max?: number;
        min?: number;
        style?: ToStringStyle;
    };
}

Properties§

Source§

category: string

Source§

description: string

Source§

displayPriorityInCategory?: number

Source§

hideAtValue?: number

Source§

label: string

Source§

name: string

Source§

scenarioRandomizable?: boolean

Source§

show: Partial<
    {
        animals?: boolean;
        developmentalStageFilter?: string;
        drones?: boolean;
        entities?: boolean;
        modsLoaded?: string[];
        undefined?: boolean;
    },
>

Source§

value: { default: number; max?: number; min?: number; style?: ToStringStyle }