feature/boss-sprites-and-badges #22
@@ -0,0 +1,26 @@
|
||||
---
|
||||
# nuzlocke-tracker-yfi8
|
||||
title: Fetch boss battle sprites from Bulbapedia
|
||||
status: in-progress
|
||||
type: task
|
||||
priority: normal
|
||||
created_at: 2026-02-14T09:14:32Z
|
||||
updated_at: 2026-02-14T09:24:28Z
|
||||
---
|
||||
|
||||
## Overview
|
||||
|
||||
Write and run a one-time script to download boss battle trainer sprites from Bulbapedia's archives. For totem pokemon, link to existing pokemon sprites instead.
|
||||
|
||||
## Current State
|
||||
- 10 game directories have sprites (122 files total): red, yellow, gold, crystal, ruby, emerald, firered, diamond, heartgold, omega-ruby
|
||||
- 11 game directories are completely missing: black, black-2, platinum, x, sun, ultra-sun, lets-go-pikachu, sword, brilliant-diamond, legends-arceus, scarlet
|
||||
- 11 boss entries have null sprite_url (firered Elite Four + heartgold Elite Four/Red)
|
||||
|
||||
## Checklist
|
||||
- [x] Write download script with Bulbapedia image URL patterns
|
||||
- [x] Download sprites for all missing games
|
||||
- [x] Fill in null sprite_url entries for firered/heartgold
|
||||
- [x] Handle totem pokemon by linking to existing pokemon sprites
|
||||
- [x] Handle special cases (multi-boss entries, Legends Arceus nobles)
|
||||
- [x] Update seed JSON files with correct local paths
|
||||
@@ -10,7 +10,7 @@
|
||||
"after_route_name": "Violet City",
|
||||
"location": "Violet Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/falkner.png",
|
||||
"sprite_url": "/boss-sprites/crystal/falkner.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -24,7 +24,7 @@
|
||||
"after_route_name": "Slowpoke Well",
|
||||
"location": "Azalea Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/bugsy.png",
|
||||
"sprite_url": "/boss-sprites/crystal/bugsy.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
"after_route_name": "Goldenrod City",
|
||||
"location": "Goldenrod Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/whitney.png",
|
||||
"sprite_url": "/boss-sprites/crystal/whitney.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -52,7 +52,7 @@
|
||||
"after_route_name": "Ecruteak City",
|
||||
"location": "Ecruteak Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/morty.png",
|
||||
"sprite_url": "/boss-sprites/crystal/morty.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"after_route_name": "Cianwood City",
|
||||
"location": "Cianwood Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/chuck.png",
|
||||
"sprite_url": "/boss-sprites/crystal/chuck.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -80,7 +80,7 @@
|
||||
"after_route_name": "Cianwood City",
|
||||
"location": "Olivine Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/jasmine.png",
|
||||
"sprite_url": "/boss-sprites/crystal/jasmine.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@
|
||||
"after_route_name": "Lake of Rage",
|
||||
"location": "Mahogany Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/pryce.png",
|
||||
"sprite_url": "/boss-sprites/crystal/pryce.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
"after_route_name": "Blackthorn City",
|
||||
"location": "Blackthorn Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/clair.png",
|
||||
"sprite_url": "/boss-sprites/crystal/clair.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@
|
||||
"after_route_name": "Victory Road (Kanto)",
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/will.png",
|
||||
"sprite_url": "/boss-sprites/crystal/will.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@
|
||||
"after_route_name": "Victory Road (Kanto)",
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/koga.png",
|
||||
"sprite_url": "/boss-sprites/crystal/koga.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@
|
||||
"after_route_name": "Victory Road (Kanto)",
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/bruno.png",
|
||||
"sprite_url": "/boss-sprites/crystal/bruno.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@
|
||||
"after_route_name": "Victory Road (Kanto)",
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/karen.png",
|
||||
"sprite_url": "/boss-sprites/crystal/karen.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@
|
||||
"after_route_name": "Victory Road (Kanto)",
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/gold/lance.png",
|
||||
"sprite_url": "/boss-sprites/crystal/lance.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -192,7 +192,7 @@
|
||||
"after_route_name": "Vermilion City",
|
||||
"location": "Vermilion Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/lt-surge.png",
|
||||
"sprite_url": "/boss-sprites/crystal/lt-surge.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -206,7 +206,7 @@
|
||||
"after_route_name": "Route 05 (Kanto)",
|
||||
"location": "Saffron Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/sabrina.png",
|
||||
"sprite_url": "/boss-sprites/crystal/sabrina.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -220,7 +220,7 @@
|
||||
"after_route_name": "Cerulean Cave (B1F)",
|
||||
"location": "Cerulean Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/misty.png",
|
||||
"sprite_url": "/boss-sprites/crystal/misty.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -234,7 +234,7 @@
|
||||
"after_route_name": "Celadon City",
|
||||
"location": "Celadon Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/erika.png",
|
||||
"sprite_url": "/boss-sprites/crystal/erika.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -248,7 +248,7 @@
|
||||
"after_route_name": "Fuchsia City",
|
||||
"location": "Fuchsia Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/janine.png",
|
||||
"sprite_url": "/boss-sprites/crystal/janine.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -262,7 +262,7 @@
|
||||
"after_route_name": "Pewter City",
|
||||
"location": "Pewter Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/brock.png",
|
||||
"sprite_url": "/boss-sprites/crystal/brock.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -276,7 +276,7 @@
|
||||
"after_route_name": "Cinnabar Island",
|
||||
"location": "Cinnabar Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/blaine.png",
|
||||
"sprite_url": "/boss-sprites/crystal/blaine.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -290,7 +290,7 @@
|
||||
"after_route_name": "Viridian City",
|
||||
"location": "Viridian Gym",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/blue.png",
|
||||
"sprite_url": "/boss-sprites/crystal/blue.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -304,7 +304,7 @@
|
||||
"after_route_name": "Mt. Silver (Cave Full Restore Chamber)",
|
||||
"location": "Silver Cave",
|
||||
"section": "Endgame",
|
||||
"sprite_url": "/boss-sprites/gold/red.png",
|
||||
"sprite_url": "/boss-sprites/crystal/red.png",
|
||||
"pokemon": []
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"after_route_name": "Rustboro City",
|
||||
"location": "Rustboro Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/roxanne.png",
|
||||
"sprite_url": "/boss-sprites/emerald/roxanne.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -24,7 +24,7 @@
|
||||
"after_route_name": "Dewford Town",
|
||||
"location": "Dewford Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/brawly.png",
|
||||
"sprite_url": "/boss-sprites/emerald/brawly.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
"after_route_name": "Hoenn Route 110",
|
||||
"location": "Mauville Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/wattson.png",
|
||||
"sprite_url": "/boss-sprites/emerald/wattson.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -52,7 +52,7 @@
|
||||
"after_route_name": "Lavaridge Town",
|
||||
"location": "Lavaridge Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/flannery.png",
|
||||
"sprite_url": "/boss-sprites/emerald/flannery.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"after_route_name": "Desert Ruins",
|
||||
"location": "Petalburg Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/norman.png",
|
||||
"sprite_url": "/boss-sprites/emerald/norman.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -80,7 +80,7 @@
|
||||
"after_route_name": "Fortree City",
|
||||
"location": "Foretree Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/winona.png",
|
||||
"sprite_url": "/boss-sprites/emerald/winona.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@
|
||||
"after_route_name": "Mossdeep City",
|
||||
"location": "Mossdeep Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/tate--lisa.png",
|
||||
"sprite_url": "/boss-sprites/emerald/tate--lisa.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
"after_route_name": "Sootopolis City",
|
||||
"location": "Sootopolis Gym",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/juan.png",
|
||||
"sprite_url": "/boss-sprites/emerald/juan.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@
|
||||
"after_route_name": "Victory Road (Hoenn)",
|
||||
"location": "Ever Grande City",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/sydney.png",
|
||||
"sprite_url": "/boss-sprites/emerald/sydney.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@
|
||||
"after_route_name": "Victory Road (Hoenn)",
|
||||
"location": "Ever Grande City",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/phoebe.png",
|
||||
"sprite_url": "/boss-sprites/emerald/phoebe.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@
|
||||
"after_route_name": "Victory Road (Hoenn)",
|
||||
"location": "Ever Grande City",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/glacia.png",
|
||||
"sprite_url": "/boss-sprites/emerald/glacia.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@
|
||||
"after_route_name": "Victory Road (Hoenn)",
|
||||
"location": "Ever Grande City",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/ruby/drake.png",
|
||||
"sprite_url": "/boss-sprites/emerald/drake.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
|
||||
@@ -145,9 +145,9 @@
|
||||
{
|
||||
"name": "Giovanni",
|
||||
"boss_type": "gym_leader",
|
||||
"specialty_type": null,
|
||||
"badge_name": "50",
|
||||
"badge_image_url": "/badges/50.png",
|
||||
"specialty_type": "ground",
|
||||
"badge_name": "Earth Badge",
|
||||
"badge_image_url": "/badges/earth-badge.png",
|
||||
"level_cap": 50,
|
||||
"order": 8,
|
||||
"after_route_name": null,
|
||||
@@ -167,7 +167,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": null,
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/firered/lorelei.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -181,7 +181,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": null,
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/firered/bruno.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -195,7 +195,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": null,
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/firered/agatha.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -209,7 +209,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": null,
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/firered/lance.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -223,7 +223,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": null,
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/firered/blue.png",
|
||||
"pokemon": [
|
||||
{
|
||||
"pokeapi_id": 18,
|
||||
|
||||
@@ -122,7 +122,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/will.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/koga.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/bruno.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/karen.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -178,7 +178,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Indigo Plateau",
|
||||
"section": "Main Story",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/lance.png",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -304,7 +304,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Silver Cave",
|
||||
"section": "Endgame",
|
||||
"sprite_url": null,
|
||||
"sprite_url": "/boss-sprites/heartgold/red.png",
|
||||
"pokemon": []
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Grandtree Arena",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/lord-kleavor.png",
|
||||
"sprite_url": "/sprites/900.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -24,7 +24,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Brava Arena",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/lady-lilligant.png",
|
||||
"sprite_url": "/sprites/10237.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Molten Arena",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/lord-arcanine.png",
|
||||
"sprite_url": "/sprites/10230.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -52,7 +52,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Moonview Arena",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/lord-electrode.png",
|
||||
"sprite_url": "/sprites/10232.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Icepeak Arena",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/lord-avalugg.png",
|
||||
"sprite_url": "/sprites/10243.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -80,7 +80,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Temple of Sinnoh",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/origin-dialga--palkia.png",
|
||||
"sprite_url": "/sprites/10245.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Temple of Sinnoh",
|
||||
"section": "Main Story",
|
||||
"sprite_url": "/boss-sprites/legends-arceus/arceus.png",
|
||||
"sprite_url": "/sprites/493.webp",
|
||||
"pokemon": []
|
||||
}
|
||||
]
|
||||
|
||||
@@ -276,7 +276,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "South Province (Area Three)",
|
||||
"section": "Path of Legends",
|
||||
"sprite_url": "/boss-sprites/scarlet/stony-cliff-titan.png",
|
||||
"sprite_url": "/sprites/950.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -290,7 +290,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "West Province (Area One)",
|
||||
"section": "Path of Legends",
|
||||
"sprite_url": "/boss-sprites/scarlet/open-sky-titan.png",
|
||||
"sprite_url": "/sprites/962.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -304,7 +304,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "East Province (Area Three)",
|
||||
"section": "Path of Legends",
|
||||
"sprite_url": "/boss-sprites/scarlet/lurking-steel-titan.png",
|
||||
"sprite_url": "/sprites/968.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -318,7 +318,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Asado Desert",
|
||||
"section": "Path of Legends",
|
||||
"sprite_url": "/boss-sprites/scarlet/quaking-earth-titan.png",
|
||||
"sprite_url": "/sprites/984.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -332,7 +332,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Casseroya Lake",
|
||||
"section": "Path of Legends",
|
||||
"sprite_url": "/boss-sprites/scarlet/false-dragon-titan.png",
|
||||
"sprite_url": "/sprites/977.webp",
|
||||
"pokemon": []
|
||||
}
|
||||
]
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Verdant Cavern",
|
||||
"section": "Melemele Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-gumshoos.png",
|
||||
"sprite_url": "/sprites/735.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Brooklet Hill",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-wishiwashi.png",
|
||||
"sprite_url": "/sprites/746.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -52,7 +52,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Wela Volcano Park",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-salazzle.png",
|
||||
"sprite_url": "/sprites/758.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Lush Jungle",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-lurantis.png",
|
||||
"sprite_url": "/sprites/754.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Hokulani Observatory",
|
||||
"section": "Ula'ula Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-vikavolt.png",
|
||||
"sprite_url": "/sprites/738.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Thrifty Megamart",
|
||||
"section": "Ula'ula Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-mimikyu.png",
|
||||
"sprite_url": "/sprites/778.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -136,7 +136,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Vast Poni Canyon",
|
||||
"section": "Poni Island",
|
||||
"sprite_url": "/boss-sprites/sun/totem-kommo-o.png",
|
||||
"sprite_url": "/sprites/784.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Verdant Cavern",
|
||||
"section": "Melemele Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-gumshoos.png",
|
||||
"sprite_url": "/sprites/735.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -38,7 +38,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Brooklet Hill",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-araquanid.png",
|
||||
"sprite_url": "/sprites/752.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -52,7 +52,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Wela Volcano Park",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-salazzle.png",
|
||||
"sprite_url": "/sprites/758.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -66,7 +66,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Lush Jungle",
|
||||
"section": "Akala Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-lurantis.png",
|
||||
"sprite_url": "/sprites/754.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -94,7 +94,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Hokulani Observatory",
|
||||
"section": "Ula'ula Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-vikavolt.png",
|
||||
"sprite_url": "/sprites/738.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -108,7 +108,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Thrifty Megamart",
|
||||
"section": "Ula'ula Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-mimikyu.png",
|
||||
"sprite_url": "/sprites/778.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -122,7 +122,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Hokulani Observatory",
|
||||
"section": "Ula'ula Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-togedemaru.png",
|
||||
"sprite_url": "/sprites/777.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -150,7 +150,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Vast Poni Canyon",
|
||||
"section": "Poni Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-kommo-o.png",
|
||||
"sprite_url": "/sprites/784.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
@@ -164,7 +164,7 @@
|
||||
"after_route_name": null,
|
||||
"location": "Seafolk Village",
|
||||
"section": "Poni Island",
|
||||
"sprite_url": "/boss-sprites/ultra-sun/totem-ribombee.png",
|
||||
"sprite_url": "/sprites/743.webp",
|
||||
"pokemon": []
|
||||
},
|
||||
{
|
||||
|
||||
BIN
frontend/public/badges/basic-badge.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
frontend/public/badges/beacon-badge.png
Normal file
|
After Width: | Height: | Size: 561 KiB |
BIN
frontend/public/badges/bolt-badge.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
frontend/public/badges/bug-badge.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
frontend/public/badges/cliff-badge.png
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
BIN
frontend/public/badges/cobble-badge.png
Normal file
|
After Width: | Height: | Size: 493 KiB |
BIN
frontend/public/badges/dark-badge.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
frontend/public/badges/dragon-badge.png
Normal file
|
After Width: | Height: | Size: 94 KiB |
BIN
frontend/public/badges/electric-badge.png
Normal file
|
After Width: | Height: | Size: 61 KiB |
BIN
frontend/public/badges/fairy-badge.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
frontend/public/badges/fen-badge.png
Normal file
|
After Width: | Height: | Size: 585 KiB |
BIN
frontend/public/badges/fighting-badge.png
Normal file
|
After Width: | Height: | Size: 114 KiB |
BIN
frontend/public/badges/fire-badge.png
Normal file
|
After Width: | Height: | Size: 87 KiB |
BIN
frontend/public/badges/forest-badge.png
Normal file
|
After Width: | Height: | Size: 566 KiB |
BIN
frontend/public/badges/freeze-badge.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
frontend/public/badges/ghost-badge.png
Normal file
|
After Width: | Height: | Size: 102 KiB |
BIN
frontend/public/badges/grass-badge.png
Normal file
|
After Width: | Height: | Size: 79 KiB |
BIN
frontend/public/badges/ice-badge.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
frontend/public/badges/iceberg-badge.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
BIN
frontend/public/badges/icicle-badge.png
Normal file
|
After Width: | Height: | Size: 604 KiB |
BIN
frontend/public/badges/insect-badge.png
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
frontend/public/badges/jet-badge.png
Normal file
|
After Width: | Height: | Size: 3.0 KiB |
BIN
frontend/public/badges/legend-badge.png
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
frontend/public/badges/mine-badge.png
Normal file
|
After Width: | Height: | Size: 683 KiB |
BIN
frontend/public/badges/normal-badge.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
frontend/public/badges/plant-badge.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
frontend/public/badges/psychic-badge.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
frontend/public/badges/quake-badge.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
frontend/public/badges/relic-badge.png
Normal file
|
After Width: | Height: | Size: 524 KiB |
BIN
frontend/public/badges/rock-badge.png
Normal file
|
After Width: | Height: | Size: 74 KiB |
BIN
frontend/public/badges/rumble-badge.png
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
frontend/public/badges/toxic-badge.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
frontend/public/badges/trio-badge.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
frontend/public/badges/voltage-badge.png
Normal file
|
After Width: | Height: | Size: 27 KiB |
BIN
frontend/public/badges/water-badge.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
frontend/public/badges/wave-badge.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
BIN
frontend/public/boss-sprites/black-2/burgh.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
frontend/public/boss-sprites/black-2/caitlin.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
frontend/public/boss-sprites/black-2/cheren.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
frontend/public/boss-sprites/black-2/clay.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
frontend/public/boss-sprites/black-2/drayden.png
Normal file
|
After Width: | Height: | Size: 26 KiB |
BIN
frontend/public/boss-sprites/black-2/elesa.png
Normal file
|
After Width: | Height: | Size: 25 KiB |
BIN
frontend/public/boss-sprites/black-2/grimsley.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
frontend/public/boss-sprites/black-2/iris.png
Normal file
|
After Width: | Height: | Size: 69 KiB |
BIN
frontend/public/boss-sprites/black-2/marlon.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
frontend/public/boss-sprites/black-2/marshal.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
frontend/public/boss-sprites/black-2/roxie.png
Normal file
|
After Width: | Height: | Size: 38 KiB |
BIN
frontend/public/boss-sprites/black-2/shauntal.png
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
frontend/public/boss-sprites/black-2/skyla.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
frontend/public/boss-sprites/black/brycen.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
frontend/public/boss-sprites/black/burgh.png
Normal file
|
After Width: | Height: | Size: 2.0 KiB |
BIN
frontend/public/boss-sprites/black/caitlin.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
frontend/public/boss-sprites/black/cilan--chili--cress.png
Normal file
|
After Width: | Height: | Size: 1.4 KiB |
BIN
frontend/public/boss-sprites/black/clay.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
frontend/public/boss-sprites/black/drayden.png
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
BIN
frontend/public/boss-sprites/black/elesa.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
frontend/public/boss-sprites/black/ghetsis.png
Normal file
|
After Width: | Height: | Size: 2.8 KiB |
BIN
frontend/public/boss-sprites/black/grimsley.png
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
BIN
frontend/public/boss-sprites/black/iris.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
BIN
frontend/public/boss-sprites/black/lenora.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
frontend/public/boss-sprites/black/marshal.png
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
frontend/public/boss-sprites/black/n.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
frontend/public/boss-sprites/black/shauntal.png
Normal file
|
After Width: | Height: | Size: 1.6 KiB |
BIN
frontend/public/boss-sprites/black/skyla.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/aaron.png
Normal file
|
After Width: | Height: | Size: 60 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/bertha.png
Normal file
|
After Width: | Height: | Size: 63 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/byron.png
Normal file
|
After Width: | Height: | Size: 103 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/candice.png
Normal file
|
After Width: | Height: | Size: 88 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/crasher-wake.png
Normal file
|
After Width: | Height: | Size: 122 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/cynthia.png
Normal file
|
After Width: | Height: | Size: 100 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/fantina.png
Normal file
|
After Width: | Height: | Size: 116 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/flint.png
Normal file
|
After Width: | Height: | Size: 70 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/gardenia.png
Normal file
|
After Width: | Height: | Size: 75 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/lucian.png
Normal file
|
After Width: | Height: | Size: 62 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/maylene.png
Normal file
|
After Width: | Height: | Size: 66 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/roark.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
frontend/public/boss-sprites/brilliant-diamond/volkner.png
Normal file
|
After Width: | Height: | Size: 56 KiB |
BIN
frontend/public/boss-sprites/diamond/aaron.png
Normal file
|
After Width: | Height: | Size: 821 B |
BIN
frontend/public/boss-sprites/diamond/bertha.png
Normal file
|
After Width: | Height: | Size: 745 B |
BIN
frontend/public/boss-sprites/diamond/byron.png
Normal file
|
After Width: | Height: | Size: 973 B |
BIN
frontend/public/boss-sprites/diamond/candice.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
frontend/public/boss-sprites/diamond/crasher-wake.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
frontend/public/boss-sprites/diamond/cynthia.png
Normal file
|
After Width: | Height: | Size: 898 B |
BIN
frontend/public/boss-sprites/diamond/fantina.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
frontend/public/boss-sprites/diamond/flint.png
Normal file
|
After Width: | Height: | Size: 891 B |
BIN
frontend/public/boss-sprites/diamond/gardenia.png
Normal file
|
After Width: | Height: | Size: 958 B |
BIN
frontend/public/boss-sprites/diamond/lucian.png
Normal file
|
After Width: | Height: | Size: 665 B |
BIN
frontend/public/boss-sprites/diamond/maylene.png
Normal file
|
After Width: | Height: | Size: 827 B |
BIN
frontend/public/boss-sprites/diamond/volkner.png
Normal file
|
After Width: | Height: | Size: 830 B |
BIN
frontend/public/boss-sprites/firered/agatha.png
Normal file
|
After Width: | Height: | Size: 742 B |
BIN
frontend/public/boss-sprites/firered/blue.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |