Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...
    interface ActorData {
        _id: string | null;
        _stats: DocumentStats;
        effects: ActiveEffectData[];
        flags: DocumentFlags;
        folder: string | null;
        img?: string;
        items: ItemData[];
        name: string;
        ownership: object;
        prototypeToken: PrototypeTokenData;
        sort: number;
        system: object;
        tokenOverrides: TokenOverrides;
        type: string;
    }
    Index

    Properties

    _id: string | null

    The _id which uniquely identifies this Actor document

    An object of creation and access information

    effects: ActiveEffectData[]

    A Collection of ActiveEffect embedded Documents

    An object of optional key/value flags

    folder: string | null

    The _id of a Folder which contains this Actor

    img?: string

    An image file path which provides the artwork for this Actor

    items: ItemData[]

    A Collection of Item embedded Documents

    name: string

    The name of this Actor

    ownership: object

    An object which configures ownership of this Actor

    prototypeToken: PrototypeTokenData

    Default Token settings which are used for Tokens created from this Actor

    sort: number

    The numeric sort value which orders this Actor relative to its siblings

    system: object

    Data for an Actor subtype, defined by a System or Module

    tokenOverrides: TokenOverrides

    A selection of overridable Token properties that can be changed via ActiveEffect or other means during Actor data preparation

    type: string

    An Actor subtype which configures the system data model applied