Armor
| Field | Type | Required | Description |
|---|---|---|---|
| ac | ArmorClass | required | How the piece contributes to AC (base + capped Dex, or a flat shield bonus). |
| category | ArmorCategory | required | The SRD armor category (light/medium/heavy/shield). |
| cost_cp | uint32 | required | Cost in copper pieces. |
| id | string | required | |
| name | string | required | |
| quality_overrides | TierEffects[] | optional | Per-item quality-profile overrides; absent = the class profile. |
| recipes | Recipe[] | required | The armor's crafting recipes (ORIGINAL content, not SRD). |
| stealth_disadvantage | boolean | required | True = imposes disadvantage on Stealth checks. |
| str_min | integer | optional | Minimum Strength score to wear without a speed penalty; absent = none. |
| weight_lb | double | required | Weight in pounds. |
Nested shapes
Every shape Armor closes over, so this page stands alone.
Ability
The six ability scores (SRD 5.1). The engine's own stats::Ability is the runtime type; this is the data-layer mirror, bridged by [Ability::engine].
StrDexConIntWisChaArmorCategory
The SRD armor categories — light/medium/heavy body armor and the shield.
LightMediumHeavyShieldArmorClass
How a piece of armor contributes to AC: body armor's base + a capped Dexterity, or a flat bonus (a shield).
Base
Body armor: a base AC plus a [DexMod]-capped Dexterity contribution.
| Field | Type | Required | Description |
|---|---|---|---|
| base | uint32 | required | |
| dex | DexMod | required |
Bonus
A flat AC bonus added on top (a shield's +2).
Carries uint32.
CraftTier
The tool-proficiency ladder — one ladder, two homes (this IS the engine's TradeTier).
UntrainedProficientExpertDexMod
The wearer's Dex modifier contribution.
FullMax2NoneQualityTier
The seven quality tiers (semantic — engine code branches on it).
TrashPoorNormalGoodExcellentMasterworkLegendaryRecipe
A recipe embedded on a good/weapon/armor. Craftable IS having recipes — there is no craftable flag (README).
| Field | Type | Required | Description |
|---|---|---|---|
| ability | Ability | optional | The ability whose mod feeds output; absent = untrained extraction. |
| building | string | required | The building TYPE that produces this good (a |
| forbids_terrain | string[] | default [] | The exclusion half of the terrain GATE (see |
| hours | uint32 | required | Labour hours one batch takes. |
| inputs | any[][] | required | The (input, qty) pairs consumed per batch — boot-resolved. EMPTY = raw extraction (nature's own yield): such a recipe names WHERE and HOW FAST a raw is won, carries no |
| rate | double | required | Units per worked hour, before the work multiplier. The recipe carries it, so production truth lives in one place. |
| requires_terrain | string[] | default [] | Terrain GATE: this recipe is wired only at venues whose town bears every |
| strike | Strike | optional | The face's RARE find: each produced unit has |
| terrain_mods | any[][] | default [] | Terrain-tag rate MODIFIERS: the effective production rate at a venue is |
| tier | CraftTier | required | The tool-proficiency floor to run this recipe. |
| tool | string | optional | A goods/ id (e.g. "smiths_tools"); absent = bare hands. |
| yield | uint32 | required | Units the batch yields: one run of |
RecipeInput
A recipe input: a SPECIFIC good (process inputs) or ANY material of a class (constructive inputs — the family wall).
Good
A SPECIFIC good by id — the exact material a process consumes.
Carries string.
Class
ANY good of a material CLASS by id — the constructive input (the family wall): whichever member of the class is on hand.
Carries string.
Strike
A strike table entry: the rare good and its per-unit odds.
| Field | Type | Required | Description |
|---|---|---|---|
| good | string | required | The rare good struck — a goods/ id, boot-resolved. |
| odds | double | required | Per-unit chance (0..1) of striking |
TierEffects
| Field | Type | Required | Description |
|---|---|---|---|
| ac_delta | integer | optional | AC delta at this tier (armor); absent = n/a. |
| attack_delta | integer | optional | Attack-roll delta at this tier (weapons); absent = n/a. |
| damage_delta | integer | optional | Damage delta at this tier (weapons); absent = n/a. |
| dc_delta | integer | optional | Lock DC delta vs the Normal DC 10 base at this tier (locks); absent = n/a. |
| integrity_factor | number | optional | Max-integrity multiplier (the |
| tier | QualityTier | required | The quality tier this row describes. |
| value_factor | double | required | Worth multiplier at this tier (every class). |
| work_factor | number | optional | Work-output multiplier at this tier (tools); absent = n/a. |