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

    Interface DicePoolAllocationEffect

    This interface was referenced by 0KdcBundledSchemas's JSON-Schema via the definition "dice-pool-allocation-effect".

    interface DicePoolAllocationEffect {
        type: "dice-pool-allocation";
        pool: { count: number; die: string; [k: string]: unknown };
        max_activations: number;
        options: [
            {
                name: string;
                requirement: {
                    type: "pair"
                    | "triple"
                    | "single"
                    | "run";
                    min_value: number;
                    [k: string]: unknown;
                };
                effect: EffectNode;
                [k: string]: unknown;
            },
            ...{
                name: string;
                requirement: {
                    type: "pair"
                    | "triple"
                    | "single"
                    | "run";
                    min_value: number;
                    [k: string]: unknown;
                };
                effect: EffectNode;
                [k: string]: unknown;
            }[],
        ];
        [k: string]: unknown;
    }

    Indexable

    • [k: string]: unknown
    Index

    Properties

    type: "dice-pool-allocation"
    pool: { count: number; die: string; [k: string]: unknown }
    max_activations: number
    options: [
        {
            name: string;
            requirement: {
                type: "pair"
                | "triple"
                | "single"
                | "run";
                min_value: number;
                [k: string]: unknown;
            };
            effect: EffectNode;
            [k: string]: unknown;
        },
        ...{
            name: string;
            requirement: {
                type: "pair"
                | "triple"
                | "single"
                | "run";
                min_value: number;
                [k: string]: unknown;
            };
            effect: EffectNode;
            [k: string]: unknown;
        }[],
    ]

    1