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

    Interface LeveledDef

    interface LeveledDef {
        id: string;
        name: string;
        kind:
            | "auto"
            | "heal"
            | "utility"
            | "spell_attack"
            | "save"
            | "save_utility";
        base_level: number;
        base_dice?: string;
        damage_type?: string;
        save_ability?: string;
        half_on_save?: boolean;
        darts?: number;
        dart_bonus?: number;
        add_ability_to_damage?: boolean;
        applies_tag?: string;
        applies_duration_rounds?: number;
        cures?: string[];
        ritual?: boolean;
        area?: {
            shape: "caster_burst"
            | "target_cluster";
            default_max_targets: number;
        };
    }
    Index

    Properties

    id: string
    name: string
    kind: "auto" | "heal" | "utility" | "spell_attack" | "save" | "save_utility"
    base_level: number
    base_dice?: string
    damage_type?: string
    save_ability?: string
    half_on_save?: boolean
    darts?: number
    dart_bonus?: number
    add_ability_to_damage?: boolean
    applies_tag?: string
    applies_duration_rounds?: number
    cures?: string[]
    ritual?: boolean
    area?: { shape: "caster_burst" | "target_cluster"; default_max_targets: number }