Export format
Icarus strategies are exported as.ica files, which are ZIP archives containing:
- A JSON file with all strategy data (pages, drawings, agents, abilities, etc.)
- Image files referenced in the strategy
- Metadata including version number and map information
The
.ica format is proprietary to Icarus but uses standard ZIP compression, making it lightweight and portable.Exporting a single strategy
Share an individual strategy file:Open or select the strategy
Either open the strategy you want to export, or right-click it in your library.
Choose save location
A file picker opens. Choose where to save the
.ica file and optionally rename it.Exporting folders
Export multiple strategies at once by exporting an entire folder:
The folder export preserves your folder structure:
- Each strategy becomes a
.icafile - Folders become directories in the ZIP
- Nested folders are preserved
- Duplicate folder names get numbered suffixes
File naming and sanitization
When exporting, Icarus sanitizes file names:- Invalid characters (
< > : " / \ | ? *) are replaced with underscores - Empty names become “untitled”
- Duplicate names in the same export get numbered suffixes
Sharing strategies
Once exported, share your.ica files with teammates:
- Direct file sharing: Send via Discord, email, cloud storage, or USB drive
- Team drives: Store in shared folders like Google Drive or Dropbox
- Version control: Track changes to strategies in Git (though binary diffs are not meaningful)
Legacy format support
Icarus maintains backward compatibility:- Old strategies without the pages system are automatically migrated on import
- Legacy image embedding is converted to the modern file-based system
- Version numbers track format changes
- Strategies from older Icarus versions open seamlessly
The current version number is stored in
Settings.versionNumber. Strategies are migrated to the latest version when opened.Export data structure
The JSON inside an.ica file contains:
Technical details
Image handling
Images are stored efficiently:- Original images are saved in the strategy’s support directory
- Image IDs reference files, not embedded data (except on web)
- Unused images are cleaned up when loading strategies
- Export includes only referenced images
ZIP structure
An exported.ica file contains:
Compression
The ZIP format provides:- Efficient compression of JSON text data
- Already-compressed images stored without re-compression
- Fast random access to individual files
- Wide compatibility across platforms