Loom Engine - v3.1.1
    Preparing search index...

    Interface EncounterEntry<T>

    interface EncounterEntry<T = Record<string, unknown>> {
        id: string;
        zones?: string[];
        phases?: string[];
        minLevel?: number;
        maxLevel?: number;
        tags?: string[];
        weight?: number;
        payload: T;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index

    Properties

    id: string
    zones?: string[]
    phases?: string[]
    minLevel?: number
    maxLevel?: number
    tags?: string[]
    weight?: number
    payload: T