This project aims to provide a community-driven repository of all Common and Rare (non-unique) cards from the Altered TCG, available in all supported languages.
The purpose is to reduce unnecessary load on the official Altered API servers.
Since repeated API calls may trigger throttling or overload, we recommend using this local JSON database first before sending new HTTP requests to the official API.
Files are stored using the following path pattern :
./
βββ CARDS/ # All cards grouped here
β βββ EN/ # Cards language folder
β β βββ CORE/ # Set folder (set code as name)
β β β βββ AX/ # Faction folder (faction code as name)
β β β β βββ ALT_CORE_A_AX_22_C.json # JSON file per card
β β β β βββ ...
β β β βββ ...
β β βββ ...
β βββ ...
β
βββ SETS/ # All sets grouped here
β βββ CORE/ # Set folder (set code as name)
β β βββ CORE_EN.json # JSON file per language
β β βββ ...
β βββ ...
β
βββ META/ # Metadata about cards & filters
β βββ card_sets_en.json
β βββ filter_data_en.json
β βββ ...
β
βββ HISTORY/ # English-only history of card changes
β βββ cards_history_CORE.json
β βββ ...
βββ ...- CARDS β Contains all individual card files, grouped by language, then by set code, then by faction code.
- SETS β Contains all card data grouped by set code, each set has its own folder, and inside, one file per language.
- META β Contains only metadata (types, sets, factions, rarities, etc.).
- HISTORY β Contains versioned history of card changes (English only, per set).
- English (
EN) - French (
FR) - Spanish (
ES) - Italian (
IT) - German (
DE)
Each file inside SETS/ and CARDS/ contains the exact JSON structure returned by the official Altered API, with no modification to the schema (only separated by set and language).
The only manually added information is the collectorNumber, which is no longer present in the JSON data returned by the API.
Card images are available here : https://drive.google.com/drive/folders/1cVqqV2HCRXk9PtipW144H-i7ObmG9TXy?usp=sharing
MIT License β feel free to use, share, and improve.
Please credit the community and the Altered TCG project.