📜
OBR Compendium Browser Documentation
  • OBR Compendium Browser
  • Getting Started
    • Quickstart
  • Content
    • Preconfigured content
      • Free packs
      • Purchasable packs
    • Custom content
  • Document Schema
    • The compendium schema
    • The base document schema
    • The document source schema
    • Nimble v2 schemas
      • nimblev2-boon
      • nimblev2-condition
      • nimblev2-feature
      • nimblev2-minion
      • nimblev2-monster
      • nimblev2-object
      • nimblev2-solo-monster
      • nimblev2-spell
  • Support
    • Funding Links
Powered by GitBook
On this page
  • Base Schema
  • Example Usage
  1. Document Schema
  2. Nimble v2 schemas

nimblev2-boon

The nimblev2-boon schema is used to represent boons: essentially Nimble's answer to D&D feats.

Base Schema

Property
Required
Type
Description

description

true

true

The effects of the condition. HTML is permitted in this field, allowing for more control over the description appearance.

boonType

true

"minor" | "major" | "epic"

The tier of the boon.

Example Usage

{
    "name": "Veteran",
    "type": "nimblev2-boon",
    "boonType": "major",
    "description": "+10HP."
}
PreviousNimble v2 schemasNextnimblev2-condition

Last updated 2 months ago