From 4110d79489bb7617654e46b5f0d7c2f5dfbcdf37 Mon Sep 17 00:00:00 2001 From: Cal Corum Date: Tue, 16 Dec 2025 23:20:54 -0600 Subject: [PATCH] Add complete armor compendium (5 items) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Light Armor: 1 armor, 500c, 2 slots, requires Might 3 - Medium Armor: 2 armor, 1000c, 2 slots, requires Might 4 - Heavy Armor: 3 armor, 2000c, 3 slots, requires Might 5 - Light Barding: 1 armor, 1000c, 2 slots (for mounts) - Heavy Barding: 3 armor, 2500c, 3 slots (for mounts) All values match NoteDiscovery source (1g = 10s = 100c) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- packs/_source/armor/heavy-armor.json | 34 ++++++++++++++++++++++++++ packs/_source/armor/heavy-barding.json | 34 ++++++++++++++++++++++++++ packs/_source/armor/light-armor.json | 34 ++++++++++++++++++++++++++ packs/_source/armor/light-barding.json | 34 ++++++++++++++++++++++++++ packs/_source/armor/medium-armor.json | 34 ++++++++++++++++++++++++++ 5 files changed, 170 insertions(+) create mode 100644 packs/_source/armor/heavy-armor.json create mode 100644 packs/_source/armor/heavy-barding.json create mode 100644 packs/_source/armor/light-armor.json create mode 100644 packs/_source/armor/light-barding.json create mode 100644 packs/_source/armor/medium-armor.json diff --git a/packs/_source/armor/heavy-armor.json b/packs/_source/armor/heavy-armor.json new file mode 100644 index 0000000..0cf1779 --- /dev/null +++ b/packs/_source/armor/heavy-armor.json @@ -0,0 +1,34 @@ +{ + "_id": "vagabondArmorHeavy", + "name": "Heavy Armor", + "type": "armor", + "img": "icons/svg/shield.svg", + "system": { + "description": "

Heavy armor includes plate and splint armor. Requires Might 5 or you are Restrained while wearing it.

", + "armorValue": 3, + "armorType": "heavy", + "dodgePenalty": false, + "hindersDodge": true, + "preventsRage": true, + "slots": 3, + "value": 2000, + "equipped": false, + "magicBonus": 0, + "properties": [], + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondArmorHeavy", + "reviewed": true +} diff --git a/packs/_source/armor/heavy-barding.json b/packs/_source/armor/heavy-barding.json new file mode 100644 index 0000000..eef0f11 --- /dev/null +++ b/packs/_source/armor/heavy-barding.json @@ -0,0 +1,34 @@ +{ + "_id": "vagabondArmorHeavyBarding", + "name": "Heavy Barding", + "type": "armor", + "img": "icons/svg/shield.svg", + "system": { + "description": "

Heavy armor for mounts and animal companions.

", + "armorValue": 3, + "armorType": "heavy", + "dodgePenalty": false, + "hindersDodge": false, + "preventsRage": false, + "slots": 3, + "value": 2500, + "equipped": false, + "magicBonus": 0, + "properties": ["barding"], + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondArmorHeavyBarding", + "reviewed": true +} diff --git a/packs/_source/armor/light-armor.json b/packs/_source/armor/light-armor.json new file mode 100644 index 0000000..c4b15f8 --- /dev/null +++ b/packs/_source/armor/light-armor.json @@ -0,0 +1,34 @@ +{ + "_id": "vagabondArmorLight", + "name": "Light Armor", + "type": "armor", + "img": "icons/svg/shield.svg", + "system": { + "description": "

Light armor includes leather, hide, and padded armor. Requires Might 3 or you are Restrained while wearing it.

", + "armorValue": 1, + "armorType": "light", + "dodgePenalty": false, + "hindersDodge": false, + "preventsRage": false, + "slots": 2, + "value": 500, + "equipped": false, + "magicBonus": 0, + "properties": [], + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondArmorLight", + "reviewed": true +} diff --git a/packs/_source/armor/light-barding.json b/packs/_source/armor/light-barding.json new file mode 100644 index 0000000..8a639ad --- /dev/null +++ b/packs/_source/armor/light-barding.json @@ -0,0 +1,34 @@ +{ + "_id": "vagabondArmorLightBarding", + "name": "Light Barding", + "type": "armor", + "img": "icons/svg/shield.svg", + "system": { + "description": "

Light armor for mounts and animal companions.

", + "armorValue": 1, + "armorType": "light", + "dodgePenalty": false, + "hindersDodge": false, + "preventsRage": false, + "slots": 2, + "value": 1000, + "equipped": false, + "magicBonus": 0, + "properties": ["barding"], + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondArmorLightBarding", + "reviewed": true +} diff --git a/packs/_source/armor/medium-armor.json b/packs/_source/armor/medium-armor.json new file mode 100644 index 0000000..f7d7818 --- /dev/null +++ b/packs/_source/armor/medium-armor.json @@ -0,0 +1,34 @@ +{ + "_id": "vagabondArmorMedium", + "name": "Medium Armor", + "type": "armor", + "img": "icons/svg/shield.svg", + "system": { + "description": "

Medium armor includes chain and scale armor. Requires Might 4 or you are Restrained while wearing it.

", + "armorValue": 2, + "armorType": "medium", + "dodgePenalty": false, + "hindersDodge": false, + "preventsRage": false, + "slots": 2, + "value": 1000, + "equipped": false, + "magicBonus": 0, + "properties": [], + "relic": { + "isRelic": false, + "tier": 1, + "abilityName": "", + "abilityDescription": "", + "activationCost": "", + "usesPerDay": 0, + "usesRemaining": 0, + "requiresAttunement": false, + "attuned": false, + "lore": "" + } + }, + "effects": [], + "_key": "!items!vagabondArmorMedium", + "reviewed": true +}