Skip to content
John A edited this page Oct 19, 2025 · 1 revision

Overview

Bonds are special narrative PC rules introduced in the Karrakin Trade Baronies supplement. Bond UI will not be shown unless the Karrakin Trade Baronies LCP is installed and activated.

Definition

bonds.json

IBondData: {
  "id": string,
  "name": string,
  "major_ideals": string[],
  "minor_ideals": string[],
  "questions": IQuestionData[],
  "powers": IBondPowerData[]
}

Required Fields

id

Internal identifier. This must be globally unique. See Item ID Guidelines for more information.

name

The display name of the bond.

major_ideals

An array of strings representing the major ideals associated with this bond. Typically an array of 2-5 items.

minor_ideals

An array of strings representing the minor ideals associated with this bond. Typically an array of 2-5 items.

questions

An array of IQuestionData objects representing the PC-answerable questions associated with this bond.

IQuestionData: {
  "question": string,
  "options": string[]
}

question is the text of the question. HTML syntax is allowed.

options is an array of strings representing the suggested answers to the question. HTML syntax is allowed.

powers

An array of IBondPowerData objects representing the special powers granted by this bond.

IBondPowerData: {
  "name": string,
  "description": string
  "frequency"?: string,
  "prerequisite"?: string,
  "veteran"?: boolean,
  "master"?: boolean
  }

name

The display name of the bond power.

description

Rules text for the bond power. HTML syntax is allowed.

frequency

(Optional) The frequency with which this bond power can be used. See Frequency.

prerequisite

(Optional) A description of any prerequisites for this bond power. HTML syntax is allowed.

veteran

(Optional) If true, this bond power is only available to PCs at Veteran status.

master

(Optional) If true, this bond power is only available to PCs at Master status.

Clone this wiki locally