Collection of datasets for One Piece TCG.
The data in this repository has been obtained using the vegapull scraper CLI.
Datasets are categorized by language and contain JSON data for all TCG cards:
packs.json
: contains the list of packscards_{PACK-ID}.json
: contains the list of cards for packPACK-ID
Example:
data/
βββ english/
β βββ cards_569001.json
β βββ cards_569002.json
β βββ ...
β βββ cards_569901.json
β βββ packs.json
βββ japanese/
βββ cards.json
NOTE: The current data for the japanese version was fetched using an older version of the CLI where all of the data
was put in a single JSON file (cards.json
).
Storing images directly on GitHub is not the best approach. Instead, these images are zipped into an archive and can be downloaded along with the latest release.
- π¬π§ English: April 27, 2025
- π―π΅ Japan: August 31, 2024
I had some trouble when fetching data for the japanese version:
- Wrong formatting/missing data for
colors
orcounter
values on some cards - Duplicate cards with same data and art
These issues are with the original data itself and I did not find a clean/reliable way to handle them.
I tried to patch them by writing some custom code when fetching data for the jp
version.
Fortunately, the english
version does not seem to suffer from these problems.
So, keep this in mind when picking a dataset. I would recommend working with the english
dataset.