📜
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
  • nimblev2FeatureLimitedUses
  • Example Usage
  1. Document Schema
  2. Nimble v2 schemas

nimblev2-feature

Previousnimblev2-conditionNextnimblev2-minion

Last updated 2 months ago

The nimblev2-feature is used for both monster and character features, including attacks.

Base Schema

Property
Required
Type
Description

description

true

string

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

limitedUses

false

Limitations on how frequently a feature can be used.

nimblev2FeatureLimitedUses

An object containing the following properties.

Property
Required
Type
Description

uses

true

number

The number of uses in a given period.

per

false

string

The period after which resources recharge.

rechargeThreshold

false

number

If a feature has a die-based recharge, this is number required on the d6 to recharge the feature.

Example Usage

{
    "name": "Shocking Bite",
    "type": "nimblev2-feature",
    "description": "1d12+5 (ignores metal armor)."
}
nimblev2FeatureLimitedUses