extraAttacks: {
    advanced: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    };
    custom: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    };
    flurry: {
        bonus: string;
        count: string;
        flavor: string;
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    };
    standard: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    };
    unflurry: {
        bonus: string;
        count: string;
        flavor: string;
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    };
} = ...

Extra Attacks configurations

Type declaration

  • advanced: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    }
    • formula: boolean
    • iteratives: boolean
    • label: string
    • manual: boolean
  • custom: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    }
    • formula: boolean
    • iteratives: boolean
    • label: string
    • manual: boolean
  • flurry: {
        bonus: string;
        count: string;
        flavor: string;
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    }
    • bonus: string
    • count: string
    • flavor: string
    • formula: boolean
    • iteratives: boolean
    • label: string
    • manual: boolean
  • standard: {
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    }
    • formula: boolean
    • iteratives: boolean
    • label: string
    • manual: boolean
  • unflurry: {
        bonus: string;
        count: string;
        flavor: string;
        formula: boolean;
        iteratives: boolean;
        label: string;
        manual: boolean;
    }
    • bonus: string
    • count: string
    • flavor: string
    • formula: boolean
    • iteratives: boolean
    • label: string
    • manual: boolean

Example

Custom additional option

turboMonk: {
label: "Turbo Monk",
iteratives: true,
count: "floor(@bab / 3)",
bonus: "@attackCount * -2",
manual: true,
}

Generated using TypeDoc