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

    Interface ResourcePool

    A faction's resource system (Miracle Dice, Pain tokens, Blessings dice pool, etc.).

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

    interface ResourcePool {
        id: string;
        name: string;
        faction_id: string;
        pool_type: "token" | "dice-pool" | "counter";
        generation?: {
            condition: AbilityCondition2;
            amount: StatValue;
            [k: string]: unknown;
        }[];
        max_size?: number
        | null;
        game_version: GameVersionReference;
    }
    Index

    Properties

    id: string
    name: string
    faction_id: string
    pool_type: "token" | "dice-pool" | "counter"
    generation?: {
        condition: AbilityCondition2;
        amount: StatValue;
        [k: string]: unknown;
    }[]
    max_size?: number | null
    game_version: GameVersionReference