Fantasy Grounds Character Extractor
A powerful Go CLI tool that parses Fantasy Groundsdb.xml campaign files and extracts individual character sheets into separate, portable XML files.
Overview
Fantasy Grounds Character Extractor simplifies character sheet management by allowing you to extract character data from your campaign’sdb.xml file. Whether you’re backing up characters, sharing them between campaigns, or analyzing character data, this tool makes it effortless.
The tool intelligently parses the Fantasy Grounds XML structure, filters out unnecessary metadata, and generates clean character files with the naming convention character_<ID>_<Level>.xml.
Key Features
Zero Dependencies
Built using only Go’s standard library. No external dependencies means faster installation and fewer compatibility issues.
Smart Filtering
Automatically removes sensitive and unnecessary tags like
<public> and <holder> information during extraction.Skill Calculation
Automatically calculates skill totals based on ability bonuses and proficiency bonuses, injecting them into the character XML.
Cross-Platform
Pre-built binaries available for macOS (Intel & Apple Silicon), Windows, and Linux. Works everywhere Go runs.
Preserves Structure
Maintains original XML formatting and structure while ensuring proper character encoding and escaping.
Batch Processing
Extracts all characters from a campaign file in a single command. Perfect for backing up entire campaigns.
Use Cases
Campaign Backup
Regularly extract character sheets to create version-controlled backups of your player characters.Character Portability
Move characters between campaigns by extracting them from onedb.xml and importing into another.
Data Analysis
Extract character data for statistical analysis, character progression tracking, or campaign management tools.Character Sharing
Share individual character files with other game masters or players without exposing your entire campaign.How It Works
- Parse: The tool uses Go’s
encoding/xmlpackage to parse the Fantasy Groundsdb.xmlfile - Filter: Removes unnecessary tags and metadata while preserving character data
- Enhance: Calculates skill totals based on ability bonuses and proficiency
- Extract: Writes each character to a separate XML file with proper formatting
The tool generates files in the format
character_<ID>_<Level>.xml, where ID is the Fantasy Grounds internal ID and Level is the character’s current level.Get Started
Ready to extract your characters? Follow our quickstart guide to get up and running in minutes.Quickstart Guide
Extract your first character in under 2 minutes
Technical Details
- Language: Go 1.25.7+
- License: MIT
- Dependencies: Standard library only
- Platforms: macOS, Windows, Linux