matches:
  - triggers: [".roll d2", ".r d2"]
    word: true
    replace: "d2: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
  - triggers: [".roll d3", ".r d3"]
    word: true
    replace: "d3: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
  - triggers: [".roll d4", ".r d4"]
    word: true
    replace: "d4: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
            - "4"
  - triggers: [".roll d6", ".r d6"]
    word: true
    replace: "d6: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
            - "4"
            - "5"
            - "6"
  - triggers: [".roll d8", ".r d8"]
    word: true
    replace: "d8: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
            - "4"
            - "5"
            - "6"
            - "7"
            - "8"
  - triggers: [".roll d10", ".r d10"]
    word: true
    replace: "d10: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
            - "4"
            - "5"
            - "6"
            - "7"
            - "8"
            - "9"
            - "10"
  - triggers: [".roll d12", ".r d12"]
    word: true
    replace: "d12: {{output}}"
    vars:
      - name: output
        type: random
        params:
          choices:
            - "1"
            - "2"
            - "3"
            - "4"
            - "5"
            - "6"
            - "7"
            - "8"
Show more