vagabond-rpg-foundryvtt/packs/_source/classes/fighter.json
Cal Corum e8370afcc3 Review and correct all 18 class compendium JSONs
- Add skillTraining schema: supports fixed grants and player choices
  e.g., [{ type: "fixed", skills: ["arcana"], count: 1 },
         { type: "choice", skills: ["detect", "influence"], count: 3 }]
- Add weaponTraining schema: ["melee", "ranged"] or []
- Correct all class features, progressions, and descriptions from source
- Fix mana progressions (accumulating values, not flat)
- Replace fabricated D&D-style features with actual Vagabond features
- Add official flavor text from rulebook
- Mark all classes as reviewed: true
- Add reviewed: false to ancestry and perk JSONs for upcoming review
- Add castingMax formula TODO to PROJECT_ROADMAP.json (task 2.15)

Classes corrected: Alchemist, Barbarian, Bard, Dancer, Druid, Fighter,
Gunslinger, Hunter, Luminary, Magus, Merchant, Pugilist, Revelator,
Rogue, Sorcerer, Vanguard, Witch, Wizard

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-16 16:24:59 -06:00

195 lines
5.0 KiB
JSON
Executable File

{
"_id": "vagabondClsFighter",
"_key": "!items!vagabondClsFighter",
"name": "Fighter",
"type": "class",
"img": "icons/svg/sword.svg",
"system": {
"description": "<p>Students of the art of violence. A fighter is defined by their skill with weapons, and large variety of martial techniques.</p>",
"keyStat": "might",
"actionStyle": "attack",
"zone": "frontline",
"weaponTraining": ["melee", "ranged"],
"skillTraining": [
{ "type": "choice", "skills": ["brawl", "finesse"], "count": 1 },
{
"type": "choice",
"skills": ["brawl", "detect", "finesse", "leadership", "sneak"],
"count": 3
}
],
"trainedSkills": [],
"startingPack": "<p>Gladiator, Knight, Warrior, or Watchman</p>",
"isCaster": false,
"progression": [
{
"level": 1,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Fighting Style", "Valor I"]
},
{
"level": 2,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Momentum"]
},
{
"level": 3,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Perk"]
},
{
"level": 4,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Valor II"]
},
{
"level": 5,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Perk"]
},
{
"level": 6,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Muster for Battle"]
},
{
"level": 7,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Perk"]
},
{
"level": 8,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Valor III"]
},
{
"level": 9,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Perk"]
},
{
"level": 10,
"mana": 0,
"castingMax": 0,
"spellsKnown": 0,
"features": ["Harrying"]
}
],
"features": [
{
"name": "Fighting Style",
"level": 1,
"description": "<p>You gain the <strong>Situational Awareness Perk</strong> and another Perk with the Melee or Ranged Training Prerequisite. You can ignore Stat prerequisites for this Perk.</p>",
"passive": true,
"requiresChoice": true,
"choiceType": "perk",
"choiceFilter": {
"prerequisite": ["Melee Training", "Ranged Training"]
},
"changes": []
},
{
"name": "Valor I",
"level": 1,
"description": "<p>The roll required for you to Crit on Attack Checks, and Saves to Dodge or Block Attacks is reduced by 1.</p>",
"passive": true,
"changes": [
{
"key": "system.attacks.melee.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
},
{
"key": "system.attacks.ranged.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
}
]
},
{
"name": "Valor II",
"level": 4,
"description": "<p>Your Valor crit threshold reduction is reduced by 1 more (to -2 total).</p>",
"passive": true,
"changes": [
{
"key": "system.attacks.melee.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
},
{
"key": "system.attacks.ranged.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
}
]
},
{
"name": "Valor III",
"level": 8,
"description": "<p>Your Valor crit threshold reduction is reduced by 1 more (to -3 total).</p>",
"passive": true,
"changes": [
{
"key": "system.attacks.melee.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
},
{
"key": "system.attacks.ranged.critThreshold",
"mode": 2,
"value": "-1",
"priority": 10
}
]
},
{
"name": "Momentum",
"level": 2,
"description": "<p>If you pass a Save against an attack, the next attack you make before the end of your next Turn is Favored.</p>",
"passive": true,
"changes": []
},
{
"name": "Muster for Battle",
"level": 6,
"description": "<p>You have two Actions on your first Turn of Combat.</p>",
"passive": true,
"changes": []
},
{
"name": "Harrying",
"level": 10,
"description": "<p>You can attack twice with the Attack Action, rather than just once.</p>",
"passive": true,
"changes": []
}
],
"customResource": {}
},
"reviewed": true
}