vagabond-rpg-foundryvtt/system.json
Cal Corum 37300ccf90 Initial project setup for Vagabond RPG Foundry VTT system
- System manifest (system.json) for Foundry v13
- Project structure with module/, templates/, styles/, lang/, packs/
- Docker Compose for local Foundry development environment
- SCSS architecture with parchment theme and accessibility colors
- Base system entry point with CONFIG and Handlebars helpers
- English localization file with all game terms
- Project roadmap with 98 tasks across 11 phases

Phase 0 (Foundation) complete. Ready for Phase 1 (Data Models).

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-12 14:32:15 -06:00

128 lines
2.9 KiB
JSON

{
"id": "vagabond",
"title": "Vagabond RPG",
"description": "A Foundry VTT system implementation for Vagabond RPG - Pulp Fantasy Roleplaying",
"version": "0.1.0",
"compatibility": {
"minimum": "13",
"verified": "13",
"maximum": "13"
},
"authors": [
{
"name": "Cal Corum",
"email": "cal.corum@gmail.com"
}
],
"esmodules": ["module/vagabond.mjs"],
"styles": ["styles/vagabond.css"],
"languages": [
{
"lang": "en",
"name": "English",
"path": "lang/en.json"
}
],
"packs": [
{
"name": "ancestries",
"label": "Ancestries",
"path": "packs/ancestries",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "classes",
"label": "Classes",
"path": "packs/classes",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "spells",
"label": "Spells",
"path": "packs/spells",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "perks",
"label": "Perks",
"path": "packs/perks",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "weapons",
"label": "Weapons",
"path": "packs/weapons",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "armor",
"label": "Armor",
"path": "packs/armor",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "equipment",
"label": "Equipment",
"path": "packs/equipment",
"type": "Item",
"ownership": {
"PLAYER": "OBSERVER",
"ASSISTANT": "OWNER"
}
},
{
"name": "bestiary",
"label": "Bestiary",
"path": "packs/bestiary",
"type": "Actor",
"ownership": {
"PLAYER": "NONE",
"ASSISTANT": "OWNER"
}
}
],
"packFolders": [
{
"name": "Vagabond RPG",
"sorting": "a",
"packs": ["ancestries", "classes", "spells", "perks", "weapons", "armor", "equipment", "bestiary"]
}
],
"socket": false,
"url": "https://github.com/calcorum/vagabond-rpg-foundryvtt",
"manifest": "https://github.com/calcorum/vagabond-rpg-foundryvtt/releases/latest/download/system.json",
"download": "https://github.com/calcorum/vagabond-rpg-foundryvtt/releases/latest/download/vagabond.zip",
"license": "LICENSE",
"readme": "README.md",
"bugs": "https://github.com/calcorum/vagabond-rpg-foundryvtt/issues",
"changelog": "CHANGELOG.md",
"primaryTokenAttribute": "resources.hp",
"secondaryTokenAttribute": "resources.mana",
"gridDistance": 5,
"gridUnits": "ft"
}