Hierarchy (view full)

Constructors

  • Parameters

    • formula: string

      The string formula to parse

    • Optionaldata: any

      The data object against which to parse attributes within the formula (default: {})

    • Optionaloptions: InexactPartial<EvaluationOptions>

      (default: {})

    Returns RollPF

Accessors

Methods

  • Render the tooltip HTML for a RollPF instance

    Returns Promise<string>

    The rendered HTML tooltip as a string

  • Synchronous and thrown error consuming roll evaluation.

    Parameters

    • formula: string

      Roll formula

    • rollData: object = {}

      Data supplied to roll

    • context: object

      If error occurs, this will be included in the error message.

    • Optionaloptions: {
          suppressError: undefined | boolean;
      } = {}

      Additional options

      • suppressError: undefined | boolean

        If true, no error will be printed even if one occurs.

    • OptionalevalOpts: object = {}

      Additional options to pass to Roll.evaluate()

    Returns Promise<RollPF>

    • Evaluated roll, or placeholder if error occurred.
    • Returned roll has .err set if an error occurred during evaluation.
    • If error occurs, the returned roll will have its formula replaced.
  • Synchronous and thrown error consuming roll evaluation.

    Parameters

    • formula: any

      Roll formula

    • rollData: {} = {}

      Data supplied to roll

      • context: any

        If error occurs, this will be included in the error message.

      • options: {
            suppressError: undefined | boolean;
        } = {}

        Additional options

        • suppressError: undefined | boolean

          If true, no error will be printed

      • evalOpts: {} = {}

        Additional options to pass to Roll.evaluate()

        Returns RollPF

        • Evaluated roll
        • Returned roll has .err set if an error occurred during evaluation.
        • If error occurs, the returned roll will have its formula replaced.