Add Pokemon Legends: Z-A to the game list

Add version group entry with region_id 0 (no PokeAPI region) and region
"lumiose". The Go fetch tool now skips route fetching for region_id 0 so
manually provided data won't be overwritten by re-runs. Includes
placeholder data file and box art.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-07 21:56:50 +01:00
parent 3934167139
commit 1884a085f3
6 changed files with 39 additions and 1 deletions

View File

@@ -132,6 +132,10 @@ func main() {
pokeIDCollector := NewPokeIDCollector()
for vgKey, vgInfo := range *versionGroups {
if vgInfo.RegionID == 0 {
fmt.Printf("\nSkipping %s (no PokeAPI region, data managed manually)\n", vgKey)
continue
}
for _, verName := range vgInfo.Versions {
routes, err := processVersion(ctx, client, verName, vgInfo, vgKey, routeOrder, specialEnc, pokeIDCollector)
if err != nil {