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

    Interface GetItemOptions

    interface GetItemOptions {
        actor: ActorPF;
        document: boolean;
        empty: boolean;
        filterFunc: function;
        items: Item<"base" | ModuleSubType>[];
        subType: string;
        type: string;
    }

    Hierarchy

    • ItemSelectorOptions
      • GetItemOptions
    Index

    Properties

    actor: ActorPF

    Actor from which to get items from.

    document: boolean

    Return document. If false, return document ID.

    empty: boolean

    Allow empty selection (none, as is were).

    true

    filterFunc: function

    Filtering callback function.

    items: Item<"base" | ModuleSubType>[]

    Item list to get item from. Used only if actor is undefined.

    subType: string

    Basic filter for item subtype, unused if filterFunc is provided.

    type: string

    Basic filter for item type, unused if filterFunc is provided.