Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface AdventureData

    interface AdventureData {
        _id: string | null;
        _stats: DocumentStats;
        actors: ActorData[];
        caption: string;
        cards: CardsData[];
        combats: CombatData[];
        description: string;
        flags: DocumentFlags;
        folders: FolderData[];
        img: string;
        items: ItemData[];
        journal: JournalEntryData[];
        macros: MacroData[];
        name: string;
        playlists: PlaylistData[];
        scenes: SceneData[];
        sort: number;
        tables: RollTableData[];
    }
    Index

    Properties

    _id: string | null

    The _id which uniquely identifies this Adventure document

    An object of creation and access information

    actors: ActorData[]

    An array of included Actor documents

    caption: string

    A string caption displayed under the primary image banner

    cards: CardsData[]

    An array of included Cards documents

    combats: CombatData[]

    An array of included Combat documents

    description: string

    An HTML text description for the adventure

    An object of optional key/value flags

    folders: FolderData[]

    An array of included Folder documents

    img: string

    The file path for the primary image of the adventure

    items: ItemData[]

    An array of included Item documents

    journal: JournalEntryData[]

    An array of included JournalEntry documents

    macros: MacroData[]

    An array of included Macro documents

    name: string

    The human-readable name of the Adventure

    playlists: PlaylistData[]

    An array of included Playlist documents

    scenes: SceneData[]

    An array of included Scene documents

    sort: number

    The sort order of this adventure relative to its siblings

    tables: RollTableData[]

    An array of included RollTable documents