Pathfinder 1e for Foundry VTT
    Preparing search index...

    Type Alias ConsumableSpellData

    ConsumableSpellData: Prettify<
        { type: "consumable" } & BaseDocumentData & {
            system: {
                actions: Record<string, object>;
                aura: { school: string };
                cl: number;
                description: { value: HTML };
                hardness: number;
                hp: { max: number; value: number };
                identified: boolean;
                price: number;
                sources: object[];
                spellType: SpellKind;
                subType: "wand" | "scroll" | "potion";
                unidentified: { name: string };
                uses: {
                    maxFormula: Formula;
                    per: "single";
                    pricePerUse: number;
                    value: number;
                };
            };
        },
    >