├── .gitattributes ├── .github ├── pull_request_template.md ├── release.yml └── workflows │ ├── lint.yml │ └── release-when-tag-pushed.yml ├── .gitignore ├── LICENSE ├── Readme.md ├── modules ├── battle_action_selection.py ├── battle_evolution_scene.py ├── battle_handler.py ├── battle_menuing.py ├── battle_move_replacing.py ├── battle_state.py ├── battle_strategies │ ├── __init__.py │ ├── _interface.py │ ├── _util.py │ ├── catch.py │ ├── default.py │ ├── item_stealing.py │ ├── level_balancing.py │ ├── level_up.py │ ├── lose_on_purpose.py │ └── run_away.py ├── berry_trees.py ├── built_in_plugins │ ├── discord_integration.py │ ├── generate_encounter_media.py │ └── obs.py ├── clock.py ├── config │ ├── __init__.py │ ├── schemas_v1.py │ └── templates │ │ ├── battle.yml │ │ ├── catch_block.yml │ │ ├── cheats.yml │ │ ├── customcatchfilters.py │ │ ├── discord.yml │ │ ├── http.yml │ │ ├── keys.yml │ │ ├── logging.yml │ │ └── obs.yml ├── console.py ├── context.py ├── data │ ├── abilities.json │ ├── event_flags │ │ ├── compile_pret_flags.py │ │ ├── emerald.txt │ │ ├── frlg.txt │ │ └── rs.txt │ ├── event_vars │ │ ├── compile_pret_vars.py │ │ ├── emerald.txt │ │ ├── frlg.txt │ │ └── rs.txt │ ├── extract.py │ ├── frlg_safari_catch_strategies │ │ ├── lookup-1.yml │ │ ├── lookup-2.yml │ │ ├── lookup-3.yml │ │ ├── lookup-4.yml │ │ ├── lookup-5.yml │ │ └── lookup-6.yml │ ├── get_pret_maps.py │ ├── items.json │ ├── keyboard.json │ ├── moves.json │ ├── natures.json │ ├── species.json │ ├── symbols │ │ ├── Readme.md │ │ ├── fetch_symbols.py │ │ ├── patches │ │ │ ├── language │ │ │ │ ├── pokeemerald.yml │ │ │ │ ├── pokefirered.yml │ │ │ │ ├── pokeleafgreen.yml │ │ │ │ ├── pokeruby.yml │ │ │ │ ├── pokeruby_rev1.yml │ │ │ │ ├── pokesapphire.yml │ │ │ │ └── pokesapphire_rev1.yml │ │ │ ├── pokeemerald.sym │ │ │ ├── pokefirered.sym │ │ │ ├── pokefirered_rev1.sym │ │ │ ├── pokeleafgreen.sym │ │ │ ├── pokeleafgreen_rev1.sym │ │ │ ├── pokeruby.sym │ │ │ ├── pokeruby_de.sym │ │ │ ├── pokeruby_rev1.sym │ │ │ ├── pokesapphire.sym │ │ │ ├── pokesapphire_de.sym │ │ │ └── pokesapphire_rev1.sym │ │ ├── pokeemerald.sym │ │ ├── pokefirered.sym │ │ ├── pokefirered_rev1.sym │ │ ├── pokeleafgreen.sym │ │ ├── pokeleafgreen_rev1.sym │ │ ├── pokeruby.sym │ │ ├── pokeruby_de.sym │ │ ├── pokeruby_rev1.sym │ │ ├── pokesapphire.sym │ │ ├── pokesapphire_de.sym │ │ └── pokesapphire_rev1.sym │ └── types.json ├── daycare.py ├── debug.py ├── debug_utilities.py ├── discord.py ├── encounter.py ├── exceptions.py ├── exceptions_hook.py ├── files.py ├── fishing.py ├── fonts │ ├── pokemon-rs.ttf │ └── pokemon-rs_LICENSE.txt ├── game.py ├── game_sprites.py ├── game_stats.py ├── gui │ ├── __init__.py │ ├── create_profile_screen.py │ ├── debug_edit_item_bag.py │ ├── debug_edit_party.py │ ├── debug_edit_pokedex.py │ ├── debug_menu.py │ ├── debug_tabs.py │ ├── desktop_notification.py │ ├── emulator_controls.py │ ├── emulator_screen.py │ ├── ev_selection_window.py │ ├── glfw.py │ ├── headless.py │ ├── load_state_window.py │ ├── multi_select_window.py │ └── select_profile_screen.py ├── items.py ├── keyboard.py ├── libmgba.py ├── main.py ├── map.py ├── map_data.py ├── map_path.py ├── mart.py ├── memory.py ├── menu_parsers.py ├── menuing.py ├── modes │ ├── __init__.py │ ├── _asserts.py │ ├── _interface.py │ ├── _listeners.py │ ├── berry_blend.py │ ├── bunny_hop.py │ ├── daycare.py │ ├── ev_train.py │ ├── feebas.py │ ├── fishing.py │ ├── game_corner.py │ ├── item_steal.py │ ├── kecleon.py │ ├── level_grind.py │ ├── nugget_bridge.py │ ├── puzzle_solver.py │ ├── roamer_reset.py │ ├── rock_smash.py │ ├── safari.py │ ├── spin.py │ ├── starters.py │ ├── static_gift_resets.py │ ├── static_run_away.py │ ├── static_soft_resets.py │ ├── sudowoodo.py │ ├── sweet_scent.py │ └── util │ │ ├── __init__.py │ │ ├── _util_helper.py │ │ ├── berry_tree_interaction.py │ │ ├── event_flags_and_vars.py │ │ ├── higher_level_actions.py │ │ ├── items.py │ │ ├── map.py │ │ ├── pc_interaction.py │ │ ├── pokecenter_loop.py │ │ ├── sleep.py │ │ ├── soft_reset.py │ │ ├── tasks_scripts.py │ │ └── walking.py ├── player.py ├── player_pc_navigaton.py ├── plugin_interface.py ├── plugins.py ├── pokeblock_feeder.py ├── pokedex.py ├── pokemon.py ├── pokemon_party.py ├── pokemon_storage.py ├── pokemon_storage_navigaton.py ├── profiles.py ├── region_map.py ├── roamer.py ├── roms.py ├── runtime.py ├── safari_strategy.py ├── save_data.py ├── save_import.py ├── sprites.py ├── state_cache.py ├── stats.py ├── stats_migrate.py ├── tasks.py ├── tcg_card.py ├── text_printer.py ├── version.py └── web │ ├── docs │ └── event_stream.md │ ├── http.py │ ├── http_stream.py │ └── static │ ├── api-doc.html │ ├── css │ └── stream-overlay.css │ ├── font │ ├── small_pixel.ttf │ └── small_pixel.woff2 │ ├── index.html │ ├── js │ └── stream-overlay.js │ ├── map.html │ ├── pokemon.d.ts │ ├── routes.d.ts │ ├── sprites │ ├── badges │ │ ├── Balance.png │ │ ├── Boulder.png │ │ ├── Cascade.png │ │ ├── Dynamo.png │ │ ├── Earth.png │ │ ├── Feather.png │ │ ├── Heat.png │ │ ├── Knuckle.png │ │ ├── Marsh.png │ │ ├── Mind.png │ │ ├── Rain.png │ │ ├── Rainbow.png │ │ ├── Soul.png │ │ ├── Stone.png │ │ ├── Thunder.png │ │ └── Volcano.png │ ├── items │ │ ├── Acro Bike.png │ │ ├── Aguav Berry.png │ │ ├── Amulet Coin.png │ │ ├── Antidote.png │ │ ├── Apicot Berry.png │ │ ├── Aspear Berry.png │ │ ├── Auroraticket.png │ │ ├── Awakening.png │ │ ├── Basement Key.png │ │ ├── Bead Mail.png │ │ ├── Belue Berry.png │ │ ├── Berry Juice.png │ │ ├── Berry Pouch.png │ │ ├── Bicycle.png │ │ ├── Big Mushroom.png │ │ ├── Big Pearl.png │ │ ├── Bike Voucher.png │ │ ├── Black Belt.png │ │ ├── Black Flute.png │ │ ├── Blackglasses.png │ │ ├── Blue Flute.png │ │ ├── Blue Orb.png │ │ ├── Blue Scarf.png │ │ ├── Blue Shard.png │ │ ├── Bluk Berry.png │ │ ├── Brightpowder.png │ │ ├── Burn Heal.png │ │ ├── Calcium.png │ │ ├── Carbos.png │ │ ├── Card Key.png │ │ ├── Charcoal.png │ │ ├── Cheri Berry.png │ │ ├── Chesto Berry.png │ │ ├── Choice Band.png │ │ ├── Claw Fossil.png │ │ ├── Cleanse Tag.png │ │ ├── Coin Case.png │ │ ├── Contest Pass.png │ │ ├── Cornn Berry.png │ │ ├── Deepseascale.png │ │ ├── Deepseatooth.png │ │ ├── Devon Goods.png │ │ ├── Devon Scope.png │ │ ├── Dire Hit.png │ │ ├── Dive Ball.png │ │ ├── Dome Fossil.png │ │ ├── Dragon Fang.png │ │ ├── Dragon Scale.png │ │ ├── Dream Mail.png │ │ ├── Durin Berry.png │ │ ├── Elixir.png │ │ ├── Energy Root.png │ │ ├── Energypowder.png │ │ ├── Enigma Berry.png │ │ ├── Eon Ticket.png │ │ ├── Escape Rope.png │ │ ├── Ether.png │ │ ├── Everstone.png │ │ ├── Exp Share.png │ │ ├── Fab Mail.png │ │ ├── Fame Checker.png │ │ ├── Figy Berry.png │ │ ├── Fire Stone.png │ │ ├── Fluffy Tail.png │ │ ├── Focus Band.png │ │ ├── Fresh Water.png │ │ ├── Full Heal.png │ │ ├── Full Restore.png │ │ ├── Ganlon Berry.png │ │ ├── Glitter Mail.png │ │ ├── Go-goggles.png │ │ ├── Gold Teeth.png │ │ ├── Good Rod.png │ │ ├── Great Ball.png │ │ ├── Green Scarf.png │ │ ├── Green Shard.png │ │ ├── Grepa Berry.png │ │ ├── Guard Spec.png │ │ ├── HM01.png │ │ ├── HM02.png │ │ ├── HM03.png │ │ ├── HM04.png │ │ ├── HM05.png │ │ ├── HM06.png │ │ ├── HM07.png │ │ ├── HM08.png │ │ ├── HP Up.png │ │ ├── Harbor Mail.png │ │ ├── Hard Stone.png │ │ ├── Heal Powder.png │ │ ├── Heart Scale.png │ │ ├── Helix Fossil.png │ │ ├── Hondew Berry.png │ │ ├── Hyper Potion.png │ │ ├── Iapapa Berry.png │ │ ├── Ice Heal.png │ │ ├── Iron.png │ │ ├── Itemfinder.png │ │ ├── Kelpsy Berry.png │ │ ├── Kings Rock.png │ │ ├── Lansat Berry.png │ │ ├── Lava Cookie.png │ │ ├── Lax Incense.png │ │ ├── Leaf Stone.png │ │ ├── Leftovers.png │ │ ├── Lemonade.png │ │ ├── Leppa Berry.png │ │ ├── Letter.png │ │ ├── Liechi Berry.png │ │ ├── Lift Key.png │ │ ├── Light Ball.png │ │ ├── Lucky Egg.png │ │ ├── Lucky Punch.png │ │ ├── Lum Berry.png │ │ ├── Luxury Ball.png │ │ ├── Mach Bike.png │ │ ├── Macho Brace.png │ │ ├── Magma Emblem.png │ │ ├── Magnet.png │ │ ├── Mago Berry.png │ │ ├── Magost Berry.png │ │ ├── Master Ball.png │ │ ├── Max Elixir.png │ │ ├── Max Ether.png │ │ ├── Max Potion.png │ │ ├── Max Repel.png │ │ ├── Max Revive.png │ │ ├── Mech Mail.png │ │ ├── Mental Herb.png │ │ ├── Metal Coat.png │ │ ├── Metal Powder.png │ │ ├── Meteorite.png │ │ ├── Miracle Seed.png │ │ ├── Moomoo Milk.png │ │ ├── Moon Stone.png │ │ ├── Mystic Water.png │ │ ├── Mysticticket.png │ │ ├── Nanab Berry.png │ │ ├── Nest Ball.png │ │ ├── Net Ball.png │ │ ├── Nevermeltice.png │ │ ├── Nomel Berry.png │ │ ├── None.png │ │ ├── Nugget.png │ │ ├── Oaks Parcel.png │ │ ├── Old Amber.png │ │ ├── Old Rod.png │ │ ├── Old Sea Map.png │ │ ├── Oran Berry.png │ │ ├── Orange Mail.png │ │ ├── PP Max.png │ │ ├── PP Up.png │ │ ├── Pamtre Berry.png │ │ ├── Parlyz Heal.png │ │ ├── Pearl.png │ │ ├── Pecha Berry.png │ │ ├── Persim Berry.png │ │ ├── Petaya Berry.png │ │ ├── Pinap Berry.png │ │ ├── Pink Scarf.png │ │ ├── Poison Barb.png │ │ ├── Poké Ball.png │ │ ├── Poké Doll.png │ │ ├── Poké Flute.png │ │ ├── Pokéblock Case.png │ │ ├── Pomeg Berry.png │ │ ├── Potion.png │ │ ├── Powder Jar.png │ │ ├── Premier Ball.png │ │ ├── Protein.png │ │ ├── Qualot Berry.png │ │ ├── Quick Claw.png │ │ ├── Rabuta Berry.png │ │ ├── Rainbow Pass.png │ │ ├── Rare Candy.png │ │ ├── Rawst Berry.png │ │ ├── Razz Berry.png │ │ ├── Red Flute.png │ │ ├── Red Orb.png │ │ ├── Red Scarf.png │ │ ├── Red Shard.png │ │ ├── Repeat Ball.png │ │ ├── Repel.png │ │ ├── Retro Mail.png │ │ ├── Revival Herb.png │ │ ├── Revive.png │ │ ├── Root Fossil.png │ │ ├── Ruby.png │ │ ├── SS Ticket.png │ │ ├── Sacred Ash.png │ │ ├── Safari Ball.png │ │ ├── Salac Berry.png │ │ ├── Sapphire.png │ │ ├── Scanner.png │ │ ├── Scope Lens.png │ │ ├── Sea Incense.png │ │ ├── Secret Key.png │ │ ├── Shadow Mail.png │ │ ├── Sharp Beak.png │ │ ├── Shell Bell.png │ │ ├── Shoal Salt.png │ │ ├── Shoal Shell.png │ │ ├── Silk Scarf.png │ │ ├── Silph Scope.png │ │ ├── Silverpowder.png │ │ ├── Sitrus Berry.png │ │ ├── Smoke Ball.png │ │ ├── Soda Pop.png │ │ ├── Soft Sand.png │ │ ├── Soot Sack.png │ │ ├── Soothe Bell.png │ │ ├── Soul Dew.png │ │ ├── Spell Tag.png │ │ ├── Spelon Berry.png │ │ ├── Star Piece.png │ │ ├── Stardust.png │ │ ├── Starf Berry.png │ │ ├── Stick.png │ │ ├── Storage Key.png │ │ ├── Sun Stone.png │ │ ├── Super Potion.png │ │ ├── Super Repel.png │ │ ├── Super Rod.png │ │ ├── TM Case.png │ │ ├── TM01.png │ │ ├── TM02.png │ │ ├── TM03.png │ │ ├── TM04.png │ │ ├── TM05.png │ │ ├── TM06.png │ │ ├── TM07.png │ │ ├── TM08.png │ │ ├── TM09.png │ │ ├── TM10.png │ │ ├── TM11.png │ │ ├── TM12.png │ │ ├── TM13.png │ │ ├── TM14.png │ │ ├── TM15.png │ │ ├── TM16.png │ │ ├── TM17.png │ │ ├── TM18.png │ │ ├── TM19.png │ │ ├── TM20.png │ │ ├── TM21.png │ │ ├── TM22.png │ │ ├── TM23.png │ │ ├── TM24.png │ │ ├── TM25.png │ │ ├── TM26.png │ │ ├── TM27.png │ │ ├── TM28.png │ │ ├── TM29.png │ │ ├── TM30.png │ │ ├── TM31.png │ │ ├── TM32.png │ │ ├── TM33.png │ │ ├── TM34.png │ │ ├── TM35.png │ │ ├── TM36.png │ │ ├── TM37.png │ │ ├── TM38.png │ │ ├── TM39.png │ │ ├── TM40.png │ │ ├── TM41.png │ │ ├── TM42.png │ │ ├── TM43.png │ │ ├── TM44.png │ │ ├── TM45.png │ │ ├── TM46.png │ │ ├── TM47.png │ │ ├── TM48.png │ │ ├── TM49.png │ │ ├── TM50.png │ │ ├── Tamato Berry.png │ │ ├── Tea.png │ │ ├── Teachy TV.png │ │ ├── Thick Club.png │ │ ├── Thunder Stone.png │ │ ├── Timer Ball.png │ │ ├── Tinymushroom.png │ │ ├── Town Map.png │ │ ├── Tri-pass.png │ │ ├── Tropic Mail.png │ │ ├── Twistedspoon.png │ │ ├── Ultra Ball.png │ │ ├── Up-grade.png │ │ ├── VS Seeker.png │ │ ├── Wailmer Pail.png │ │ ├── Water Stone.png │ │ ├── Watmel Berry.png │ │ ├── Wave Mail.png │ │ ├── Wepear Berry.png │ │ ├── White Flute.png │ │ ├── White Herb.png │ │ ├── Wiki Berry.png │ │ ├── Wood Mail.png │ │ ├── X Accuracy.png │ │ ├── X Attack.png │ │ ├── X Defend.png │ │ ├── X Special.png │ │ ├── X Speed.png │ │ ├── Yellow Flute.png │ │ ├── Yellow Scarf.png │ │ ├── Yellow Shard.png │ │ └── Zinc.png │ ├── other │ │ ├── Birch.png │ │ ├── Feeder.png │ │ ├── Female.png │ │ ├── Male.png │ │ ├── No Repel.png │ │ ├── Pokerus Cured.png │ │ ├── Pokerus Infected.png │ │ └── Pokerus.png │ ├── pokeblocks │ │ ├── bitter.png │ │ ├── dry.png │ │ ├── sour.png │ │ ├── spicy.png │ │ └── sweet.png │ ├── pokemon-animated │ │ ├── Egg.gif │ │ ├── anti-shiny │ │ │ ├── Abra.gif │ │ │ ├── Absol.gif │ │ │ ├── Aerodactyl.gif │ │ │ ├── Aggron.gif │ │ │ ├── Aipom.gif │ │ │ ├── Alakazam.gif │ │ │ ├── Altaria.gif │ │ │ ├── Ampharos.gif │ │ │ ├── Anorith.gif │ │ │ ├── Arbok.gif │ │ │ ├── Arcanine.gif │ │ │ ├── Ariados.gif │ │ │ ├── Armaldo.gif │ │ │ ├── Aron.gif │ │ │ ├── Articuno.gif │ │ │ ├── Azumarill.gif │ │ │ ├── Azurill.gif │ │ │ ├── Bagon.gif │ │ │ ├── Baltoy.gif │ │ │ ├── Banette.gif │ │ │ ├── Barboach.gif │ │ │ ├── Bayleef.gif │ │ │ ├── Beautifly.gif │ │ │ ├── Beedrill.gif │ │ │ ├── Beldum.gif │ │ │ ├── Bellossom.gif │ │ │ ├── Bellsprout.gif │ │ │ ├── Blastoise.gif │ │ │ ├── Blaziken.gif │ │ │ ├── Blissey.gif │ │ │ ├── Breloom.gif │ │ │ ├── Bulbasaur.gif │ │ │ ├── Butterfree.gif │ │ │ ├── Cacnea.gif │ │ │ ├── Cacturne.gif │ │ │ ├── Camerupt.gif │ │ │ ├── Carvanha.gif │ │ │ ├── Cascoon.gif │ │ │ ├── Castform.gif │ │ │ ├── Caterpie.gif │ │ │ ├── Celebi.gif │ │ │ ├── Chansey.gif │ │ │ ├── Charizard.gif │ │ │ ├── Charmander.gif │ │ │ ├── Charmeleon.gif │ │ │ ├── Chikorita.gif │ │ │ ├── Chimecho.gif │ │ │ ├── Chinchou.gif │ │ │ ├── Clamperl.gif │ │ │ ├── Claydol.gif │ │ │ ├── Clefable.gif │ │ │ ├── Clefairy.gif │ │ │ ├── Cleffa.gif │ │ │ ├── Cloyster.gif │ │ │ ├── Combusken.gif │ │ │ ├── Corphish.gif │ │ │ ├── Corsola.gif │ │ │ ├── Cradily.gif │ │ │ ├── Crawdaunt.gif │ │ │ ├── Crobat.gif │ │ │ ├── Croconaw.gif │ │ │ ├── Cubone.gif │ │ │ ├── Cyndaquil.gif │ │ │ ├── Delcatty.gif │ │ │ ├── Delibird.gif │ │ │ ├── Deoxys.gif │ │ │ ├── Dewgong.gif │ │ │ ├── Diglett.gif │ │ │ ├── Ditto.gif │ │ │ ├── Dodrio.gif │ │ │ ├── Doduo.gif │ │ │ ├── Donphan.gif │ │ │ ├── Dragonair.gif │ │ │ ├── Dragonite.gif │ │ │ ├── Dratini.gif │ │ │ ├── Drowzee.gif │ │ │ ├── Dugtrio.gif │ │ │ ├── Dunsparce.gif │ │ │ ├── Dusclops.gif │ │ │ ├── Duskull.gif │ │ │ ├── Dustox.gif │ │ │ ├── Eevee.gif │ │ │ ├── Ekans.gif │ │ │ ├── Electabuzz.gif │ │ │ ├── Electrike.gif │ │ │ ├── Electrode.gif │ │ │ ├── Elekid.gif │ │ │ ├── Entei.gif │ │ │ ├── Espeon.gif │ │ │ ├── Exeggcute.gif │ │ │ ├── Exeggutor.gif │ │ │ ├── Exploud.gif │ │ │ ├── Farfetch'd.gif │ │ │ ├── Fearow.gif │ │ │ ├── Feebas.gif │ │ │ ├── Feraligatr.gif │ │ │ ├── Flaaffy.gif │ │ │ ├── Flareon.gif │ │ │ ├── Flygon.gif │ │ │ ├── Forretress.gif │ │ │ ├── Furret.gif │ │ │ ├── Gardevoir.gif │ │ │ ├── Gastly.gif │ │ │ ├── Gengar.gif │ │ │ ├── Geodude.gif │ │ │ ├── Girafarig.gif │ │ │ ├── Glalie.gif │ │ │ ├── Gligar.gif │ │ │ ├── Gloom.gif │ │ │ ├── Golbat.gif │ │ │ ├── Goldeen.gif │ │ │ ├── Golduck.gif │ │ │ ├── Golem.gif │ │ │ ├── Gorebyss.gif │ │ │ ├── Granbull.gif │ │ │ ├── Graveler.gif │ │ │ ├── Grimer.gif │ │ │ ├── Groudon.gif │ │ │ ├── Grovyle.gif │ │ │ ├── Growlithe.gif │ │ │ ├── Grumpig.gif │ │ │ ├── Gulpin.gif │ │ │ ├── Gyarados.gif │ │ │ ├── Hariyama.gif │ │ │ ├── Haunter.gif │ │ │ ├── Heracross.gif │ │ │ ├── Hitmonchan.gif │ │ │ ├── Hitmonlee.gif │ │ │ ├── Hitmontop.gif │ │ │ ├── Ho-oh.gif │ │ │ ├── Hoothoot.gif │ │ │ ├── Hoppip.gif │ │ │ ├── Horsea.gif │ │ │ ├── Houndoom.gif │ │ │ ├── Houndour.gif │ │ │ ├── Huntail.gif │ │ │ ├── Hypno.gif │ │ │ ├── Igglybuff.gif │ │ │ ├── Illumise.gif │ │ │ ├── Ivysaur.gif │ │ │ ├── Jigglypuff.gif │ │ │ ├── Jirachi.gif │ │ │ ├── Jolteon.gif │ │ │ ├── Jumpluff.gif │ │ │ ├── Jynx.gif │ │ │ ├── Kabuto.gif │ │ │ ├── Kabutops.gif │ │ │ ├── Kadabra.gif │ │ │ ├── Kakuna.gif │ │ │ ├── Kangaskhan.gif │ │ │ ├── Kecleon.gif │ │ │ ├── Kingdra.gif │ │ │ ├── Kingler.gif │ │ │ ├── Kirlia.gif │ │ │ ├── Koffing.gif │ │ │ ├── Krabby.gif │ │ │ ├── Kyogre.gif │ │ │ ├── Lairon.gif │ │ │ ├── Lanturn.gif │ │ │ ├── Lapras.gif │ │ │ ├── Larvitar.gif │ │ │ ├── Latias.gif │ │ │ ├── Latios.gif │ │ │ ├── Ledian.gif │ │ │ ├── Ledyba.gif │ │ │ ├── Lickitung.gif │ │ │ ├── Lileep.gif │ │ │ ├── Linoone.gif │ │ │ ├── Lombre.gif │ │ │ ├── Lotad.gif │ │ │ ├── Loudred.gif │ │ │ ├── Ludicolo.gif │ │ │ ├── Lugia.gif │ │ │ ├── Lunatone.gif │ │ │ ├── Luvdisc.gif │ │ │ ├── Machamp.gif │ │ │ ├── Machoke.gif │ │ │ ├── Machop.gif │ │ │ ├── Magby.gif │ │ │ ├── Magcargo.gif │ │ │ ├── Magikarp.gif │ │ │ ├── Magmar.gif │ │ │ ├── Magnemite.gif │ │ │ ├── Magneton.gif │ │ │ ├── Makuhita.gif │ │ │ ├── Manectric.gif │ │ │ ├── Mankey.gif │ │ │ ├── Mantine.gif │ │ │ ├── Mareep.gif │ │ │ ├── Marill.gif │ │ │ ├── Marowak.gif │ │ │ ├── Marshtomp.gif │ │ │ ├── Masquerain.gif │ │ │ ├── Mawile.gif │ │ │ ├── Medicham.gif │ │ │ ├── Meditite.gif │ │ │ ├── Meganium.gif │ │ │ ├── Meowth.gif │ │ │ ├── Metagross.gif │ │ │ ├── Metang.gif │ │ │ ├── Metapod.gif │ │ │ ├── Mew.gif │ │ │ ├── Mewtwo.gif │ │ │ ├── Mightyena.gif │ │ │ ├── Milotic.gif │ │ │ ├── Miltank.gif │ │ │ ├── Minun.gif │ │ │ ├── Misdreavus.gif │ │ │ ├── Moltres.gif │ │ │ ├── Mr. Mime.gif │ │ │ ├── Mudkip.gif │ │ │ ├── Muk.gif │ │ │ ├── Murkrow.gif │ │ │ ├── Natu.gif │ │ │ ├── Nidoking.gif │ │ │ ├── Nidoqueen.gif │ │ │ ├── Nidoran_f.gif │ │ │ ├── Nidoran_m.gif │ │ │ ├── Nidorina.gif │ │ │ ├── Nidorino.gif │ │ │ ├── Nincada.gif │ │ │ ├── Ninetales.gif │ │ │ ├── Ninjask.gif │ │ │ ├── Noctowl.gif │ │ │ ├── Nosepass.gif │ │ │ ├── Numel.gif │ │ │ ├── Nuzleaf.gif │ │ │ ├── Octillery.gif │ │ │ ├── Oddish.gif │ │ │ ├── Omanyte.gif │ │ │ ├── Omastar.gif │ │ │ ├── Onix.gif │ │ │ ├── Paras.gif │ │ │ ├── Parasect.gif │ │ │ ├── Pelipper.gif │ │ │ ├── Persian.gif │ │ │ ├── Phanpy.gif │ │ │ ├── Pichu.gif │ │ │ ├── Pidgeot.gif │ │ │ ├── Pidgeotto.gif │ │ │ ├── Pidgey.gif │ │ │ ├── Pikachu.gif │ │ │ ├── Piloswine.gif │ │ │ ├── Pineco.gif │ │ │ ├── Pinsir.gif │ │ │ ├── Plusle.gif │ │ │ ├── Politoed.gif │ │ │ ├── Poliwag.gif │ │ │ ├── Poliwhirl.gif │ │ │ ├── Poliwrath.gif │ │ │ ├── Ponyta.gif │ │ │ ├── Poochyena.gif │ │ │ ├── Porygon.gif │ │ │ ├── Porygon2.gif │ │ │ ├── Primeape.gif │ │ │ ├── Psyduck.gif │ │ │ ├── Pupitar.gif │ │ │ ├── Quagsire.gif │ │ │ ├── Quilava.gif │ │ │ ├── Qwilfish.gif │ │ │ ├── Raichu.gif │ │ │ ├── Raikou.gif │ │ │ ├── Ralts.gif │ │ │ ├── Rapidash.gif │ │ │ ├── Raticate.gif │ │ │ ├── Rattata.gif │ │ │ ├── Rayquaza.gif │ │ │ ├── Regice.gif │ │ │ ├── Regirock.gif │ │ │ ├── Registeel.gif │ │ │ ├── Relicanth.gif │ │ │ ├── Remoraid.gif │ │ │ ├── Rhydon.gif │ │ │ ├── Rhyhorn.gif │ │ │ ├── Roselia.gif │ │ │ ├── Sableye.gif │ │ │ ├── Salamence.gif │ │ │ ├── Sandshrew.gif │ │ │ ├── Sandslash.gif │ │ │ ├── Sceptile.gif │ │ │ ├── Scizor.gif │ │ │ ├── Scyther.gif │ │ │ ├── Seadra.gif │ │ │ ├── Seaking.gif │ │ │ ├── Sealeo.gif │ │ │ ├── Seedot.gif │ │ │ ├── Seel.gif │ │ │ ├── Sentret.gif │ │ │ ├── Seviper.gif │ │ │ ├── Sharpedo.gif │ │ │ ├── Shedinja.gif │ │ │ ├── Shelgon.gif │ │ │ ├── Shellder.gif │ │ │ ├── Shiftry.gif │ │ │ ├── Shroomish.gif │ │ │ ├── Shuckle.gif │ │ │ ├── Shuppet.gif │ │ │ ├── Silcoon.gif │ │ │ ├── Skarmory.gif │ │ │ ├── Skiploom.gif │ │ │ ├── Skitty.gif │ │ │ ├── Slaking.gif │ │ │ ├── Slakoth.gif │ │ │ ├── Slowbro.gif │ │ │ ├── Slowking.gif │ │ │ ├── Slowpoke.gif │ │ │ ├── Slugma.gif │ │ │ ├── Smeargle.gif │ │ │ ├── Smoochum.gif │ │ │ ├── Sneasel.gif │ │ │ ├── Snorlax.gif │ │ │ ├── Snorunt.gif │ │ │ ├── Snubbull.gif │ │ │ ├── Solrock.gif │ │ │ ├── Spearow.gif │ │ │ ├── Spheal.gif │ │ │ ├── Spinarak.gif │ │ │ ├── Spinda.gif │ │ │ ├── Spoink.gif │ │ │ ├── Squirtle.gif │ │ │ ├── Stantler.gif │ │ │ ├── Starmie.gif │ │ │ ├── Staryu.gif │ │ │ ├── Steelix.gif │ │ │ ├── Sudowoodo.gif │ │ │ ├── Suicune.gif │ │ │ ├── Sunflora.gif │ │ │ ├── Sunkern.gif │ │ │ ├── Surskit.gif │ │ │ ├── Swablu.gif │ │ │ ├── Swalot.gif │ │ │ ├── Swampert.gif │ │ │ ├── Swellow.gif │ │ │ ├── Swinub.gif │ │ │ ├── Taillow.gif │ │ │ ├── Tangela.gif │ │ │ ├── Tauros.gif │ │ │ ├── Teddiursa.gif │ │ │ ├── Tentacool.gif │ │ │ ├── Tentacruel.gif │ │ │ ├── Togepi.gif │ │ │ ├── Togetic.gif │ │ │ ├── Torchic.gif │ │ │ ├── Torkoal.gif │ │ │ ├── Totodile.gif │ │ │ ├── Trapinch.gif │ │ │ ├── Treecko.gif │ │ │ ├── Tropius.gif │ │ │ ├── Typhlosion.gif │ │ │ ├── Tyranitar.gif │ │ │ ├── Tyrogue.gif │ │ │ ├── Umbreon.gif │ │ │ ├── Unown (A).gif │ │ │ ├── Unown (B).gif │ │ │ ├── Unown (C).gif │ │ │ ├── Unown (D).gif │ │ │ ├── Unown (E).gif │ │ │ ├── Unown (F).gif │ │ │ ├── Unown (G).gif │ │ │ ├── Unown (H).gif │ │ │ ├── Unown (I).gif │ │ │ ├── Unown (J).gif │ │ │ ├── Unown (K).gif │ │ │ ├── Unown (L).gif │ │ │ ├── Unown (M).gif │ │ │ ├── Unown (N).gif │ │ │ ├── Unown (O).gif │ │ │ ├── Unown (P).gif │ │ │ ├── Unown (Q).gif │ │ │ ├── Unown (R).gif │ │ │ ├── Unown (S).gif │ │ │ ├── Unown (T).gif │ │ │ ├── Unown (U).gif │ │ │ ├── Unown (V).gif │ │ │ ├── Unown (W).gif │ │ │ ├── Unown (X).gif │ │ │ ├── Unown (Y).gif │ │ │ ├── Unown (Z).gif │ │ │ ├── Unown (em).gif │ │ │ ├── Unown (qm).gif │ │ │ ├── Ursaring.gif │ │ │ ├── Vaporeon.gif │ │ │ ├── Venomoth.gif │ │ │ ├── Venonat.gif │ │ │ ├── Venusaur.gif │ │ │ ├── Vibrava.gif │ │ │ ├── Victreebel.gif │ │ │ ├── Vigoroth.gif │ │ │ ├── Vileplume.gif │ │ │ ├── Volbeat.gif │ │ │ ├── Voltorb.gif │ │ │ ├── Vulpix.gif │ │ │ ├── Wailmer.gif │ │ │ ├── Wailord.gif │ │ │ ├── Walrein.gif │ │ │ ├── Wartortle.gif │ │ │ ├── Weedle.gif │ │ │ ├── Weepinbell.gif │ │ │ ├── Weezing.gif │ │ │ ├── Whiscash.gif │ │ │ ├── Whismur.gif │ │ │ ├── Wigglytuff.gif │ │ │ ├── Wingull.gif │ │ │ ├── Wobbuffet.gif │ │ │ ├── Wooper.gif │ │ │ ├── Wurmple.gif │ │ │ ├── Wynaut.gif │ │ │ ├── Xatu.gif │ │ │ ├── Yanma.gif │ │ │ ├── Zangoose.gif │ │ │ ├── Zapdos.gif │ │ │ ├── Zigzagoon.gif │ │ │ └── Zubat.gif │ │ ├── normal │ │ │ ├── Abra.gif │ │ │ ├── Absol.gif │ │ │ ├── Aerodactyl.gif │ │ │ ├── Aggron.gif │ │ │ ├── Aipom.gif │ │ │ ├── Alakazam.gif │ │ │ ├── Altaria.gif │ │ │ ├── Ampharos.gif │ │ │ ├── Anorith.gif │ │ │ ├── Arbok.gif │ │ │ ├── Arcanine.gif │ │ │ ├── Ariados.gif │ │ │ ├── Armaldo.gif │ │ │ ├── Aron.gif │ │ │ ├── Articuno.gif │ │ │ ├── Azumarill.gif │ │ │ ├── Azurill.gif │ │ │ ├── Bagon.gif │ │ │ ├── Baltoy.gif │ │ │ ├── Banette.gif │ │ │ ├── Barboach.gif │ │ │ ├── Bayleef.gif │ │ │ ├── Beautifly.gif │ │ │ ├── Beedrill.gif │ │ │ ├── Beldum.gif │ │ │ ├── Bellossom.gif │ │ │ ├── Bellsprout.gif │ │ │ ├── Blastoise.gif │ │ │ ├── Blaziken.gif │ │ │ ├── Blissey.gif │ │ │ ├── Breloom.gif │ │ │ ├── Bulbasaur.gif │ │ │ ├── Butterfree.gif │ │ │ ├── Cacnea.gif │ │ │ ├── Cacturne.gif │ │ │ ├── Camerupt.gif │ │ │ ├── Carvanha.gif │ │ │ ├── Cascoon.gif │ │ │ ├── Castform.gif │ │ │ ├── Caterpie.gif │ │ │ ├── Celebi.gif │ │ │ ├── Chansey.gif │ │ │ ├── Charizard.gif │ │ │ ├── Charmander.gif │ │ │ ├── Charmeleon.gif │ │ │ ├── Chikorita.gif │ │ │ ├── Chimecho.gif │ │ │ ├── Chinchou.gif │ │ │ ├── Clamperl.gif │ │ │ ├── Claydol.gif │ │ │ ├── Clefable.gif │ │ │ ├── Clefairy.gif │ │ │ ├── Cleffa.gif │ │ │ ├── Cloyster.gif │ │ │ ├── Combusken.gif │ │ │ ├── Corphish.gif │ │ │ ├── Corsola.gif │ │ │ ├── Cradily.gif │ │ │ ├── Crawdaunt.gif │ │ │ ├── Crobat.gif │ │ │ ├── Croconaw.gif │ │ │ ├── Cubone.gif │ │ │ ├── Cyndaquil.gif │ │ │ ├── Delcatty.gif │ │ │ ├── Delibird.gif │ │ │ ├── Deoxys.gif │ │ │ ├── Dewgong.gif │ │ │ ├── Diglett.gif │ │ │ ├── Ditto.gif │ │ │ ├── Dodrio.gif │ │ │ ├── Doduo.gif │ │ │ ├── Donphan.gif │ │ │ ├── Dragonair.gif │ │ │ ├── Dragonite.gif │ │ │ ├── Dratini.gif │ │ │ ├── Drowzee.gif │ │ │ ├── Dugtrio.gif │ │ │ ├── Dunsparce.gif │ │ │ ├── Dusclops.gif │ │ │ ├── Duskull.gif │ │ │ ├── Dustox.gif │ │ │ ├── Eevee.gif │ │ │ ├── Ekans.gif │ │ │ ├── Electabuzz.gif │ │ │ ├── Electrike.gif │ │ │ ├── Electrode.gif │ │ │ ├── Elekid.gif │ │ │ ├── Entei.gif │ │ │ ├── Espeon.gif │ │ │ ├── Exeggcute.gif │ │ │ ├── Exeggutor.gif │ │ │ ├── Exploud.gif │ │ │ ├── Farfetch'd.gif │ │ │ ├── Fearow.gif │ │ │ ├── Feebas.gif │ │ │ ├── Feraligatr.gif │ │ │ ├── Flaaffy.gif │ │ │ ├── Flareon.gif │ │ │ ├── Flygon.gif │ │ │ ├── Forretress.gif │ │ │ ├── Furret.gif │ │ │ ├── Gardevoir.gif │ │ │ ├── Gastly.gif │ │ │ ├── Gengar.gif │ │ │ ├── Geodude.gif │ │ │ ├── Girafarig.gif │ │ │ ├── Glalie.gif │ │ │ ├── Gligar.gif │ │ │ ├── Gloom.gif │ │ │ ├── Golbat.gif │ │ │ ├── Goldeen.gif │ │ │ ├── Golduck.gif │ │ │ ├── Golem.gif │ │ │ ├── Gorebyss.gif │ │ │ ├── Granbull.gif │ │ │ ├── Graveler.gif │ │ │ ├── Grimer.gif │ │ │ ├── Groudon.gif │ │ │ ├── Grovyle.gif │ │ │ ├── Growlithe.gif │ │ │ ├── Grumpig.gif │ │ │ ├── Gulpin.gif │ │ │ ├── Gyarados.gif │ │ │ ├── Hariyama.gif │ │ │ ├── Haunter.gif │ │ │ ├── Heracross.gif │ │ │ ├── Hitmonchan.gif │ │ │ ├── Hitmonlee.gif │ │ │ ├── Hitmontop.gif │ │ │ ├── Ho-oh.gif │ │ │ ├── Hoothoot.gif │ │ │ ├── Hoppip.gif │ │ │ ├── Horsea.gif │ │ │ ├── Houndoom.gif │ │ │ ├── Houndour.gif │ │ │ ├── Huntail.gif │ │ │ ├── Hypno.gif │ │ │ ├── Igglybuff.gif │ │ │ ├── Illumise.gif │ │ │ ├── Ivysaur.gif │ │ │ ├── Jigglypuff.gif │ │ │ ├── Jirachi.gif │ │ │ ├── Jolteon.gif │ │ │ ├── Jumpluff.gif │ │ │ ├── Jynx.gif │ │ │ ├── Kabuto.gif │ │ │ ├── Kabutops.gif │ │ │ ├── Kadabra.gif │ │ │ ├── Kakuna.gif │ │ │ ├── Kangaskhan.gif │ │ │ ├── Kecleon.gif │ │ │ ├── Kingdra.gif │ │ │ ├── Kingler.gif │ │ │ ├── Kirlia.gif │ │ │ ├── Koffing.gif │ │ │ ├── Krabby.gif │ │ │ ├── Kyogre.gif │ │ │ ├── Lairon.gif │ │ │ ├── Lanturn.gif │ │ │ ├── Lapras.gif │ │ │ ├── Larvitar.gif │ │ │ ├── Latias.gif │ │ │ ├── Latios.gif │ │ │ ├── Ledian.gif │ │ │ ├── Ledyba.gif │ │ │ ├── Lickitung.gif │ │ │ ├── Lileep.gif │ │ │ ├── Linoone.gif │ │ │ ├── Lombre.gif │ │ │ ├── Lotad.gif │ │ │ ├── Loudred.gif │ │ │ ├── Ludicolo.gif │ │ │ ├── Lugia.gif │ │ │ ├── Lunatone.gif │ │ │ ├── Luvdisc.gif │ │ │ ├── Machamp.gif │ │ │ ├── Machoke.gif │ │ │ ├── Machop.gif │ │ │ ├── Magby.gif │ │ │ ├── Magcargo.gif │ │ │ ├── Magikarp.gif │ │ │ ├── Magmar.gif │ │ │ ├── Magnemite.gif │ │ │ ├── Magneton.gif │ │ │ ├── Makuhita.gif │ │ │ ├── Manectric.gif │ │ │ ├── Mankey.gif │ │ │ ├── Mantine.gif │ │ │ ├── Mareep.gif │ │ │ ├── Marill.gif │ │ │ ├── Marowak.gif │ │ │ ├── Marshtomp.gif │ │ │ ├── Masquerain.gif │ │ │ ├── Mawile.gif │ │ │ ├── Medicham.gif │ │ │ ├── Meditite.gif │ │ │ ├── Meganium.gif │ │ │ ├── Meowth.gif │ │ │ ├── Metagross.gif │ │ │ ├── Metang.gif │ │ │ ├── Metapod.gif │ │ │ ├── Mew.gif │ │ │ ├── Mewtwo.gif │ │ │ ├── Mightyena.gif │ │ │ ├── Milotic.gif │ │ │ ├── Miltank.gif │ │ │ ├── Minun.gif │ │ │ ├── Misdreavus.gif │ │ │ ├── Moltres.gif │ │ │ ├── Mr. Mime.gif │ │ │ ├── Mudkip.gif │ │ │ ├── Muk.gif │ │ │ ├── Murkrow.gif │ │ │ ├── Natu.gif │ │ │ ├── Nidoking.gif │ │ │ ├── Nidoqueen.gif │ │ │ ├── Nidoran_f.gif │ │ │ ├── Nidoran_m.gif │ │ │ ├── Nidorina.gif │ │ │ ├── Nidorino.gif │ │ │ ├── Nincada.gif │ │ │ ├── Ninetales.gif │ │ │ ├── Ninjask.gif │ │ │ ├── Noctowl.gif │ │ │ ├── Nosepass.gif │ │ │ ├── Numel.gif │ │ │ ├── Nuzleaf.gif │ │ │ ├── Octillery.gif │ │ │ ├── Oddish.gif │ │ │ ├── Omanyte.gif │ │ │ ├── Omastar.gif │ │ │ ├── Onix.gif │ │ │ ├── Paras.gif │ │ │ ├── Parasect.gif │ │ │ ├── Pelipper.gif │ │ │ ├── Persian.gif │ │ │ ├── Phanpy.gif │ │ │ ├── Pichu.gif │ │ │ ├── Pidgeot.gif │ │ │ ├── Pidgeotto.gif │ │ │ ├── Pidgey.gif │ │ │ ├── Pikachu.gif │ │ │ ├── Piloswine.gif │ │ │ ├── Pineco.gif │ │ │ ├── Pinsir.gif │ │ │ ├── Plusle.gif │ │ │ ├── Politoed.gif │ │ │ ├── Poliwag.gif │ │ │ ├── Poliwhirl.gif │ │ │ ├── Poliwrath.gif │ │ │ ├── Ponyta.gif │ │ │ ├── Poochyena.gif │ │ │ ├── Porygon.gif │ │ │ ├── Porygon2.gif │ │ │ ├── Primeape.gif │ │ │ ├── Psyduck.gif │ │ │ ├── Pupitar.gif │ │ │ ├── Quagsire.gif │ │ │ ├── Quilava.gif │ │ │ ├── Qwilfish.gif │ │ │ ├── Raichu.gif │ │ │ ├── Raikou.gif │ │ │ ├── Ralts.gif │ │ │ ├── Rapidash.gif │ │ │ ├── Raticate.gif │ │ │ ├── Rattata.gif │ │ │ ├── Rayquaza.gif │ │ │ ├── Regice.gif │ │ │ ├── Regirock.gif │ │ │ ├── Registeel.gif │ │ │ ├── Relicanth.gif │ │ │ ├── Remoraid.gif │ │ │ ├── Rhydon.gif │ │ │ ├── Rhyhorn.gif │ │ │ ├── Roselia.gif │ │ │ ├── Sableye.gif │ │ │ ├── Salamence.gif │ │ │ ├── Sandshrew.gif │ │ │ ├── Sandslash.gif │ │ │ ├── Sceptile.gif │ │ │ ├── Scizor.gif │ │ │ ├── Scyther.gif │ │ │ ├── Seadra.gif │ │ │ ├── Seaking.gif │ │ │ ├── Sealeo.gif │ │ │ ├── Seedot.gif │ │ │ ├── Seel.gif │ │ │ ├── Sentret.gif │ │ │ ├── Seviper.gif │ │ │ ├── Sharpedo.gif │ │ │ ├── Shedinja.gif │ │ │ ├── Shelgon.gif │ │ │ ├── Shellder.gif │ │ │ ├── Shiftry.gif │ │ │ ├── Shroomish.gif │ │ │ ├── Shuckle.gif │ │ │ ├── Shuppet.gif │ │ │ ├── Silcoon.gif │ │ │ ├── Skarmory.gif │ │ │ ├── Skiploom.gif │ │ │ ├── Skitty.gif │ │ │ ├── Slaking.gif │ │ │ ├── Slakoth.gif │ │ │ ├── Slowbro.gif │ │ │ ├── Slowking.gif │ │ │ ├── Slowpoke.gif │ │ │ ├── Slugma.gif │ │ │ ├── Smeargle.gif │ │ │ ├── Smoochum.gif │ │ │ ├── Sneasel.gif │ │ │ ├── Snorlax.gif │ │ │ ├── Snorunt.gif │ │ │ ├── Snubbull.gif │ │ │ ├── Solrock.gif │ │ │ ├── Spearow.gif │ │ │ ├── Spheal.gif │ │ │ ├── Spinarak.gif │ │ │ ├── Spinda.gif │ │ │ ├── Spoink.gif │ │ │ ├── Squirtle.gif │ │ │ ├── Stantler.gif │ │ │ ├── Starmie.gif │ │ │ ├── Staryu.gif │ │ │ ├── Steelix.gif │ │ │ ├── Sudowoodo.gif │ │ │ ├── Suicune.gif │ │ │ ├── Sunflora.gif │ │ │ ├── Sunkern.gif │ │ │ ├── Surskit.gif │ │ │ ├── Swablu.gif │ │ │ ├── Swalot.gif │ │ │ ├── Swampert.gif │ │ │ ├── Swellow.gif │ │ │ ├── Swinub.gif │ │ │ ├── Taillow.gif │ │ │ ├── Tangela.gif │ │ │ ├── Tauros.gif │ │ │ ├── Teddiursa.gif │ │ │ ├── Tentacool.gif │ │ │ ├── Tentacruel.gif │ │ │ ├── Togepi.gif │ │ │ ├── Togetic.gif │ │ │ ├── Torchic.gif │ │ │ ├── Torkoal.gif │ │ │ ├── Totodile.gif │ │ │ ├── Trapinch.gif │ │ │ ├── Treecko.gif │ │ │ ├── Tropius.gif │ │ │ ├── Typhlosion.gif │ │ │ ├── Tyranitar.gif │ │ │ ├── Tyrogue.gif │ │ │ ├── Umbreon.gif │ │ │ ├── Unown (A).gif │ │ │ ├── Unown (B).gif │ │ │ ├── Unown (C).gif │ │ │ ├── Unown (D).gif │ │ │ ├── Unown (E).gif │ │ │ ├── Unown (F).gif │ │ │ ├── Unown (G).gif │ │ │ ├── Unown (H).gif │ │ │ ├── Unown (I).gif │ │ │ ├── Unown (J).gif │ │ │ ├── Unown (K).gif │ │ │ ├── Unown (L).gif │ │ │ ├── Unown (M).gif │ │ │ ├── Unown (N).gif │ │ │ ├── Unown (O).gif │ │ │ ├── Unown (P).gif │ │ │ ├── Unown (Q).gif │ │ │ ├── Unown (R).gif │ │ │ ├── Unown (S).gif │ │ │ ├── Unown (T).gif │ │ │ ├── Unown (U).gif │ │ │ ├── Unown (V).gif │ │ │ ├── Unown (W).gif │ │ │ ├── Unown (X).gif │ │ │ ├── Unown (Y).gif │ │ │ ├── Unown (Z).gif │ │ │ ├── Unown (em).gif │ │ │ ├── Unown (qm).gif │ │ │ ├── Ursaring.gif │ │ │ ├── Vaporeon.gif │ │ │ ├── Venomoth.gif │ │ │ ├── Venonat.gif │ │ │ ├── Venusaur.gif │ │ │ ├── Vibrava.gif │ │ │ ├── Victreebel.gif │ │ │ ├── Vigoroth.gif │ │ │ ├── Vileplume.gif │ │ │ ├── Volbeat.gif │ │ │ ├── Voltorb.gif │ │ │ ├── Vulpix.gif │ │ │ ├── Wailmer.gif │ │ │ ├── Wailord.gif │ │ │ ├── Walrein.gif │ │ │ ├── Wartortle.gif │ │ │ ├── Weedle.gif │ │ │ ├── Weepinbell.gif │ │ │ ├── Weezing.gif │ │ │ ├── Whiscash.gif │ │ │ ├── Whismur.gif │ │ │ ├── Wigglytuff.gif │ │ │ ├── Wingull.gif │ │ │ ├── Wobbuffet.gif │ │ │ ├── Wooper.gif │ │ │ ├── Wurmple.gif │ │ │ ├── Wynaut.gif │ │ │ ├── Xatu.gif │ │ │ ├── Yanma.gif │ │ │ ├── Zangoose.gif │ │ │ ├── Zapdos.gif │ │ │ ├── Zigzagoon.gif │ │ │ └── Zubat.gif │ │ └── shiny │ │ │ ├── Abra.gif │ │ │ ├── Absol.gif │ │ │ ├── Aerodactyl.gif │ │ │ ├── Aggron.gif │ │ │ ├── Aipom.gif │ │ │ ├── Alakazam.gif │ │ │ ├── Altaria.gif │ │ │ ├── Ampharos.gif │ │ │ ├── Anorith.gif │ │ │ ├── Arbok.gif │ │ │ ├── Arcanine.gif │ │ │ ├── Ariados.gif │ │ │ ├── Armaldo.gif │ │ │ ├── Aron.gif │ │ │ ├── Articuno.gif │ │ │ ├── Azumarill.gif │ │ │ ├── Azurill.gif │ │ │ ├── Bagon.gif │ │ │ ├── Baltoy.gif │ │ │ ├── Banette.gif │ │ │ ├── Barboach.gif │ │ │ ├── Bayleef.gif │ │ │ ├── Beautifly.gif │ │ │ ├── Beedrill.gif │ │ │ ├── Beldum.gif │ │ │ ├── Bellossom.gif │ │ │ ├── Bellsprout.gif │ │ │ ├── Blastoise.gif │ │ │ ├── Blaziken.gif │ │ │ ├── Blissey.gif │ │ │ ├── Breloom.gif │ │ │ ├── Bulbasaur.gif │ │ │ ├── Butterfree.gif │ │ │ ├── Cacnea.gif │ │ │ ├── Cacturne.gif │ │ │ ├── Camerupt.gif │ │ │ ├── Carvanha.gif │ │ │ ├── Cascoon.gif │ │ │ ├── Castform.gif │ │ │ ├── Caterpie.gif │ │ │ ├── Celebi.gif │ │ │ ├── Chansey.gif │ │ │ ├── Charizard.gif │ │ │ ├── Charmander.gif │ │ │ ├── Charmeleon.gif │ │ │ ├── Chikorita.gif │ │ │ ├── Chimecho.gif │ │ │ ├── Chinchou.gif │ │ │ ├── Clamperl.gif │ │ │ ├── Claydol.gif │ │ │ ├── Clefable.gif │ │ │ ├── Clefairy.gif │ │ │ ├── Cleffa.gif │ │ │ ├── Cloyster.gif │ │ │ ├── Combusken.gif │ │ │ ├── Corphish.gif │ │ │ ├── Corsola.gif │ │ │ ├── Cradily.gif │ │ │ ├── Crawdaunt.gif │ │ │ ├── Crobat.gif │ │ │ ├── Croconaw.gif │ │ │ ├── Cubone.gif │ │ │ ├── Cyndaquil.gif │ │ │ ├── Delcatty.gif │ │ │ ├── Delibird.gif │ │ │ ├── Deoxys.gif │ │ │ ├── Dewgong.gif │ │ │ ├── Diglett.gif │ │ │ ├── Ditto.gif │ │ │ ├── Dodrio.gif │ │ │ ├── Doduo.gif │ │ │ ├── Donphan.gif │ │ │ ├── Dragonair.gif │ │ │ ├── Dragonite.gif │ │ │ ├── Dratini.gif │ │ │ ├── Drowzee.gif │ │ │ ├── Dugtrio.gif │ │ │ ├── Dunsparce.gif │ │ │ ├── Dusclops.gif │ │ │ ├── Duskull.gif │ │ │ ├── Dustox.gif │ │ │ ├── Eevee.gif │ │ │ ├── Ekans.gif │ │ │ ├── Electabuzz.gif │ │ │ ├── Electrike.gif │ │ │ ├── Electrode.gif │ │ │ ├── Elekid.gif │ │ │ ├── Entei.gif │ │ │ ├── Espeon.gif │ │ │ ├── Exeggcute.gif │ │ │ ├── Exeggutor.gif │ │ │ ├── Exploud.gif │ │ │ ├── Farfetch'd.gif │ │ │ ├── Fearow.gif │ │ │ ├── Feebas.gif │ │ │ ├── Feraligatr.gif │ │ │ ├── Flaaffy.gif │ │ │ ├── Flareon.gif │ │ │ ├── Flygon.gif │ │ │ ├── Forretress.gif │ │ │ ├── Furret.gif │ │ │ ├── Gardevoir.gif │ │ │ ├── Gastly.gif │ │ │ ├── Gengar.gif │ │ │ ├── Geodude.gif │ │ │ ├── Girafarig.gif │ │ │ ├── Glalie.gif │ │ │ ├── Gligar.gif │ │ │ ├── Gloom.gif │ │ │ ├── Golbat.gif │ │ │ ├── Goldeen.gif │ │ │ ├── Golduck.gif │ │ │ ├── Golem.gif │ │ │ ├── Gorebyss.gif │ │ │ ├── Granbull.gif │ │ │ ├── Graveler.gif │ │ │ ├── Grimer.gif │ │ │ ├── Groudon.gif │ │ │ ├── Grovyle.gif │ │ │ ├── Growlithe.gif │ │ │ ├── Grumpig.gif │ │ │ ├── Gulpin.gif │ │ │ ├── Gyarados.gif │ │ │ ├── Hariyama.gif │ │ │ ├── Haunter.gif │ │ │ ├── Heracross.gif │ │ │ ├── Hitmonchan.gif │ │ │ ├── Hitmonlee.gif │ │ │ ├── Hitmontop.gif │ │ │ ├── Ho-oh.gif │ │ │ ├── Hoothoot.gif │ │ │ ├── Hoppip.gif │ │ │ ├── Horsea.gif │ │ │ ├── Houndoom.gif │ │ │ ├── Houndour.gif │ │ │ ├── Huntail.gif │ │ │ ├── Hypno.gif │ │ │ ├── Igglybuff.gif │ │ │ ├── Illumise.gif │ │ │ ├── Ivysaur.gif │ │ │ ├── Jigglypuff.gif │ │ │ ├── Jirachi.gif │ │ │ ├── Jolteon.gif │ │ │ ├── Jumpluff.gif │ │ │ ├── Jynx.gif │ │ │ ├── Kabuto.gif │ │ │ ├── Kabutops.gif │ │ │ ├── Kadabra.gif │ │ │ ├── Kakuna.gif │ │ │ ├── Kangaskhan.gif │ │ │ ├── Kecleon.gif │ │ │ ├── Kingdra.gif │ │ │ ├── Kingler.gif │ │ │ ├── Kirlia.gif │ │ │ ├── Koffing.gif │ │ │ ├── Krabby.gif │ │ │ ├── Kyogre.gif │ │ │ ├── Lairon.gif │ │ │ ├── Lanturn.gif │ │ │ ├── Lapras.gif │ │ │ ├── Larvitar.gif │ │ │ ├── Latias.gif │ │ │ ├── Latios.gif │ │ │ ├── Ledian.gif │ │ │ ├── Ledyba.gif │ │ │ ├── Lickitung.gif │ │ │ ├── Lileep.gif │ │ │ ├── Linoone.gif │ │ │ ├── Lombre.gif │ │ │ ├── Lotad.gif │ │ │ ├── Loudred.gif │ │ │ ├── Ludicolo.gif │ │ │ ├── Lugia.gif │ │ │ ├── Lunatone.gif │ │ │ ├── Luvdisc.gif │ │ │ ├── Machamp.gif │ │ │ ├── Machoke.gif │ │ │ ├── Machop.gif │ │ │ ├── Magby.gif │ │ │ ├── Magcargo.gif │ │ │ ├── Magikarp.gif │ │ │ ├── Magmar.gif │ │ │ ├── Magnemite.gif │ │ │ ├── Magneton.gif │ │ │ ├── Makuhita.gif │ │ │ ├── Manectric.gif │ │ │ ├── Mankey.gif │ │ │ ├── Mantine.gif │ │ │ ├── Mareep.gif │ │ │ ├── Marill.gif │ │ │ ├── Marowak.gif │ │ │ ├── Marshtomp.gif │ │ │ ├── Masquerain.gif │ │ │ ├── Mawile.gif │ │ │ ├── Medicham.gif │ │ │ ├── Meditite.gif │ │ │ ├── Meganium.gif │ │ │ ├── Meowth.gif │ │ │ ├── Metagross.gif │ │ │ ├── Metang.gif │ │ │ ├── Metapod.gif │ │ │ ├── Mew.gif │ │ │ ├── Mewtwo.gif │ │ │ ├── Mightyena.gif │ │ │ ├── Milotic.gif │ │ │ ├── Miltank.gif │ │ │ ├── Minun.gif │ │ │ ├── Misdreavus.gif │ │ │ ├── Moltres.gif │ │ │ ├── Mr. Mime.gif │ │ │ ├── Mudkip.gif │ │ │ ├── Muk.gif │ │ │ ├── Murkrow.gif │ │ │ ├── Natu.gif │ │ │ ├── Nidoking.gif │ │ │ ├── Nidoqueen.gif │ │ │ ├── Nidoran_f.gif │ │ │ ├── Nidoran_m.gif │ │ │ ├── Nidorina.gif │ │ │ ├── Nidorino.gif │ │ │ ├── Nincada.gif │ │ │ ├── Ninetales.gif │ │ │ ├── Ninjask.gif │ │ │ ├── Noctowl.gif │ │ │ ├── Nosepass.gif │ │ │ ├── Numel.gif │ │ │ ├── Nuzleaf.gif │ │ │ ├── Octillery.gif │ │ │ ├── Oddish.gif │ │ │ ├── Omanyte.gif │ │ │ ├── Omastar.gif │ │ │ ├── Onix.gif │ │ │ ├── Paras.gif │ │ │ ├── Parasect.gif │ │ │ ├── Pelipper.gif │ │ │ ├── Persian.gif │ │ │ ├── Phanpy.gif │ │ │ ├── Pichu.gif │ │ │ ├── Pidgeot.gif │ │ │ ├── Pidgeotto.gif │ │ │ ├── Pidgey.gif │ │ │ ├── Pikachu.gif │ │ │ ├── Piloswine.gif │ │ │ ├── Pineco.gif │ │ │ ├── Pinsir.gif │ │ │ ├── Plusle.gif │ │ │ ├── Politoed.gif │ │ │ ├── Poliwag.gif │ │ │ ├── Poliwhirl.gif │ │ │ ├── Poliwrath.gif │ │ │ ├── Ponyta.gif │ │ │ ├── Poochyena.gif │ │ │ ├── Porygon.gif │ │ │ ├── Porygon2.gif │ │ │ ├── Primeape.gif │ │ │ ├── Psyduck.gif │ │ │ ├── Pupitar.gif │ │ │ ├── Quagsire.gif │ │ │ ├── Quilava.gif │ │ │ ├── Qwilfish.gif │ │ │ ├── Raichu.gif │ │ │ ├── Raikou.gif │ │ │ ├── Ralts.gif │ │ │ ├── Rapidash.gif │ │ │ ├── Raticate.gif │ │ │ ├── Rattata.gif │ │ │ ├── Rayquaza.gif │ │ │ ├── Regice.gif │ │ │ ├── Regirock.gif │ │ │ ├── Registeel.gif │ │ │ ├── Relicanth.gif │ │ │ ├── Remoraid.gif │ │ │ ├── Rhydon.gif │ │ │ ├── Rhyhorn.gif │ │ │ ├── Roselia.gif │ │ │ ├── Sableye.gif │ │ │ ├── Salamence.gif │ │ │ ├── Sandshrew.gif │ │ │ ├── Sandslash.gif │ │ │ ├── Sceptile.gif │ │ │ ├── Scizor.gif │ │ │ ├── Scyther.gif │ │ │ ├── Seadra.gif │ │ │ ├── Seaking.gif │ │ │ ├── Sealeo.gif │ │ │ ├── Seedot.gif │ │ │ ├── Seel.gif │ │ │ ├── Sentret.gif │ │ │ ├── Seviper.gif │ │ │ ├── Sharpedo.gif │ │ │ ├── Shedinja.gif │ │ │ ├── Shelgon.gif │ │ │ ├── Shellder.gif │ │ │ ├── Shiftry.gif │ │ │ ├── Shroomish.gif │ │ │ ├── Shuckle.gif │ │ │ ├── Shuppet.gif │ │ │ ├── Silcoon.gif │ │ │ ├── Skarmory.gif │ │ │ ├── Skiploom.gif │ │ │ ├── Skitty.gif │ │ │ ├── Slaking.gif │ │ │ ├── Slakoth.gif │ │ │ ├── Slowbro.gif │ │ │ ├── Slowking.gif │ │ │ ├── Slowpoke.gif │ │ │ ├── Slugma.gif │ │ │ ├── Smeargle.gif │ │ │ ├── Smoochum.gif │ │ │ ├── Sneasel.gif │ │ │ ├── Snorlax.gif │ │ │ ├── Snorunt.gif │ │ │ ├── Snubbull.gif │ │ │ ├── Solrock.gif │ │ │ ├── Spearow.gif │ │ │ ├── Spheal.gif │ │ │ ├── Spinarak.gif │ │ │ ├── Spinda.gif │ │ │ ├── Spoink.gif │ │ │ ├── Squirtle.gif │ │ │ ├── Stantler.gif │ │ │ ├── Starmie.gif │ │ │ ├── Staryu.gif │ │ │ ├── Steelix.gif │ │ │ ├── Sudowoodo.gif │ │ │ ├── Suicune.gif │ │ │ ├── Sunflora.gif │ │ │ ├── Sunkern.gif │ │ │ ├── Surskit.gif │ │ │ ├── Swablu.gif │ │ │ ├── Swalot.gif │ │ │ ├── Swampert.gif │ │ │ ├── Swellow.gif │ │ │ ├── Swinub.gif │ │ │ ├── Taillow.gif │ │ │ ├── Tangela.gif │ │ │ ├── Tauros.gif │ │ │ ├── Teddiursa.gif │ │ │ ├── Tentacool.gif │ │ │ ├── Tentacruel.gif │ │ │ ├── Togepi.gif │ │ │ ├── Togetic.gif │ │ │ ├── Torchic.gif │ │ │ ├── Torkoal.gif │ │ │ ├── Totodile.gif │ │ │ ├── Trapinch.gif │ │ │ ├── Treecko.gif │ │ │ ├── Tropius.gif │ │ │ ├── Typhlosion.gif │ │ │ ├── Tyranitar.gif │ │ │ ├── Tyrogue.gif │ │ │ ├── Umbreon.gif │ │ │ ├── Unown (A).gif │ │ │ ├── Unown (B).gif │ │ │ ├── Unown (C).gif │ │ │ ├── Unown (D).gif │ │ │ ├── Unown (E).gif │ │ │ ├── Unown (F).gif │ │ │ ├── Unown (G).gif │ │ │ ├── Unown (H).gif │ │ │ ├── Unown (I).gif │ │ │ ├── Unown (J).gif │ │ │ ├── Unown (K).gif │ │ │ ├── Unown (L).gif │ │ │ ├── Unown (M).gif │ │ │ ├── Unown (N).gif │ │ │ ├── Unown (O).gif │ │ │ ├── Unown (P).gif │ │ │ ├── Unown (Q).gif │ │ │ ├── Unown (R).gif │ │ │ ├── Unown (S).gif │ │ │ ├── Unown (T).gif │ │ │ ├── Unown (U).gif │ │ │ ├── Unown (V).gif │ │ │ ├── Unown (W).gif │ │ │ ├── Unown (X).gif │ │ │ ├── Unown (Y).gif │ │ │ ├── Unown (Z).gif │ │ │ ├── Unown (em).gif │ │ │ ├── Unown (qm).gif │ │ │ ├── Ursaring.gif │ │ │ ├── Vaporeon.gif │ │ │ ├── Venomoth.gif │ │ │ ├── Venonat.gif │ │ │ ├── Venusaur.gif │ │ │ ├── Vibrava.gif │ │ │ ├── Victreebel.gif │ │ │ ├── Vigoroth.gif │ │ │ ├── Vileplume.gif │ │ │ ├── Volbeat.gif │ │ │ ├── Voltorb.gif │ │ │ ├── Vulpix.gif │ │ │ ├── Wailmer.gif │ │ │ ├── Wailord.gif │ │ │ ├── Walrein.gif │ │ │ ├── Wartortle.gif │ │ │ ├── Weedle.gif │ │ │ ├── Weepinbell.gif │ │ │ ├── Weezing.gif │ │ │ ├── Whiscash.gif │ │ │ ├── Whismur.gif │ │ │ ├── Wigglytuff.gif │ │ │ ├── Wingull.gif │ │ │ ├── Wobbuffet.gif │ │ │ ├── Wooper.gif │ │ │ ├── Wurmple.gif │ │ │ ├── Wynaut.gif │ │ │ ├── Xatu.gif │ │ │ ├── Yanma.gif │ │ │ ├── Zangoose.gif │ │ │ ├── Zapdos.gif │ │ │ ├── Zigzagoon.gif │ │ │ └── Zubat.gif │ ├── pokemon │ │ ├── Egg.png │ │ ├── anti-shiny │ │ │ ├── Abra.png │ │ │ ├── Absol.png │ │ │ ├── Aerodactyl.png │ │ │ ├── Aggron.png │ │ │ ├── Aipom.png │ │ │ ├── Alakazam.png │ │ │ ├── Altaria.png │ │ │ ├── Ampharos.png │ │ │ ├── Anorith.png │ │ │ ├── Arbok.png │ │ │ ├── Arcanine.png │ │ │ ├── Ariados.png │ │ │ ├── Armaldo.png │ │ │ ├── Aron.png │ │ │ ├── Articuno.png │ │ │ ├── Azumarill.png │ │ │ ├── Azurill.png │ │ │ ├── Bagon.png │ │ │ ├── Baltoy.png │ │ │ ├── Banette.png │ │ │ ├── Barboach.png │ │ │ ├── Bayleef.png │ │ │ ├── Beautifly.png │ │ │ ├── Beedrill.png │ │ │ ├── Beldum.png │ │ │ ├── Bellossom.png │ │ │ ├── Bellsprout.png │ │ │ ├── Blastoise.png │ │ │ ├── Blaziken.png │ │ │ ├── Blissey.png │ │ │ ├── Breloom.png │ │ │ ├── Bulbasaur.png │ │ │ ├── Butterfree.png │ │ │ ├── Cacnea.png │ │ │ ├── Cacturne.png │ │ │ ├── Camerupt.png │ │ │ ├── Carvanha.png │ │ │ ├── Cascoon.png │ │ │ ├── Castform.png │ │ │ ├── Caterpie.png │ │ │ ├── Celebi.png │ │ │ ├── Chansey.png │ │ │ ├── Charizard.png │ │ │ ├── Charmander.png │ │ │ ├── Charmeleon.png │ │ │ ├── Chikorita.png │ │ │ ├── Chimecho.png │ │ │ ├── Chinchou.png │ │ │ ├── Clamperl.png │ │ │ ├── Claydol.png │ │ │ ├── Clefable.png │ │ │ ├── Clefairy.png │ │ │ ├── Cleffa.png │ │ │ ├── Cloyster.png │ │ │ ├── Combusken.png │ │ │ ├── Corphish.png │ │ │ ├── Corsola.png │ │ │ ├── Cradily.png │ │ │ ├── Crawdaunt.png │ │ │ ├── Crobat.png │ │ │ ├── Croconaw.png │ │ │ ├── Cubone.png │ │ │ ├── Cyndaquil.png │ │ │ ├── Delcatty.png │ │ │ ├── Delibird.png │ │ │ ├── Deoxys.png │ │ │ ├── Dewgong.png │ │ │ ├── Diglett.png │ │ │ ├── Ditto.png │ │ │ ├── Dodrio.png │ │ │ ├── Doduo.png │ │ │ ├── Donphan.png │ │ │ ├── Dragonair.png │ │ │ ├── Dragonite.png │ │ │ ├── Dratini.png │ │ │ ├── Drowzee.png │ │ │ ├── Dugtrio.png │ │ │ ├── Dunsparce.png │ │ │ ├── Dusclops.png │ │ │ ├── Duskull.png │ │ │ ├── Dustox.png │ │ │ ├── Eevee.png │ │ │ ├── Ekans.png │ │ │ ├── Electabuzz.png │ │ │ ├── Electrike.png │ │ │ ├── Electrode.png │ │ │ ├── Elekid.png │ │ │ ├── Entei.png │ │ │ ├── Espeon.png │ │ │ ├── Exeggcute.png │ │ │ ├── Exeggutor.png │ │ │ ├── Exploud.png │ │ │ ├── Farfetch_d.png │ │ │ ├── Fearow.png │ │ │ ├── Feebas.png │ │ │ ├── Feraligatr.png │ │ │ ├── Flaaffy.png │ │ │ ├── Flareon.png │ │ │ ├── Flygon.png │ │ │ ├── Forretress.png │ │ │ ├── Furret.png │ │ │ ├── Gardevoir.png │ │ │ ├── Gastly.png │ │ │ ├── Gengar.png │ │ │ ├── Geodude.png │ │ │ ├── Girafarig.png │ │ │ ├── Glalie.png │ │ │ ├── Gligar.png │ │ │ ├── Gloom.png │ │ │ ├── Golbat.png │ │ │ ├── Goldeen.png │ │ │ ├── Golduck.png │ │ │ ├── Golem.png │ │ │ ├── Gorebyss.png │ │ │ ├── Granbull.png │ │ │ ├── Graveler.png │ │ │ ├── Grimer.png │ │ │ ├── Groudon.png │ │ │ ├── Grovyle.png │ │ │ ├── Growlithe.png │ │ │ ├── Grumpig.png │ │ │ ├── Gulpin.png │ │ │ ├── Gyarados.png │ │ │ ├── Hariyama.png │ │ │ ├── Haunter.png │ │ │ ├── Heracross.png │ │ │ ├── Hitmonchan.png │ │ │ ├── Hitmonlee.png │ │ │ ├── Hitmontop.png │ │ │ ├── Ho-Oh.png │ │ │ ├── Hoothoot.png │ │ │ ├── Hoppip.png │ │ │ ├── Horsea.png │ │ │ ├── Houndoom.png │ │ │ ├── Houndour.png │ │ │ ├── Huntail.png │ │ │ ├── Hypno.png │ │ │ ├── Igglybuff.png │ │ │ ├── Illumise.png │ │ │ ├── Ivysaur.png │ │ │ ├── Jigglypuff.png │ │ │ ├── Jirachi.png │ │ │ ├── Jolteon.png │ │ │ ├── Jumpluff.png │ │ │ ├── Jynx.png │ │ │ ├── Kabuto.png │ │ │ ├── Kabutops.png │ │ │ ├── Kadabra.png │ │ │ ├── Kakuna.png │ │ │ ├── Kangaskhan.png │ │ │ ├── Kecleon.png │ │ │ ├── Kingdra.png │ │ │ ├── Kingler.png │ │ │ ├── Kirlia.png │ │ │ ├── Koffing.png │ │ │ ├── Krabby.png │ │ │ ├── Kyogre.png │ │ │ ├── Lairon.png │ │ │ ├── Lanturn.png │ │ │ ├── Lapras.png │ │ │ ├── Larvitar.png │ │ │ ├── Latias.png │ │ │ ├── Latios.png │ │ │ ├── Ledian.png │ │ │ ├── Ledyba.png │ │ │ ├── Lickitung.png │ │ │ ├── Lileep.png │ │ │ ├── Linoone.png │ │ │ ├── Lombre.png │ │ │ ├── Lotad.png │ │ │ ├── Loudred.png │ │ │ ├── Ludicolo.png │ │ │ ├── Lugia.png │ │ │ ├── Lunatone.png │ │ │ ├── Luvdisc.png │ │ │ ├── Machamp.png │ │ │ ├── Machoke.png │ │ │ ├── Machop.png │ │ │ ├── Magby.png │ │ │ ├── Magcargo.png │ │ │ ├── Magikarp.png │ │ │ ├── Magmar.png │ │ │ ├── Magnemite.png │ │ │ ├── Magneton.png │ │ │ ├── Makuhita.png │ │ │ ├── Manectric.png │ │ │ ├── Mankey.png │ │ │ ├── Mantine.png │ │ │ ├── Mareep.png │ │ │ ├── Marill.png │ │ │ ├── Marowak.png │ │ │ ├── Marshtomp.png │ │ │ ├── Masquerain.png │ │ │ ├── Mawile.png │ │ │ ├── Medicham.png │ │ │ ├── Meditite.png │ │ │ ├── Meganium.png │ │ │ ├── Meowth.png │ │ │ ├── Metagross.png │ │ │ ├── Metang.png │ │ │ ├── Metapod.png │ │ │ ├── Mew.png │ │ │ ├── Mewtwo.png │ │ │ ├── Mightyena.png │ │ │ ├── Milotic.png │ │ │ ├── Miltank.png │ │ │ ├── Minun.png │ │ │ ├── Misdreavus.png │ │ │ ├── Moltres.png │ │ │ ├── Mr. Mime.png │ │ │ ├── Mudkip.png │ │ │ ├── Muk.png │ │ │ ├── Murkrow.png │ │ │ ├── Natu.png │ │ │ ├── Nidoking.png │ │ │ ├── Nidoqueen.png │ │ │ ├── Nidoran_f.png │ │ │ ├── Nidoran_m.png │ │ │ ├── Nidorina.png │ │ │ ├── Nidorino.png │ │ │ ├── Nincada.png │ │ │ ├── Ninetales.png │ │ │ ├── Ninjask.png │ │ │ ├── Noctowl.png │ │ │ ├── Nosepass.png │ │ │ ├── Numel.png │ │ │ ├── Nuzleaf.png │ │ │ ├── Octillery.png │ │ │ ├── Oddish.png │ │ │ ├── Omanyte.png │ │ │ ├── Omastar.png │ │ │ ├── Onix.png │ │ │ ├── Paras.png │ │ │ ├── Parasect.png │ │ │ ├── Pelipper.png │ │ │ ├── Persian.png │ │ │ ├── Phanpy.png │ │ │ ├── Pichu.png │ │ │ ├── Pidgeot.png │ │ │ ├── Pidgeotto.png │ │ │ ├── Pidgey.png │ │ │ ├── Pikachu.png │ │ │ ├── Piloswine.png │ │ │ ├── Pineco.png │ │ │ ├── Pinsir.png │ │ │ ├── Plusle.png │ │ │ ├── Politoed.png │ │ │ ├── Poliwag.png │ │ │ ├── Poliwhirl.png │ │ │ ├── Poliwrath.png │ │ │ ├── Ponyta.png │ │ │ ├── Poochyena.png │ │ │ ├── Porygon.png │ │ │ ├── Porygon2.png │ │ │ ├── Primeape.png │ │ │ ├── Psyduck.png │ │ │ ├── Pupitar.png │ │ │ ├── Quagsire.png │ │ │ ├── Quilava.png │ │ │ ├── Qwilfish.png │ │ │ ├── Raichu.png │ │ │ ├── Raikou.png │ │ │ ├── Ralts.png │ │ │ ├── Rapidash.png │ │ │ ├── Raticate.png │ │ │ ├── Rattata.png │ │ │ ├── Rayquaza.png │ │ │ ├── Regice.png │ │ │ ├── Regirock.png │ │ │ ├── Registeel.png │ │ │ ├── Relicanth.png │ │ │ ├── Remoraid.png │ │ │ ├── Rhydon.png │ │ │ ├── Rhyhorn.png │ │ │ ├── Roselia.png │ │ │ ├── Sableye.png │ │ │ ├── Salamence.png │ │ │ ├── Sandshrew.png │ │ │ ├── Sandslash.png │ │ │ ├── Sceptile.png │ │ │ ├── Scizor.png │ │ │ ├── Scyther.png │ │ │ ├── Seadra.png │ │ │ ├── Seaking.png │ │ │ ├── Sealeo.png │ │ │ ├── Seedot.png │ │ │ ├── Seel.png │ │ │ ├── Sentret.png │ │ │ ├── Seviper.png │ │ │ ├── Sharpedo.png │ │ │ ├── Shedinja.png │ │ │ ├── Shelgon.png │ │ │ ├── Shellder.png │ │ │ ├── Shiftry.png │ │ │ ├── Shroomish.png │ │ │ ├── Shuckle.png │ │ │ ├── Shuppet.png │ │ │ ├── Silcoon.png │ │ │ ├── Skarmory.png │ │ │ ├── Skiploom.png │ │ │ ├── Skitty.png │ │ │ ├── Slaking.png │ │ │ ├── Slakoth.png │ │ │ ├── Slowbro.png │ │ │ ├── Slowking.png │ │ │ ├── Slowpoke.png │ │ │ ├── Slugma.png │ │ │ ├── Smeargle.png │ │ │ ├── Smoochum.png │ │ │ ├── Sneasel.png │ │ │ ├── Snorlax.png │ │ │ ├── Snorunt.png │ │ │ ├── Snubbull.png │ │ │ ├── Solrock.png │ │ │ ├── Spearow.png │ │ │ ├── Spheal.png │ │ │ ├── Spinarak.png │ │ │ ├── Spinda.png │ │ │ ├── Spoink.png │ │ │ ├── Squirtle.png │ │ │ ├── Stantler.png │ │ │ ├── Starmie.png │ │ │ ├── Staryu.png │ │ │ ├── Steelix.png │ │ │ ├── Sudowoodo.png │ │ │ ├── Suicune.png │ │ │ ├── Sunflora.png │ │ │ ├── Sunkern.png │ │ │ ├── Surskit.png │ │ │ ├── Swablu.png │ │ │ ├── Swalot.png │ │ │ ├── Swampert.png │ │ │ ├── Swellow.png │ │ │ ├── Swinub.png │ │ │ ├── Taillow.png │ │ │ ├── Tangela.png │ │ │ ├── Tauros.png │ │ │ ├── Teddiursa.png │ │ │ ├── Tentacool.png │ │ │ ├── Tentacruel.png │ │ │ ├── Togepi.png │ │ │ ├── Togetic.png │ │ │ ├── Torchic.png │ │ │ ├── Torkoal.png │ │ │ ├── Totodile.png │ │ │ ├── Trapinch.png │ │ │ ├── Treecko.png │ │ │ ├── Tropius.png │ │ │ ├── Typhlosion.png │ │ │ ├── Tyranitar.png │ │ │ ├── Tyrogue.png │ │ │ ├── Umbreon.png │ │ │ ├── Unown (A).png │ │ │ ├── Unown (B).png │ │ │ ├── Unown (C).png │ │ │ ├── Unown (D).png │ │ │ ├── Unown (E).png │ │ │ ├── Unown (F).png │ │ │ ├── Unown (G).png │ │ │ ├── Unown (H).png │ │ │ ├── Unown (I).png │ │ │ ├── Unown (J).png │ │ │ ├── Unown (K).png │ │ │ ├── Unown (L).png │ │ │ ├── Unown (M).png │ │ │ ├── Unown (N).png │ │ │ ├── Unown (O).png │ │ │ ├── Unown (P).png │ │ │ ├── Unown (Q).png │ │ │ ├── Unown (R).png │ │ │ ├── Unown (S).png │ │ │ ├── Unown (T).png │ │ │ ├── Unown (U).png │ │ │ ├── Unown (V).png │ │ │ ├── Unown (W).png │ │ │ ├── Unown (X).png │ │ │ ├── Unown (Y).png │ │ │ ├── Unown (Z).png │ │ │ ├── Unown (em).png │ │ │ ├── Unown (qm).png │ │ │ ├── Ursaring.png │ │ │ ├── Vaporeon.png │ │ │ ├── Venomoth.png │ │ │ ├── Venonat.png │ │ │ ├── Venusaur.png │ │ │ ├── Vibrava.png │ │ │ ├── Victreebel.png │ │ │ ├── Vigoroth.png │ │ │ ├── Vileplume.png │ │ │ ├── Volbeat.png │ │ │ ├── Voltorb.png │ │ │ ├── Vulpix.png │ │ │ ├── Wailmer.png │ │ │ ├── Wailord.png │ │ │ ├── Walrein.png │ │ │ ├── Wartortle.png │ │ │ ├── Weedle.png │ │ │ ├── Weepinbell.png │ │ │ ├── Weezing.png │ │ │ ├── Whiscash.png │ │ │ ├── Whismur.png │ │ │ ├── Wigglytuff.png │ │ │ ├── Wingull.png │ │ │ ├── Wobbuffet.png │ │ │ ├── Wooper.png │ │ │ ├── Wurmple.png │ │ │ ├── Wynaut.png │ │ │ ├── Xatu.png │ │ │ ├── Yanma.png │ │ │ ├── Zangoose.png │ │ │ ├── Zapdos.png │ │ │ ├── Zigzagoon.png │ │ │ └── Zubat.png │ │ ├── normal-cropped │ │ │ ├── Abra.png │ │ │ ├── Absol.png │ │ │ ├── Aerodactyl.png │ │ │ ├── Aggron.png │ │ │ ├── Aipom.png │ │ │ ├── Alakazam.png │ │ │ ├── Altaria.png │ │ │ ├── Ampharos.png │ │ │ ├── Anorith.png │ │ │ ├── Arbok.png │ │ │ ├── Arcanine.png │ │ │ ├── Ariados.png │ │ │ ├── Armaldo.png │ │ │ ├── Aron.png │ │ │ ├── Articuno.png │ │ │ ├── Azumarill.png │ │ │ ├── Azurill.png │ │ │ ├── Bagon.png │ │ │ ├── Baltoy.png │ │ │ ├── Banette.png │ │ │ ├── Barboach.png │ │ │ ├── Bayleef.png │ │ │ ├── Beautifly.png │ │ │ ├── Beedrill.png │ │ │ ├── Beldum.png │ │ │ ├── Bellossom.png │ │ │ ├── Bellsprout.png │ │ │ ├── Blastoise.png │ │ │ ├── Blaziken.png │ │ │ ├── Blissey.png │ │ │ ├── Breloom.png │ │ │ ├── Bulbasaur.png │ │ │ ├── Butterfree.png │ │ │ ├── Cacnea.png │ │ │ ├── Cacturne.png │ │ │ ├── Camerupt.png │ │ │ ├── Carvanha.png │ │ │ ├── Cascoon.png │ │ │ ├── Castform.png │ │ │ ├── Caterpie.png │ │ │ ├── Celebi.png │ │ │ ├── Chansey.png │ │ │ ├── Charizard.png │ │ │ ├── Charmander.png │ │ │ ├── Charmeleon.png │ │ │ ├── Chikorita.png │ │ │ ├── Chimecho.png │ │ │ ├── Chinchou.png │ │ │ ├── Clamperl.png │ │ │ ├── Claydol.png │ │ │ ├── Clefable.png │ │ │ ├── Clefairy.png │ │ │ ├── Cleffa.png │ │ │ ├── Cloyster.png │ │ │ ├── Combusken.png │ │ │ ├── Corphish.png │ │ │ ├── Corsola.png │ │ │ ├── Cradily.png │ │ │ ├── Crawdaunt.png │ │ │ ├── Crobat.png │ │ │ ├── Croconaw.png │ │ │ ├── Cubone.png │ │ │ ├── Cyndaquil.png │ │ │ ├── Delcatty.png │ │ │ ├── Delibird.png │ │ │ ├── Deoxys.png │ │ │ ├── Dewgong.png │ │ │ ├── Diglett.png │ │ │ ├── Ditto.png │ │ │ ├── Dodrio.png │ │ │ ├── Doduo.png │ │ │ ├── Donphan.png │ │ │ ├── Dragonair.png │ │ │ ├── Dragonite.png │ │ │ ├── Dratini.png │ │ │ ├── Drowzee.png │ │ │ ├── Dugtrio.png │ │ │ ├── Dunsparce.png │ │ │ ├── Dusclops.png │ │ │ ├── Duskull.png │ │ │ ├── Dustox.png │ │ │ ├── Eevee.png │ │ │ ├── Ekans.png │ │ │ ├── Electabuzz.png │ │ │ ├── Electrike.png │ │ │ ├── Electrode.png │ │ │ ├── Elekid.png │ │ │ ├── Entei.png │ │ │ ├── Espeon.png │ │ │ ├── Exeggcute.png │ │ │ ├── Exeggutor.png │ │ │ ├── Exploud.png │ │ │ ├── Farfetch_d.png │ │ │ ├── Fearow.png │ │ │ ├── Feebas.png │ │ │ ├── Feraligatr.png │ │ │ ├── Flaaffy.png │ │ │ ├── Flareon.png │ │ │ ├── Flygon.png │ │ │ ├── Forretress.png │ │ │ ├── Furret.png │ │ │ ├── Gardevoir.png │ │ │ ├── Gastly.png │ │ │ ├── Gengar.png │ │ │ ├── Geodude.png │ │ │ ├── Girafarig.png │ │ │ ├── Glalie.png │ │ │ ├── Gligar.png │ │ │ ├── Gloom.png │ │ │ ├── Golbat.png │ │ │ ├── Goldeen.png │ │ │ ├── Golduck.png │ │ │ ├── Golem.png │ │ │ ├── Gorebyss.png │ │ │ ├── Granbull.png │ │ │ ├── Graveler.png │ │ │ ├── Grimer.png │ │ │ ├── Groudon.png │ │ │ ├── Grovyle.png │ │ │ ├── Growlithe.png │ │ │ ├── Grumpig.png │ │ │ ├── Gulpin.png │ │ │ ├── Gyarados.png │ │ │ ├── Hariyama.png │ │ │ ├── Haunter.png │ │ │ ├── Heracross.png │ │ │ ├── Hitmonchan.png │ │ │ ├── Hitmonlee.png │ │ │ ├── Hitmontop.png │ │ │ ├── Ho-Oh.png │ │ │ ├── Hoothoot.png │ │ │ ├── Hoppip.png │ │ │ ├── Horsea.png │ │ │ ├── Houndoom.png │ │ │ ├── Houndour.png │ │ │ ├── Huntail.png │ │ │ ├── Hypno.png │ │ │ ├── Igglybuff.png │ │ │ ├── Illumise.png │ │ │ ├── Ivysaur.png │ │ │ ├── Jigglypuff.png │ │ │ ├── Jirachi.png │ │ │ ├── Jolteon.png │ │ │ ├── Jumpluff.png │ │ │ ├── Jynx.png │ │ │ ├── Kabuto.png │ │ │ ├── Kabutops.png │ │ │ ├── Kadabra.png │ │ │ ├── Kakuna.png │ │ │ ├── Kangaskhan.png │ │ │ ├── Kecleon.png │ │ │ ├── Kingdra.png │ │ │ ├── Kingler.png │ │ │ ├── Kirlia.png │ │ │ ├── Koffing.png │ │ │ ├── Krabby.png │ │ │ ├── Kyogre.png │ │ │ ├── Lairon.png │ │ │ ├── Lanturn.png │ │ │ ├── Lapras.png │ │ │ ├── Larvitar.png │ │ │ ├── Latias.png │ │ │ ├── Latios.png │ │ │ ├── Ledian.png │ │ │ ├── Ledyba.png │ │ │ ├── Lickitung.png │ │ │ ├── Lileep.png │ │ │ ├── Linoone.png │ │ │ ├── Lombre.png │ │ │ ├── Lotad.png │ │ │ ├── Loudred.png │ │ │ ├── Ludicolo.png │ │ │ ├── Lugia.png │ │ │ ├── Lunatone.png │ │ │ ├── Luvdisc.png │ │ │ ├── Machamp.png │ │ │ ├── Machoke.png │ │ │ ├── Machop.png │ │ │ ├── Magby.png │ │ │ ├── Magcargo.png │ │ │ ├── Magikarp.png │ │ │ ├── Magmar.png │ │ │ ├── Magnemite.png │ │ │ ├── Magneton.png │ │ │ ├── Makuhita.png │ │ │ ├── Manectric.png │ │ │ ├── Mankey.png │ │ │ ├── Mantine.png │ │ │ ├── Mareep.png │ │ │ ├── Marill.png │ │ │ ├── Marowak.png │ │ │ ├── Marshtomp.png │ │ │ ├── Masquerain.png │ │ │ ├── Mawile.png │ │ │ ├── Medicham.png │ │ │ ├── Meditite.png │ │ │ ├── Meganium.png │ │ │ ├── Meowth.png │ │ │ ├── Metagross.png │ │ │ ├── Metang.png │ │ │ ├── Metapod.png │ │ │ ├── Mew.png │ │ │ ├── Mewtwo.png │ │ │ ├── Mightyena.png │ │ │ ├── Milotic.png │ │ │ ├── Miltank.png │ │ │ ├── Minun.png │ │ │ ├── Misdreavus.png │ │ │ ├── Moltres.png │ │ │ ├── Mr. Mime.png │ │ │ ├── Mudkip.png │ │ │ ├── Muk.png │ │ │ ├── Murkrow.png │ │ │ ├── Natu.png │ │ │ ├── Nidoking.png │ │ │ ├── Nidoqueen.png │ │ │ ├── Nidoran_f.png │ │ │ ├── Nidoran_m.png │ │ │ ├── Nidorina.png │ │ │ ├── Nidorino.png │ │ │ ├── Nincada.png │ │ │ ├── Ninetales.png │ │ │ ├── Ninjask.png │ │ │ ├── Noctowl.png │ │ │ ├── Nosepass.png │ │ │ ├── Numel.png │ │ │ ├── Nuzleaf.png │ │ │ ├── Octillery.png │ │ │ ├── Oddish.png │ │ │ ├── Omanyte.png │ │ │ ├── Omastar.png │ │ │ ├── Onix.png │ │ │ ├── Paras.png │ │ │ ├── Parasect.png │ │ │ ├── Pelipper.png │ │ │ ├── Persian.png │ │ │ ├── Phanpy.png │ │ │ ├── Pichu.png │ │ │ ├── Pidgeot.png │ │ │ ├── Pidgeotto.png │ │ │ ├── Pidgey.png │ │ │ ├── Pikachu.png │ │ │ ├── Piloswine.png │ │ │ ├── Pineco.png │ │ │ ├── Pinsir.png │ │ │ ├── Plusle.png │ │ │ ├── Politoed.png │ │ │ ├── Poliwag.png │ │ │ ├── Poliwhirl.png │ │ │ ├── Poliwrath.png │ │ │ ├── Ponyta.png │ │ │ ├── Poochyena.png │ │ │ ├── Porygon.png │ │ │ ├── Porygon2.png │ │ │ ├── Primeape.png │ │ │ ├── Psyduck.png │ │ │ ├── Pupitar.png │ │ │ ├── Quagsire.png │ │ │ ├── Quilava.png │ │ │ ├── Qwilfish.png │ │ │ ├── Raichu.png │ │ │ ├── Raikou.png │ │ │ ├── Ralts.png │ │ │ ├── Rapidash.png │ │ │ ├── Raticate.png │ │ │ ├── Rattata.png │ │ │ ├── Rayquaza.png │ │ │ ├── Regice.png │ │ │ ├── Regirock.png │ │ │ ├── Registeel.png │ │ │ ├── Relicanth.png │ │ │ ├── Remoraid.png │ │ │ ├── Rhydon.png │ │ │ ├── Rhyhorn.png │ │ │ ├── Roselia.png │ │ │ ├── Sableye.png │ │ │ ├── Salamence.png │ │ │ ├── Sandshrew.png │ │ │ ├── Sandslash.png │ │ │ ├── Sceptile.png │ │ │ ├── Scizor.png │ │ │ ├── Scyther.png │ │ │ ├── Seadra.png │ │ │ ├── Seaking.png │ │ │ ├── Sealeo.png │ │ │ ├── Seedot.png │ │ │ ├── Seel.png │ │ │ ├── Sentret.png │ │ │ ├── Seviper.png │ │ │ ├── Sharpedo.png │ │ │ ├── Shedinja.png │ │ │ ├── Shelgon.png │ │ │ ├── Shellder.png │ │ │ ├── Shiftry.png │ │ │ ├── Shroomish.png │ │ │ ├── Shuckle.png │ │ │ ├── Shuppet.png │ │ │ ├── Silcoon.png │ │ │ ├── Skarmory.png │ │ │ ├── Skiploom.png │ │ │ ├── Skitty.png │ │ │ ├── Slaking.png │ │ │ ├── Slakoth.png │ │ │ ├── Slowbro.png │ │ │ ├── Slowking.png │ │ │ ├── Slowpoke.png │ │ │ ├── Slugma.png │ │ │ ├── Smeargle.png │ │ │ ├── Smoochum.png │ │ │ ├── Sneasel.png │ │ │ ├── Snorlax.png │ │ │ ├── Snorunt.png │ │ │ ├── Snubbull.png │ │ │ ├── Solrock.png │ │ │ ├── Spearow.png │ │ │ ├── Spheal.png │ │ │ ├── Spinarak.png │ │ │ ├── Spinda.png │ │ │ ├── Spoink.png │ │ │ ├── Squirtle.png │ │ │ ├── Stantler.png │ │ │ ├── Starmie.png │ │ │ ├── Staryu.png │ │ │ ├── Steelix.png │ │ │ ├── Sudowoodo.png │ │ │ ├── Suicune.png │ │ │ ├── Sunflora.png │ │ │ ├── Sunkern.png │ │ │ ├── Surskit.png │ │ │ ├── Swablu.png │ │ │ ├── Swalot.png │ │ │ ├── Swampert.png │ │ │ ├── Swellow.png │ │ │ ├── Swinub.png │ │ │ ├── Taillow.png │ │ │ ├── Tangela.png │ │ │ ├── Tauros.png │ │ │ ├── Teddiursa.png │ │ │ ├── Tentacool.png │ │ │ ├── Tentacruel.png │ │ │ ├── Togepi.png │ │ │ ├── Togetic.png │ │ │ ├── Torchic.png │ │ │ ├── Torkoal.png │ │ │ ├── Totodile.png │ │ │ ├── Trapinch.png │ │ │ ├── Treecko.png │ │ │ ├── Tropius.png │ │ │ ├── Typhlosion.png │ │ │ ├── Tyranitar.png │ │ │ ├── Tyrogue.png │ │ │ ├── Umbreon.png │ │ │ ├── Unown (A).png │ │ │ ├── Unown (B).png │ │ │ ├── Unown (C).png │ │ │ ├── Unown (D).png │ │ │ ├── Unown (E).png │ │ │ ├── Unown (F).png │ │ │ ├── Unown (G).png │ │ │ ├── Unown (H).png │ │ │ ├── Unown (I).png │ │ │ ├── Unown (J).png │ │ │ ├── Unown (K).png │ │ │ ├── Unown (L).png │ │ │ ├── Unown (M).png │ │ │ ├── Unown (N).png │ │ │ ├── Unown (O).png │ │ │ ├── Unown (P).png │ │ │ ├── Unown (Q).png │ │ │ ├── Unown (R).png │ │ │ ├── Unown (S).png │ │ │ ├── Unown (T).png │ │ │ ├── Unown (U).png │ │ │ ├── Unown (V).png │ │ │ ├── Unown (W).png │ │ │ ├── Unown (X).png │ │ │ ├── Unown (Y).png │ │ │ ├── Unown (Z).png │ │ │ ├── Unown (em).png │ │ │ ├── Unown (qm).png │ │ │ ├── Ursaring.png │ │ │ ├── Vaporeon.png │ │ │ ├── Venomoth.png │ │ │ ├── Venonat.png │ │ │ ├── Venusaur.png │ │ │ ├── Vibrava.png │ │ │ ├── Victreebel.png │ │ │ ├── Vigoroth.png │ │ │ ├── Vileplume.png │ │ │ ├── Volbeat.png │ │ │ ├── Voltorb.png │ │ │ ├── Vulpix.png │ │ │ ├── Wailmer.png │ │ │ ├── Wailord.png │ │ │ ├── Walrein.png │ │ │ ├── Wartortle.png │ │ │ ├── Weedle.png │ │ │ ├── Weepinbell.png │ │ │ ├── Weezing.png │ │ │ ├── Whiscash.png │ │ │ ├── Whismur.png │ │ │ ├── Wigglytuff.png │ │ │ ├── Wingull.png │ │ │ ├── Wobbuffet.png │ │ │ ├── Wooper.png │ │ │ ├── Wurmple.png │ │ │ ├── Wynaut.png │ │ │ ├── Xatu.png │ │ │ ├── Yanma.png │ │ │ ├── Zangoose.png │ │ │ ├── Zapdos.png │ │ │ ├── Zigzagoon.png │ │ │ └── Zubat.png │ │ ├── normal │ │ │ ├── Abra.png │ │ │ ├── Absol.png │ │ │ ├── Aerodactyl.png │ │ │ ├── Aggron.png │ │ │ ├── Aipom.png │ │ │ ├── Alakazam.png │ │ │ ├── Altaria.png │ │ │ ├── Ampharos.png │ │ │ ├── Anorith.png │ │ │ ├── Arbok.png │ │ │ ├── Arcanine.png │ │ │ ├── Ariados.png │ │ │ ├── Armaldo.png │ │ │ ├── Aron.png │ │ │ ├── Articuno.png │ │ │ ├── Azumarill.png │ │ │ ├── Azurill.png │ │ │ ├── Bagon.png │ │ │ ├── Baltoy.png │ │ │ ├── Banette.png │ │ │ ├── Barboach.png │ │ │ ├── Bayleef.png │ │ │ ├── Beautifly.png │ │ │ ├── Beedrill.png │ │ │ ├── Beldum.png │ │ │ ├── Bellossom.png │ │ │ ├── Bellsprout.png │ │ │ ├── Blastoise.png │ │ │ ├── Blaziken.png │ │ │ ├── Blissey.png │ │ │ ├── Breloom.png │ │ │ ├── Bulbasaur.png │ │ │ ├── Butterfree.png │ │ │ ├── Cacnea.png │ │ │ ├── Cacturne.png │ │ │ ├── Camerupt.png │ │ │ ├── Carvanha.png │ │ │ ├── Cascoon.png │ │ │ ├── Castform.png │ │ │ ├── Caterpie.png │ │ │ ├── Celebi.png │ │ │ ├── Chansey.png │ │ │ ├── Charizard.png │ │ │ ├── Charmander.png │ │ │ ├── Charmeleon.png │ │ │ ├── Chikorita.png │ │ │ ├── Chimecho.png │ │ │ ├── Chinchou.png │ │ │ ├── Clamperl.png │ │ │ ├── Claydol.png │ │ │ ├── Clefable.png │ │ │ ├── Clefairy.png │ │ │ ├── Cleffa.png │ │ │ ├── Cloyster.png │ │ │ ├── Combusken.png │ │ │ ├── Corphish.png │ │ │ ├── Corsola.png │ │ │ ├── Cradily.png │ │ │ ├── Crawdaunt.png │ │ │ ├── Crobat.png │ │ │ ├── Croconaw.png │ │ │ ├── Cubone.png │ │ │ ├── Cyndaquil.png │ │ │ ├── Delcatty.png │ │ │ ├── Delibird.png │ │ │ ├── Deoxys.png │ │ │ ├── Dewgong.png │ │ │ ├── Diglett.png │ │ │ ├── Ditto.png │ │ │ ├── Dodrio.png │ │ │ ├── Doduo.png │ │ │ ├── Donphan.png │ │ │ ├── Dragonair.png │ │ │ ├── Dragonite.png │ │ │ ├── Dratini.png │ │ │ ├── Drowzee.png │ │ │ ├── Dugtrio.png │ │ │ ├── Dunsparce.png │ │ │ ├── Dusclops.png │ │ │ ├── Duskull.png │ │ │ ├── Dustox.png │ │ │ ├── Eevee.png │ │ │ ├── Ekans.png │ │ │ ├── Electabuzz.png │ │ │ ├── Electrike.png │ │ │ ├── Electrode.png │ │ │ ├── Elekid.png │ │ │ ├── Entei.png │ │ │ ├── Espeon.png │ │ │ ├── Exeggcute.png │ │ │ ├── Exeggutor.png │ │ │ ├── Exploud.png │ │ │ ├── Farfetch_d.png │ │ │ ├── Fearow.png │ │ │ ├── Feebas.png │ │ │ ├── Feraligatr.png │ │ │ ├── Flaaffy.png │ │ │ ├── Flareon.png │ │ │ ├── Flygon.png │ │ │ ├── Forretress.png │ │ │ ├── Furret.png │ │ │ ├── Gardevoir.png │ │ │ ├── Gastly.png │ │ │ ├── Gengar.png │ │ │ ├── Geodude.png │ │ │ ├── Girafarig.png │ │ │ ├── Glalie.png │ │ │ ├── Gligar.png │ │ │ ├── Gloom.png │ │ │ ├── Golbat.png │ │ │ ├── Goldeen.png │ │ │ ├── Golduck.png │ │ │ ├── Golem.png │ │ │ ├── Gorebyss.png │ │ │ ├── Granbull.png │ │ │ ├── Graveler.png │ │ │ ├── Grimer.png │ │ │ ├── Groudon.png │ │ │ ├── Grovyle.png │ │ │ ├── Growlithe.png │ │ │ ├── Grumpig.png │ │ │ ├── Gulpin.png │ │ │ ├── Gyarados.png │ │ │ ├── Hariyama.png │ │ │ ├── Haunter.png │ │ │ ├── Heracross.png │ │ │ ├── Hitmonchan.png │ │ │ ├── Hitmonlee.png │ │ │ ├── Hitmontop.png │ │ │ ├── Ho-Oh.png │ │ │ ├── Hoothoot.png │ │ │ ├── Hoppip.png │ │ │ ├── Horsea.png │ │ │ ├── Houndoom.png │ │ │ ├── Houndour.png │ │ │ ├── Huntail.png │ │ │ ├── Hypno.png │ │ │ ├── Igglybuff.png │ │ │ ├── Illumise.png │ │ │ ├── Ivysaur.png │ │ │ ├── Jigglypuff.png │ │ │ ├── Jirachi.png │ │ │ ├── Jolteon.png │ │ │ ├── Jumpluff.png │ │ │ ├── Jynx.png │ │ │ ├── Kabuto.png │ │ │ ├── Kabutops.png │ │ │ ├── Kadabra.png │ │ │ ├── Kakuna.png │ │ │ ├── Kangaskhan.png │ │ │ ├── Kecleon.png │ │ │ ├── Kingdra.png │ │ │ ├── Kingler.png │ │ │ ├── Kirlia.png │ │ │ ├── Koffing.png │ │ │ ├── Krabby.png │ │ │ ├── Kyogre.png │ │ │ ├── Lairon.png │ │ │ ├── Lanturn.png │ │ │ ├── Lapras.png │ │ │ ├── Larvitar.png │ │ │ ├── Latias.png │ │ │ ├── Latios.png │ │ │ ├── Ledian.png │ │ │ ├── Ledyba.png │ │ │ ├── Lickitung.png │ │ │ ├── Lileep.png │ │ │ ├── Linoone.png │ │ │ ├── Lombre.png │ │ │ ├── Lotad.png │ │ │ ├── Loudred.png │ │ │ ├── Ludicolo.png │ │ │ ├── Lugia.png │ │ │ ├── Lunatone.png │ │ │ ├── Luvdisc.png │ │ │ ├── Machamp.png │ │ │ ├── Machoke.png │ │ │ ├── Machop.png │ │ │ ├── Magby.png │ │ │ ├── Magcargo.png │ │ │ ├── Magikarp.png │ │ │ ├── Magmar.png │ │ │ ├── Magnemite.png │ │ │ ├── Magneton.png │ │ │ ├── Makuhita.png │ │ │ ├── Manectric.png │ │ │ ├── Mankey.png │ │ │ ├── Mantine.png │ │ │ ├── Mareep.png │ │ │ ├── Marill.png │ │ │ ├── Marowak.png │ │ │ ├── Marshtomp.png │ │ │ ├── Masquerain.png │ │ │ ├── Mawile.png │ │ │ ├── Medicham.png │ │ │ ├── Meditite.png │ │ │ ├── Meganium.png │ │ │ ├── Meowth.png │ │ │ ├── Metagross.png │ │ │ ├── Metang.png │ │ │ ├── Metapod.png │ │ │ ├── Mew.png │ │ │ ├── Mewtwo.png │ │ │ ├── Mightyena.png │ │ │ ├── Milotic.png │ │ │ ├── Miltank.png │ │ │ ├── Minun.png │ │ │ ├── Misdreavus.png │ │ │ ├── Moltres.png │ │ │ ├── Mr. Mime.png │ │ │ ├── Mudkip.png │ │ │ ├── Muk.png │ │ │ ├── Murkrow.png │ │ │ ├── Natu.png │ │ │ ├── Nidoking.png │ │ │ ├── Nidoqueen.png │ │ │ ├── Nidoran_f.png │ │ │ ├── Nidoran_m.png │ │ │ ├── Nidorina.png │ │ │ ├── Nidorino.png │ │ │ ├── Nincada.png │ │ │ ├── Ninetales.png │ │ │ ├── Ninjask.png │ │ │ ├── Noctowl.png │ │ │ ├── Nosepass.png │ │ │ ├── Numel.png │ │ │ ├── Nuzleaf.png │ │ │ ├── Octillery.png │ │ │ ├── Oddish.png │ │ │ ├── Omanyte.png │ │ │ ├── Omastar.png │ │ │ ├── Onix.png │ │ │ ├── Paras.png │ │ │ ├── Parasect.png │ │ │ ├── Pelipper.png │ │ │ ├── Persian.png │ │ │ ├── Phanpy.png │ │ │ ├── Pichu.png │ │ │ ├── Pidgeot.png │ │ │ ├── Pidgeotto.png │ │ │ ├── Pidgey.png │ │ │ ├── Pikachu.png │ │ │ ├── Piloswine.png │ │ │ ├── Pineco.png │ │ │ ├── Pinsir.png │ │ │ ├── Plusle.png │ │ │ ├── Politoed.png │ │ │ ├── Poliwag.png │ │ │ ├── Poliwhirl.png │ │ │ ├── Poliwrath.png │ │ │ ├── Ponyta.png │ │ │ ├── Poochyena.png │ │ │ ├── Porygon.png │ │ │ ├── Porygon2.png │ │ │ ├── Primeape.png │ │ │ ├── Psyduck.png │ │ │ ├── Pupitar.png │ │ │ ├── Quagsire.png │ │ │ ├── Quilava.png │ │ │ ├── Qwilfish.png │ │ │ ├── Raichu.png │ │ │ ├── Raikou.png │ │ │ ├── Ralts.png │ │ │ ├── Rapidash.png │ │ │ ├── Raticate.png │ │ │ ├── Rattata.png │ │ │ ├── Rayquaza.png │ │ │ ├── Regice.png │ │ │ ├── Regirock.png │ │ │ ├── Registeel.png │ │ │ ├── Relicanth.png │ │ │ ├── Remoraid.png │ │ │ ├── Rhydon.png │ │ │ ├── Rhyhorn.png │ │ │ ├── Roselia.png │ │ │ ├── Sableye.png │ │ │ ├── Salamence.png │ │ │ ├── Sandshrew.png │ │ │ ├── Sandslash.png │ │ │ ├── Sceptile.png │ │ │ ├── Scizor.png │ │ │ ├── Scyther.png │ │ │ ├── Seadra.png │ │ │ ├── Seaking.png │ │ │ ├── Sealeo.png │ │ │ ├── Seedot.png │ │ │ ├── Seel.png │ │ │ ├── Sentret.png │ │ │ ├── Seviper.png │ │ │ ├── Sharpedo.png │ │ │ ├── Shedinja.png │ │ │ ├── Shelgon.png │ │ │ ├── Shellder.png │ │ │ ├── Shiftry.png │ │ │ ├── Shroomish.png │ │ │ ├── Shuckle.png │ │ │ ├── Shuppet.png │ │ │ ├── Silcoon.png │ │ │ ├── Skarmory.png │ │ │ ├── Skiploom.png │ │ │ ├── Skitty.png │ │ │ ├── Slaking.png │ │ │ ├── Slakoth.png │ │ │ ├── Slowbro.png │ │ │ ├── Slowking.png │ │ │ ├── Slowpoke.png │ │ │ ├── Slugma.png │ │ │ ├── Smeargle.png │ │ │ ├── Smoochum.png │ │ │ ├── Sneasel.png │ │ │ ├── Snorlax.png │ │ │ ├── Snorunt.png │ │ │ ├── Snubbull.png │ │ │ ├── Solrock.png │ │ │ ├── Spearow.png │ │ │ ├── Spheal.png │ │ │ ├── Spinarak.png │ │ │ ├── Spinda.png │ │ │ ├── Spoink.png │ │ │ ├── Squirtle.png │ │ │ ├── Stantler.png │ │ │ ├── Starmie.png │ │ │ ├── Staryu.png │ │ │ ├── Steelix.png │ │ │ ├── Sudowoodo.png │ │ │ ├── Suicune.png │ │ │ ├── Sunflora.png │ │ │ ├── Sunkern.png │ │ │ ├── Surskit.png │ │ │ ├── Swablu.png │ │ │ ├── Swalot.png │ │ │ ├── Swampert.png │ │ │ ├── Swellow.png │ │ │ ├── Swinub.png │ │ │ ├── Taillow.png │ │ │ ├── Tangela.png │ │ │ ├── Tauros.png │ │ │ ├── Teddiursa.png │ │ │ ├── Tentacool.png │ │ │ ├── Tentacruel.png │ │ │ ├── Togepi.png │ │ │ ├── Togetic.png │ │ │ ├── Torchic.png │ │ │ ├── Torkoal.png │ │ │ ├── Totodile.png │ │ │ ├── Trapinch.png │ │ │ ├── Treecko.png │ │ │ ├── Tropius.png │ │ │ ├── Typhlosion.png │ │ │ ├── Tyranitar.png │ │ │ ├── Tyrogue.png │ │ │ ├── Umbreon.png │ │ │ ├── Unown (A).png │ │ │ ├── Unown (B).png │ │ │ ├── Unown (C).png │ │ │ ├── Unown (D).png │ │ │ ├── Unown (E).png │ │ │ ├── Unown (F).png │ │ │ ├── Unown (G).png │ │ │ ├── Unown (H).png │ │ │ ├── Unown (I).png │ │ │ ├── Unown (J).png │ │ │ ├── Unown (K).png │ │ │ ├── Unown (L).png │ │ │ ├── Unown (M).png │ │ │ ├── Unown (N).png │ │ │ ├── Unown (O).png │ │ │ ├── Unown (P).png │ │ │ ├── Unown (Q).png │ │ │ ├── Unown (R).png │ │ │ ├── Unown (S).png │ │ │ ├── Unown (T).png │ │ │ ├── Unown (U).png │ │ │ ├── Unown (V).png │ │ │ ├── Unown (W).png │ │ │ ├── Unown (X).png │ │ │ ├── Unown (Y).png │ │ │ ├── Unown (Z).png │ │ │ ├── Unown (em).png │ │ │ ├── Unown (qm).png │ │ │ ├── Ursaring.png │ │ │ ├── Vaporeon.png │ │ │ ├── Venomoth.png │ │ │ ├── Venonat.png │ │ │ ├── Venusaur.png │ │ │ ├── Vibrava.png │ │ │ ├── Victreebel.png │ │ │ ├── Vigoroth.png │ │ │ ├── Vileplume.png │ │ │ ├── Volbeat.png │ │ │ ├── Voltorb.png │ │ │ ├── Vulpix.png │ │ │ ├── Wailmer.png │ │ │ ├── Wailord.png │ │ │ ├── Walrein.png │ │ │ ├── Wartortle.png │ │ │ ├── Weedle.png │ │ │ ├── Weepinbell.png │ │ │ ├── Weezing.png │ │ │ ├── Whiscash.png │ │ │ ├── Whismur.png │ │ │ ├── Wigglytuff.png │ │ │ ├── Wingull.png │ │ │ ├── Wobbuffet.png │ │ │ ├── Wooper.png │ │ │ ├── Wurmple.png │ │ │ ├── Wynaut.png │ │ │ ├── Xatu.png │ │ │ ├── Yanma.png │ │ │ ├── Zangoose.png │ │ │ ├── Zapdos.png │ │ │ ├── Zigzagoon.png │ │ │ └── Zubat.png │ │ ├── shiny-cropped │ │ │ ├── Abra.png │ │ │ ├── Absol.png │ │ │ ├── Aerodactyl.png │ │ │ ├── Aggron.png │ │ │ ├── Aipom.png │ │ │ ├── Alakazam.png │ │ │ ├── Altaria.png │ │ │ ├── Ampharos.png │ │ │ ├── Anorith.png │ │ │ ├── Arbok.png │ │ │ ├── Arcanine.png │ │ │ ├── Ariados.png │ │ │ ├── Armaldo.png │ │ │ ├── Aron.png │ │ │ ├── Articuno.png │ │ │ ├── Azumarill.png │ │ │ ├── Azurill.png │ │ │ ├── Bagon.png │ │ │ ├── Baltoy.png │ │ │ ├── Banette.png │ │ │ ├── Barboach.png │ │ │ ├── Bayleef.png │ │ │ ├── Beautifly.png │ │ │ ├── Beedrill.png │ │ │ ├── Beldum.png │ │ │ ├── Bellossom.png │ │ │ ├── Bellsprout.png │ │ │ ├── Blastoise.png │ │ │ ├── Blaziken.png │ │ │ ├── Blissey.png │ │ │ ├── Breloom.png │ │ │ ├── Bulbasaur.png │ │ │ ├── Butterfree.png │ │ │ ├── Cacnea.png │ │ │ ├── Cacturne.png │ │ │ ├── Camerupt.png │ │ │ ├── Carvanha.png │ │ │ ├── Cascoon.png │ │ │ ├── Castform.png │ │ │ ├── Caterpie.png │ │ │ ├── Celebi.png │ │ │ ├── Chansey.png │ │ │ ├── Charizard.png │ │ │ ├── Charmander.png │ │ │ ├── Charmeleon.png │ │ │ ├── Chikorita.png │ │ │ ├── Chimecho.png │ │ │ ├── Chinchou.png │ │ │ ├── Clamperl.png │ │ │ ├── Claydol.png │ │ │ ├── Clefable.png │ │ │ ├── Clefairy.png │ │ │ ├── Cleffa.png │ │ │ ├── Cloyster.png │ │ │ ├── Combusken.png │ │ │ ├── Corphish.png │ │ │ ├── Corsola.png │ │ │ ├── Cradily.png │ │ │ ├── Crawdaunt.png │ │ │ ├── Crobat.png │ │ │ ├── Croconaw.png │ │ │ ├── Cubone.png │ │ │ ├── Cyndaquil.png │ │ │ ├── Delcatty.png │ │ │ ├── Delibird.png │ │ │ ├── Deoxys.png │ │ │ ├── Dewgong.png │ │ │ ├── Diglett.png │ │ │ ├── Ditto.png │ │ │ ├── Dodrio.png │ │ │ ├── Doduo.png │ │ │ ├── Donphan.png │ │ │ ├── Dragonair.png │ │ │ ├── Dragonite.png │ │ │ ├── Dratini.png │ │ │ ├── Drowzee.png │ │ │ ├── Dugtrio.png │ │ │ ├── Dunsparce.png │ │ │ ├── Dusclops.png │ │ │ ├── Duskull.png │ │ │ ├── Dustox.png │ │ │ ├── Eevee.png │ │ │ ├── Ekans.png │ │ │ ├── Electabuzz.png │ │ │ ├── Electrike.png │ │ │ ├── Electrode.png │ │ │ ├── Elekid.png │ │ │ ├── Entei.png │ │ │ ├── Espeon.png │ │ │ ├── Exeggcute.png │ │ │ ├── Exeggutor.png │ │ │ ├── Exploud.png │ │ │ ├── Farfetch_d.png │ │ │ ├── Fearow.png │ │ │ ├── Feebas.png │ │ │ ├── Feraligatr.png │ │ │ ├── Flaaffy.png │ │ │ ├── Flareon.png │ │ │ ├── Flygon.png │ │ │ ├── Forretress.png │ │ │ ├── Furret.png │ │ │ ├── Gardevoir.png │ │ │ ├── Gastly.png │ │ │ ├── Gengar.png │ │ │ ├── Geodude.png │ │ │ ├── Girafarig.png │ │ │ ├── Glalie.png │ │ │ ├── Gligar.png │ │ │ ├── Gloom.png │ │ │ ├── Golbat.png │ │ │ ├── Goldeen.png │ │ │ ├── Golduck.png │ │ │ ├── Golem.png │ │ │ ├── Gorebyss.png │ │ │ ├── Granbull.png │ │ │ ├── Graveler.png │ │ │ ├── Grimer.png │ │ │ ├── Groudon.png │ │ │ ├── Grovyle.png │ │ │ ├── Growlithe.png │ │ │ ├── Grumpig.png │ │ │ ├── Gulpin.png │ │ │ ├── Gyarados.png │ │ │ ├── Hariyama.png │ │ │ ├── Haunter.png │ │ │ ├── Heracross.png │ │ │ ├── Hitmonchan.png │ │ │ ├── Hitmonlee.png │ │ │ ├── Hitmontop.png │ │ │ ├── Ho-Oh.png │ │ │ ├── Hoothoot.png │ │ │ ├── Hoppip.png │ │ │ ├── Horsea.png │ │ │ ├── Houndoom.png │ │ │ ├── Houndour.png │ │ │ ├── Huntail.png │ │ │ ├── Hypno.png │ │ │ ├── Igglybuff.png │ │ │ ├── Illumise.png │ │ │ ├── Ivysaur.png │ │ │ ├── Jigglypuff.png │ │ │ ├── Jirachi.png │ │ │ ├── Jolteon.png │ │ │ ├── Jumpluff.png │ │ │ ├── Jynx.png │ │ │ ├── Kabuto.png │ │ │ ├── Kabutops.png │ │ │ ├── Kadabra.png │ │ │ ├── Kakuna.png │ │ │ ├── Kangaskhan.png │ │ │ ├── Kecleon.png │ │ │ ├── Kingdra.png │ │ │ ├── Kingler.png │ │ │ ├── Kirlia.png │ │ │ ├── Koffing.png │ │ │ ├── Krabby.png │ │ │ ├── Kyogre.png │ │ │ ├── Lairon.png │ │ │ ├── Lanturn.png │ │ │ ├── Lapras.png │ │ │ ├── Larvitar.png │ │ │ ├── Latias.png │ │ │ ├── Latios.png │ │ │ ├── Ledian.png │ │ │ ├── Ledyba.png │ │ │ ├── Lickitung.png │ │ │ ├── Lileep.png │ │ │ ├── Linoone.png │ │ │ ├── Lombre.png │ │ │ ├── Lotad.png │ │ │ ├── Loudred.png │ │ │ ├── Ludicolo.png │ │ │ ├── Lugia.png │ │ │ ├── Lunatone.png │ │ │ ├── Luvdisc.png │ │ │ ├── Machamp.png │ │ │ ├── Machoke.png │ │ │ ├── Machop.png │ │ │ ├── Magby.png │ │ │ ├── Magcargo.png │ │ │ ├── Magikarp.png │ │ │ ├── Magmar.png │ │ │ ├── Magnemite.png │ │ │ ├── Magneton.png │ │ │ ├── Makuhita.png │ │ │ ├── Manectric.png │ │ │ ├── Mankey.png │ │ │ ├── Mantine.png │ │ │ ├── Mareep.png │ │ │ ├── Marill.png │ │ │ ├── Marowak.png │ │ │ ├── Marshtomp.png │ │ │ ├── Masquerain.png │ │ │ ├── Mawile.png │ │ │ ├── Medicham.png │ │ │ ├── Meditite.png │ │ │ ├── Meganium.png │ │ │ ├── Meowth.png │ │ │ ├── Metagross.png │ │ │ ├── Metang.png │ │ │ ├── Metapod.png │ │ │ ├── Mew.png │ │ │ ├── Mewtwo.png │ │ │ ├── Mightyena.png │ │ │ ├── Milotic.png │ │ │ ├── Miltank.png │ │ │ ├── Minun.png │ │ │ ├── Misdreavus.png │ │ │ ├── Moltres.png │ │ │ ├── Mr. Mime.png │ │ │ ├── Mudkip.png │ │ │ ├── Muk.png │ │ │ ├── Murkrow.png │ │ │ ├── Natu.png │ │ │ ├── Nidoking.png │ │ │ ├── Nidoqueen.png │ │ │ ├── Nidoran_f.png │ │ │ ├── Nidoran_m.png │ │ │ ├── Nidorina.png │ │ │ ├── Nidorino.png │ │ │ ├── Nincada.png │ │ │ ├── Ninetales.png │ │ │ ├── Ninjask.png │ │ │ ├── Noctowl.png │ │ │ ├── Nosepass.png │ │ │ ├── Numel.png │ │ │ ├── Nuzleaf.png │ │ │ ├── Octillery.png │ │ │ ├── Oddish.png │ │ │ ├── Omanyte.png │ │ │ ├── Omastar.png │ │ │ ├── Onix.png │ │ │ ├── Paras.png │ │ │ ├── Parasect.png │ │ │ ├── Pelipper.png │ │ │ ├── Persian.png │ │ │ ├── Phanpy.png │ │ │ ├── Pichu.png │ │ │ ├── Pidgeot.png │ │ │ ├── Pidgeotto.png │ │ │ ├── Pidgey.png │ │ │ ├── Pikachu.png │ │ │ ├── Piloswine.png │ │ │ ├── Pineco.png │ │ │ ├── Pinsir.png │ │ │ ├── Plusle.png │ │ │ ├── Politoed.png │ │ │ ├── Poliwag.png │ │ │ ├── Poliwhirl.png │ │ │ ├── Poliwrath.png │ │ │ ├── Ponyta.png │ │ │ ├── Poochyena.png │ │ │ ├── Porygon.png │ │ │ ├── Porygon2.png │ │ │ ├── Primeape.png │ │ │ ├── Psyduck.png │ │ │ ├── Pupitar.png │ │ │ ├── Quagsire.png │ │ │ ├── Quilava.png │ │ │ ├── Qwilfish.png │ │ │ ├── Raichu.png │ │ │ ├── Raikou.png │ │ │ ├── Ralts.png │ │ │ ├── Rapidash.png │ │ │ ├── Raticate.png │ │ │ ├── Rattata.png │ │ │ ├── Rayquaza.png │ │ │ ├── Regice.png │ │ │ ├── Regirock.png │ │ │ ├── Registeel.png │ │ │ ├── Relicanth.png │ │ │ ├── Remoraid.png │ │ │ ├── Rhydon.png │ │ │ ├── Rhyhorn.png │ │ │ ├── Roselia.png │ │ │ ├── Sableye.png │ │ │ ├── Salamence.png │ │ │ ├── Sandshrew.png │ │ │ ├── Sandslash.png │ │ │ ├── Sceptile.png │ │ │ ├── Scizor.png │ │ │ ├── Scyther.png │ │ │ ├── Seadra.png │ │ │ ├── Seaking.png │ │ │ ├── Sealeo.png │ │ │ ├── Seedot.png │ │ │ ├── Seel.png │ │ │ ├── Sentret.png │ │ │ ├── Seviper.png │ │ │ ├── Sharpedo.png │ │ │ ├── Shedinja.png │ │ │ ├── Shelgon.png │ │ │ ├── Shellder.png │ │ │ ├── Shiftry.png │ │ │ ├── Shroomish.png │ │ │ ├── Shuckle.png │ │ │ ├── Shuppet.png │ │ │ ├── Silcoon.png │ │ │ ├── Skarmory.png │ │ │ ├── Skiploom.png │ │ │ ├── Skitty.png │ │ │ ├── Slaking.png │ │ │ ├── Slakoth.png │ │ │ ├── Slowbro.png │ │ │ ├── Slowking.png │ │ │ ├── Slowpoke.png │ │ │ ├── Slugma.png │ │ │ ├── Smeargle.png │ │ │ ├── Smoochum.png │ │ │ ├── Sneasel.png │ │ │ ├── Snorlax.png │ │ │ ├── Snorunt.png │ │ │ ├── Snubbull.png │ │ │ ├── Solrock.png │ │ │ ├── Spearow.png │ │ │ ├── Spheal.png │ │ │ ├── Spinarak.png │ │ │ ├── Spinda.png │ │ │ ├── Spoink.png │ │ │ ├── Squirtle.png │ │ │ ├── Stantler.png │ │ │ ├── Starmie.png │ │ │ ├── Staryu.png │ │ │ ├── Steelix.png │ │ │ ├── Sudowoodo.png │ │ │ ├── Suicune.png │ │ │ ├── Sunflora.png │ │ │ ├── Sunkern.png │ │ │ ├── Surskit.png │ │ │ ├── Swablu.png │ │ │ ├── Swalot.png │ │ │ ├── Swampert.png │ │ │ ├── Swellow.png │ │ │ ├── Swinub.png │ │ │ ├── Taillow.png │ │ │ ├── Tangela.png │ │ │ ├── Tauros.png │ │ │ ├── Teddiursa.png │ │ │ ├── Tentacool.png │ │ │ ├── Tentacruel.png │ │ │ ├── Togepi.png │ │ │ ├── Togetic.png │ │ │ ├── Torchic.png │ │ │ ├── Torkoal.png │ │ │ ├── Totodile.png │ │ │ ├── Trapinch.png │ │ │ ├── Treecko.png │ │ │ ├── Tropius.png │ │ │ ├── Typhlosion.png │ │ │ ├── Tyranitar.png │ │ │ ├── Tyrogue.png │ │ │ ├── Umbreon.png │ │ │ ├── Unown (A).png │ │ │ ├── Unown (B).png │ │ │ ├── Unown (C).png │ │ │ ├── Unown (D).png │ │ │ ├── Unown (E).png │ │ │ ├── Unown (F).png │ │ │ ├── Unown (G).png │ │ │ ├── Unown (H).png │ │ │ ├── Unown (I).png │ │ │ ├── Unown (J).png │ │ │ ├── Unown (K).png │ │ │ ├── Unown (L).png │ │ │ ├── Unown (M).png │ │ │ ├── Unown (N).png │ │ │ ├── Unown (O).png │ │ │ ├── Unown (P).png │ │ │ ├── Unown (Q).png │ │ │ ├── Unown (R).png │ │ │ ├── Unown (S).png │ │ │ ├── Unown (T).png │ │ │ ├── Unown (U).png │ │ │ ├── Unown (V).png │ │ │ ├── Unown (W).png │ │ │ ├── Unown (X).png │ │ │ ├── Unown (Y).png │ │ │ ├── Unown (Z).png │ │ │ ├── Unown (em).png │ │ │ ├── Unown (qm).png │ │ │ ├── Ursaring.png │ │ │ ├── Vaporeon.png │ │ │ ├── Venomoth.png │ │ │ ├── Venonat.png │ │ │ ├── Venusaur.png │ │ │ ├── Vibrava.png │ │ │ ├── Victreebel.png │ │ │ ├── Vigoroth.png │ │ │ ├── Vileplume.png │ │ │ ├── Volbeat.png │ │ │ ├── Voltorb.png │ │ │ ├── Vulpix.png │ │ │ ├── Wailmer.png │ │ │ ├── Wailord.png │ │ │ ├── Walrein.png │ │ │ ├── Wartortle.png │ │ │ ├── Weedle.png │ │ │ ├── Weepinbell.png │ │ │ ├── Weezing.png │ │ │ ├── Whiscash.png │ │ │ ├── Whismur.png │ │ │ ├── Wigglytuff.png │ │ │ ├── Wingull.png │ │ │ ├── Wobbuffet.png │ │ │ ├── Wooper.png │ │ │ ├── Wurmple.png │ │ │ ├── Wynaut.png │ │ │ ├── Xatu.png │ │ │ ├── Yanma.png │ │ │ ├── Zangoose.png │ │ │ ├── Zapdos.png │ │ │ ├── Zigzagoon.png │ │ │ └── Zubat.png │ │ └── shiny │ │ │ ├── Abra.png │ │ │ ├── Absol.png │ │ │ ├── Aerodactyl.png │ │ │ ├── Aggron.png │ │ │ ├── Aipom.png │ │ │ ├── Alakazam.png │ │ │ ├── Altaria.png │ │ │ ├── Ampharos.png │ │ │ ├── Anorith.png │ │ │ ├── Arbok.png │ │ │ ├── Arcanine.png │ │ │ ├── Ariados.png │ │ │ ├── Armaldo.png │ │ │ ├── Aron.png │ │ │ ├── Articuno.png │ │ │ ├── Azumarill.png │ │ │ ├── Azurill.png │ │ │ ├── Bagon.png │ │ │ ├── Baltoy.png │ │ │ ├── Banette.png │ │ │ ├── Barboach.png │ │ │ ├── Bayleef.png │ │ │ ├── Beautifly.png │ │ │ ├── Beedrill.png │ │ │ ├── Beldum.png │ │ │ ├── Bellossom.png │ │ │ ├── Bellsprout.png │ │ │ ├── Blastoise.png │ │ │ ├── Blaziken.png │ │ │ ├── Blissey.png │ │ │ ├── Breloom.png │ │ │ ├── Bulbasaur.png │ │ │ ├── Butterfree.png │ │ │ ├── Cacnea.png │ │ │ ├── Cacturne.png │ │ │ ├── Camerupt.png │ │ │ ├── Carvanha.png │ │ │ ├── Cascoon.png │ │ │ ├── Castform.png │ │ │ ├── Caterpie.png │ │ │ ├── Celebi.png │ │ │ ├── Chansey.png │ │ │ ├── Charizard.png │ │ │ ├── Charmander.png │ │ │ ├── Charmeleon.png │ │ │ ├── Chikorita.png │ │ │ ├── Chimecho.png │ │ │ ├── Chinchou.png │ │ │ ├── Clamperl.png │ │ │ ├── Claydol.png │ │ │ ├── Clefable.png │ │ │ ├── Clefairy.png │ │ │ ├── Cleffa.png │ │ │ ├── Cloyster.png │ │ │ ├── Combusken.png │ │ │ ├── Corphish.png │ │ │ ├── Corsola.png │ │ │ ├── Cradily.png │ │ │ ├── Crawdaunt.png │ │ │ ├── Crobat.png │ │ │ ├── Croconaw.png │ │ │ ├── Cubone.png │ │ │ ├── Cyndaquil.png │ │ │ ├── Delcatty.png │ │ │ ├── Delibird.png │ │ │ ├── Deoxys.png │ │ │ ├── Dewgong.png │ │ │ ├── Diglett.png │ │ │ ├── Ditto.png │ │ │ ├── Dodrio.png │ │ │ ├── Doduo.png │ │ │ ├── Donphan.png │ │ │ ├── Dragonair.png │ │ │ ├── Dragonite.png │ │ │ ├── Dratini.png │ │ │ ├── Drowzee.png │ │ │ ├── Dugtrio.png │ │ │ ├── Dunsparce.png │ │ │ ├── Dusclops.png │ │ │ ├── Duskull.png │ │ │ ├── Dustox.png │ │ │ ├── Eevee.png │ │ │ ├── Ekans.png │ │ │ ├── Electabuzz.png │ │ │ ├── Electrike.png │ │ │ ├── Electrode.png │ │ │ ├── Elekid.png │ │ │ ├── Entei.png │ │ │ ├── Espeon.png │ │ │ ├── Exeggcute.png │ │ │ ├── Exeggutor.png │ │ │ ├── Exploud.png │ │ │ ├── Farfetch_d.png │ │ │ ├── Fearow.png │ │ │ ├── Feebas.png │ │ │ ├── Feraligatr.png │ │ │ ├── Flaaffy.png │ │ │ ├── Flareon.png │ │ │ ├── Flygon.png │ │ │ ├── Forretress.png │ │ │ ├── Furret.png │ │ │ ├── Gardevoir.png │ │ │ ├── Gastly.png │ │ │ ├── Gengar.png │ │ │ ├── Geodude.png │ │ │ ├── Girafarig.png │ │ │ ├── Glalie.png │ │ │ ├── Gligar.png │ │ │ ├── Gloom.png │ │ │ ├── Golbat.png │ │ │ ├── Goldeen.png │ │ │ ├── Golduck.png │ │ │ ├── Golem.png │ │ │ ├── Gorebyss.png │ │ │ ├── Granbull.png │ │ │ ├── Graveler.png │ │ │ ├── Grimer.png │ │ │ ├── Groudon.png │ │ │ ├── Grovyle.png │ │ │ ├── Growlithe.png │ │ │ ├── Grumpig.png │ │ │ ├── Gulpin.png │ │ │ ├── Gyarados.png │ │ │ ├── Hariyama.png │ │ │ ├── Haunter.png │ │ │ ├── Heracross.png │ │ │ ├── Hitmonchan.png │ │ │ ├── Hitmonlee.png │ │ │ ├── Hitmontop.png │ │ │ ├── Ho-Oh.png │ │ │ ├── Hoothoot.png │ │ │ ├── Hoppip.png │ │ │ ├── Horsea.png │ │ │ ├── Houndoom.png │ │ │ ├── Houndour.png │ │ │ ├── Huntail.png │ │ │ ├── Hypno.png │ │ │ ├── Igglybuff.png │ │ │ ├── Illumise.png │ │ │ ├── Ivysaur.png │ │ │ ├── Jigglypuff.png │ │ │ ├── Jirachi.png │ │ │ ├── Jolteon.png │ │ │ ├── Jumpluff.png │ │ │ ├── Jynx.png │ │ │ ├── Kabuto.png │ │ │ ├── Kabutops.png │ │ │ ├── Kadabra.png │ │ │ ├── Kakuna.png │ │ │ ├── Kangaskhan.png │ │ │ ├── Kecleon.png │ │ │ ├── Kingdra.png │ │ │ ├── Kingler.png │ │ │ ├── Kirlia.png │ │ │ ├── Koffing.png │ │ │ ├── Krabby.png │ │ │ ├── Kyogre.png │ │ │ ├── Lairon.png │ │ │ ├── Lanturn.png │ │ │ ├── Lapras.png │ │ │ ├── Larvitar.png │ │ │ ├── Latias.png │ │ │ ├── Latios.png │ │ │ ├── Ledian.png │ │ │ ├── Ledyba.png │ │ │ ├── Lickitung.png │ │ │ ├── Lileep.png │ │ │ ├── Linoone.png │ │ │ ├── Lombre.png │ │ │ ├── Lotad.png │ │ │ ├── Loudred.png │ │ │ ├── Ludicolo.png │ │ │ ├── Lugia.png │ │ │ ├── Lunatone.png │ │ │ ├── Luvdisc.png │ │ │ ├── Machamp.png │ │ │ ├── Machoke.png │ │ │ ├── Machop.png │ │ │ ├── Magby.png │ │ │ ├── Magcargo.png │ │ │ ├── Magikarp.png │ │ │ ├── Magmar.png │ │ │ ├── Magnemite.png │ │ │ ├── Magneton.png │ │ │ ├── Makuhita.png │ │ │ ├── Manectric.png │ │ │ ├── Mankey.png │ │ │ ├── Mantine.png │ │ │ ├── Mareep.png │ │ │ ├── Marill.png │ │ │ ├── Marowak.png │ │ │ ├── Marshtomp.png │ │ │ ├── Masquerain.png │ │ │ ├── Mawile.png │ │ │ ├── Medicham.png │ │ │ ├── Meditite.png │ │ │ ├── Meganium.png │ │ │ ├── Meowth.png │ │ │ ├── Metagross.png │ │ │ ├── Metang.png │ │ │ ├── Metapod.png │ │ │ ├── Mew.png │ │ │ ├── Mewtwo.png │ │ │ ├── Mightyena.png │ │ │ ├── Milotic.png │ │ │ ├── Miltank.png │ │ │ ├── Minun.png │ │ │ ├── Misdreavus.png │ │ │ ├── Moltres.png │ │ │ ├── Mr. Mime.png │ │ │ ├── Mudkip.png │ │ │ ├── Muk.png │ │ │ ├── Murkrow.png │ │ │ ├── Natu.png │ │ │ ├── Nidoking.png │ │ │ ├── Nidoqueen.png │ │ │ ├── Nidoran_f.png │ │ │ ├── Nidoran_m.png │ │ │ ├── Nidorina.png │ │ │ ├── Nidorino.png │ │ │ ├── Nincada.png │ │ │ ├── Ninetales.png │ │ │ ├── Ninjask.png │ │ │ ├── Noctowl.png │ │ │ ├── Nosepass.png │ │ │ ├── Numel.png │ │ │ ├── Nuzleaf.png │ │ │ ├── Octillery.png │ │ │ ├── Oddish.png │ │ │ ├── Omanyte.png │ │ │ ├── Omastar.png │ │ │ ├── Onix.png │ │ │ ├── Paras.png │ │ │ ├── Parasect.png │ │ │ ├── Pelipper.png │ │ │ ├── Persian.png │ │ │ ├── Phanpy.png │ │ │ ├── Pichu.png │ │ │ ├── Pidgeot.png │ │ │ ├── Pidgeotto.png │ │ │ ├── Pidgey.png │ │ │ ├── Pikachu.png │ │ │ ├── Piloswine.png │ │ │ ├── Pineco.png │ │ │ ├── Pinsir.png │ │ │ ├── Plusle.png │ │ │ ├── Politoed.png │ │ │ ├── Poliwag.png │ │ │ ├── Poliwhirl.png │ │ │ ├── Poliwrath.png │ │ │ ├── Ponyta.png │ │ │ ├── Poochyena.png │ │ │ ├── Porygon.png │ │ │ ├── Porygon2.png │ │ │ ├── Primeape.png │ │ │ ├── Psyduck.png │ │ │ ├── Pupitar.png │ │ │ ├── Quagsire.png │ │ │ ├── Quilava.png │ │ │ ├── Qwilfish.png │ │ │ ├── Raichu.png │ │ │ ├── Raikou.png │ │ │ ├── Ralts.png │ │ │ ├── Rapidash.png │ │ │ ├── Raticate.png │ │ │ ├── Rattata.png │ │ │ ├── Rayquaza.png │ │ │ ├── Regice.png │ │ │ ├── Regirock.png │ │ │ ├── Registeel.png │ │ │ ├── Relicanth.png │ │ │ ├── Remoraid.png │ │ │ ├── Rhydon.png │ │ │ ├── Rhyhorn.png │ │ │ ├── Roselia.png │ │ │ ├── Sableye.png │ │ │ ├── Salamence.png │ │ │ ├── Sandshrew.png │ │ │ ├── Sandslash.png │ │ │ ├── Sceptile.png │ │ │ ├── Scizor.png │ │ │ ├── Scyther.png │ │ │ ├── Seadra.png │ │ │ ├── Seaking.png │ │ │ ├── Sealeo.png │ │ │ ├── Seedot.png │ │ │ ├── Seel.png │ │ │ ├── Sentret.png │ │ │ ├── Seviper.png │ │ │ ├── Sharpedo.png │ │ │ ├── Shedinja.png │ │ │ ├── Shelgon.png │ │ │ ├── Shellder.png │ │ │ ├── Shiftry.png │ │ │ ├── Shroomish.png │ │ │ ├── Shuckle.png │ │ │ ├── Shuppet.png │ │ │ ├── Silcoon.png │ │ │ ├── Skarmory.png │ │ │ ├── Skiploom.png │ │ │ ├── Skitty.png │ │ │ ├── Slaking.png │ │ │ ├── Slakoth.png │ │ │ ├── Slowbro.png │ │ │ ├── Slowking.png │ │ │ ├── Slowpoke.png │ │ │ ├── Slugma.png │ │ │ ├── Smeargle.png │ │ │ ├── Smoochum.png │ │ │ ├── Sneasel.png │ │ │ ├── Snorlax.png │ │ │ ├── Snorunt.png │ │ │ ├── Snubbull.png │ │ │ ├── Solrock.png │ │ │ ├── Spearow.png │ │ │ ├── Spheal.png │ │ │ ├── Spinarak.png │ │ │ ├── Spinda.png │ │ │ ├── Spoink.png │ │ │ ├── Squirtle.png │ │ │ ├── Stantler.png │ │ │ ├── Starmie.png │ │ │ ├── Staryu.png │ │ │ ├── Steelix.png │ │ │ ├── Sudowoodo.png │ │ │ ├── Suicune.png │ │ │ ├── Sunflora.png │ │ │ ├── Sunkern.png │ │ │ ├── Surskit.png │ │ │ ├── Swablu.png │ │ │ ├── Swalot.png │ │ │ ├── Swampert.png │ │ │ ├── Swellow.png │ │ │ ├── Swinub.png │ │ │ ├── Taillow.png │ │ │ ├── Tangela.png │ │ │ ├── Tauros.png │ │ │ ├── Teddiursa.png │ │ │ ├── Tentacool.png │ │ │ ├── Tentacruel.png │ │ │ ├── Togepi.png │ │ │ ├── Togetic.png │ │ │ ├── Torchic.png │ │ │ ├── Torkoal.png │ │ │ ├── Totodile.png │ │ │ ├── Trapinch.png │ │ │ ├── Treecko.png │ │ │ ├── Tropius.png │ │ │ ├── Typhlosion.png │ │ │ ├── Tyranitar.png │ │ │ ├── Tyrogue.png │ │ │ ├── Umbreon.png │ │ │ ├── Unown (A).png │ │ │ ├── Unown (B).png │ │ │ ├── Unown (C).png │ │ │ ├── Unown (D).png │ │ │ ├── Unown (E).png │ │ │ ├── Unown (F).png │ │ │ ├── Unown (G).png │ │ │ ├── Unown (H).png │ │ │ ├── Unown (I).png │ │ │ ├── Unown (J).png │ │ │ ├── Unown (K).png │ │ │ ├── Unown (L).png │ │ │ ├── Unown (M).png │ │ │ ├── Unown (N).png │ │ │ ├── Unown (O).png │ │ │ ├── Unown (P).png │ │ │ ├── Unown (Q).png │ │ │ ├── Unown (R).png │ │ │ ├── Unown (S).png │ │ │ ├── Unown (T).png │ │ │ ├── Unown (U).png │ │ │ ├── Unown (V).png │ │ │ ├── Unown (W).png │ │ │ ├── Unown (X).png │ │ │ ├── Unown (Y).png │ │ │ ├── Unown (Z).png │ │ │ ├── Unown (em).png │ │ │ ├── Unown (qm).png │ │ │ ├── Ursaring.png │ │ │ ├── Vaporeon.png │ │ │ ├── Venomoth.png │ │ │ ├── Venonat.png │ │ │ ├── Venusaur.png │ │ │ ├── Vibrava.png │ │ │ ├── Victreebel.png │ │ │ ├── Vigoroth.png │ │ │ ├── Vileplume.png │ │ │ ├── Volbeat.png │ │ │ ├── Voltorb.png │ │ │ ├── Vulpix.png │ │ │ ├── Wailmer.png │ │ │ ├── Wailord.png │ │ │ ├── Walrein.png │ │ │ ├── Wartortle.png │ │ │ ├── Weedle.png │ │ │ ├── Weepinbell.png │ │ │ ├── Weezing.png │ │ │ ├── Whiscash.png │ │ │ ├── Whismur.png │ │ │ ├── Wigglytuff.png │ │ │ ├── Wingull.png │ │ │ ├── Wobbuffet.png │ │ │ ├── Wooper.png │ │ │ ├── Wurmple.png │ │ │ ├── Wynaut.png │ │ │ ├── Xatu.png │ │ │ ├── Yanma.png │ │ │ ├── Zangoose.png │ │ │ ├── Zapdos.png │ │ │ ├── Zigzagoon.png │ │ │ └── Zubat.png │ ├── status │ │ ├── asleep.png │ │ ├── burned.png │ │ ├── fainted.png │ │ ├── frozen.png │ │ ├── paralysed.png │ │ └── poisoned.png │ ├── stream-overlay │ │ ├── PokeNav.png │ │ ├── anti-sparkles.png │ │ ├── arrow_green.png │ │ ├── arrow_red.png │ │ ├── arrow_yellow.png │ │ ├── australia.png │ │ ├── clock.png │ │ ├── clover.png │ │ ├── computer.png │ │ ├── confetti.gif │ │ ├── cross.png │ │ ├── curve.png │ │ ├── die.png │ │ ├── fast_forward.png │ │ ├── fire.png │ │ ├── graph.png │ │ ├── hash.png │ │ ├── hourglass.png │ │ ├── inputs │ │ │ ├── A_Button.png │ │ │ ├── B_Button.png │ │ │ ├── D_Pad.png │ │ │ ├── D_Pad_Down.png │ │ │ ├── D_Pad_Left.png │ │ │ ├── D_Pad_Right.png │ │ │ ├── D_Pad_Up.png │ │ │ ├── L_Button.png │ │ │ ├── R_Button.png │ │ │ ├── Select_Button.png │ │ │ └── Start_Button.png │ │ ├── party.gif │ │ ├── pin.png │ │ ├── sparkles.png │ │ ├── star.png │ │ ├── star_blue.png │ │ ├── target.png │ │ ├── tick.png │ │ ├── two-hearts.png │ │ └── warning.png │ ├── tcg │ │ ├── arena │ │ │ ├── Bug.png │ │ │ ├── Dark.png │ │ │ ├── Dragon.png │ │ │ ├── Electric.png │ │ │ ├── Fighting.png │ │ │ ├── Fire.png │ │ │ ├── Flying.png │ │ │ ├── Ghost.png │ │ │ ├── Grass.png │ │ │ ├── Ground.png │ │ │ ├── Ice.png │ │ │ ├── Normal.png │ │ │ ├── Poison.png │ │ │ ├── Psychic.png │ │ │ ├── Rock.png │ │ │ ├── Steel.png │ │ │ └── Water.png │ │ ├── background │ │ │ ├── Bug.png │ │ │ ├── Dark.png │ │ │ ├── Dragon.png │ │ │ ├── Electric.png │ │ │ ├── Fighting.png │ │ │ ├── Fire.png │ │ │ ├── Flying.png │ │ │ ├── Ghost.png │ │ │ ├── Grass.png │ │ │ ├── Ground.png │ │ │ ├── Ice.png │ │ │ ├── Normal.png │ │ │ ├── Poison.png │ │ │ ├── Psychic.png │ │ │ ├── Rock.png │ │ │ ├── Steel.png │ │ │ └── Water.png │ │ ├── border.png │ │ ├── border │ │ │ ├── Bug.png │ │ │ ├── Dark.png │ │ │ ├── Dragon.png │ │ │ ├── Electric.png │ │ │ ├── Fighting.png │ │ │ ├── Fire.png │ │ │ ├── Flying.png │ │ │ ├── Ghost.png │ │ │ ├── Grass.png │ │ │ ├── Ground.png │ │ │ ├── Ice.png │ │ │ ├── Normal.png │ │ │ ├── Poison.png │ │ │ ├── Psychic.png │ │ │ ├── Rock.png │ │ │ ├── Steel.png │ │ │ └── Water.png │ │ ├── box.png │ │ ├── chat_FRLG.png │ │ ├── chat_RSE.png │ │ ├── ivs.png │ │ ├── name_plate │ │ │ ├── Bug.png │ │ │ ├── Dark.png │ │ │ ├── Dragon.png │ │ │ ├── Electric.png │ │ │ ├── Fighting.png │ │ │ ├── Fire.png │ │ │ ├── Flying.png │ │ │ ├── Ghost.png │ │ │ ├── Grass.png │ │ │ ├── Ground.png │ │ │ ├── Ice.png │ │ │ ├── Normal.png │ │ │ ├── Poison.png │ │ │ ├── Psychic.png │ │ │ ├── Rock.png │ │ │ ├── Steel.png │ │ │ └── Water.png │ │ ├── pkmn_data.png │ │ ├── player │ │ │ ├── female_E.png │ │ │ ├── female_FRLG.png │ │ │ ├── female_RS.png │ │ │ ├── male_E.png │ │ │ ├── male_FRLG.png │ │ │ └── male_RS.png │ │ └── shiny.png │ └── types │ │ ├── Bug.png │ │ ├── Dark.png │ │ ├── Dragon.png │ │ ├── Electric.png │ │ ├── Fighting.png │ │ ├── Fire.png │ │ ├── Flying.png │ │ ├── Ghost.png │ │ ├── Grass.png │ │ ├── Ground.png │ │ ├── Ice.png │ │ ├── Normal.png │ │ ├── Poison.png │ │ ├── Psychic.png │ │ ├── Rock.png │ │ ├── Steel.png │ │ ├── Unknown.png │ │ ├── Water.png │ │ ├── large │ │ ├── Bug.png │ │ ├── Dark.png │ │ ├── Dragon.png │ │ ├── Electric.png │ │ ├── Fighting.png │ │ ├── Fire.png │ │ ├── Flying.png │ │ ├── Ghost.png │ │ ├── Grass.png │ │ ├── Ground.png │ │ ├── Ice.png │ │ ├── Normal.png │ │ ├── Poison.png │ │ ├── Psychic.png │ │ ├── Rock.png │ │ ├── Steel.png │ │ ├── Unknown.png │ │ └── Water.png │ │ └── swsh │ │ ├── Bug.png │ │ ├── Dark.png │ │ ├── Dragon.png │ │ ├── Electric.png │ │ ├── Fighting.png │ │ ├── Fire.png │ │ ├── Flying.png │ │ ├── Ghost.png │ │ ├── Grass.png │ │ ├── Ground.png │ │ ├── Ice.png │ │ ├── Normal.png │ │ ├── Poison.png │ │ ├── Psychic.png │ │ ├── Rock.png │ │ ├── Steel.png │ │ ├── Unknown.png │ │ └── Water.png │ ├── stats.d.ts │ ├── stream-overlay.html │ ├── stream-overlay │ ├── component │ │ ├── crossed-out.js │ │ ├── info-bubble.js │ │ ├── item-sprite.js │ │ ├── iv-sum.js │ │ ├── iv.js │ │ ├── overlay-sprite.js │ │ ├── pokemon-sprite.js │ │ └── shiny-value.js │ ├── config.dist.js │ ├── connection.js │ ├── content │ │ ├── badge-list.js │ │ ├── clock.js │ │ ├── current-encounter-stats.js │ │ ├── daycare.js │ │ ├── effects.js │ │ ├── encounter-log.js │ │ ├── info-bubbles.js │ │ ├── inputs.js │ │ ├── party-list.js │ │ ├── phase-stats.js │ │ ├── route-encounters.js │ │ ├── section-checklist.js │ │ ├── shiny-log.js │ │ └── total-stats.js │ ├── deps │ │ └── tsparticles.confetti.bundle.min.js │ ├── helper.js │ ├── index.html │ ├── layout │ │ ├── clock.css │ │ ├── content-box.css │ │ ├── current-encounter-stats.css │ │ ├── daycare.css │ │ ├── global.css │ │ ├── grid.css │ │ ├── info-bubbles.css │ │ ├── inputs.css │ │ ├── party-list.css │ │ ├── phase-and-total-stats.css │ │ ├── route-encounters.css │ │ ├── section-checklist.css │ │ └── shiny-and-encounter-log.css │ ├── overlay.css │ ├── overlay.js │ ├── state.js │ └── stream-overlay-config.d.ts │ ├── stream_events.d.ts │ └── world_map.html ├── plugins └── .gitkeep ├── pokebot.py ├── pokebot.spec ├── requirements.py ├── roms └── .gitkeep ├── tests ├── README.md ├── __init__.py ├── states │ ├── emerald │ │ ├── before_acro_bike_rails.ss1 │ │ ├── diving.ss1 │ │ ├── in_front_of_player_house_after_getting_starter.ss1 │ │ ├── in_front_of_starter_pokemon_bag.ss1 │ │ ├── in_tall_grass_after_receiving_pokeballs.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_afterwards.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_before.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_empty_slot.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_no_empty_slot.ss1 │ │ ├── new_game_inside_player_house.ss1 │ │ ├── north_of_a_muddy_slope.ss1 │ │ ├── north_of_a_waterfall.ss1 │ │ ├── on_land_before_water.ss1 │ │ ├── on_water_before_land.ss1 │ │ ├── south_of_a_muddy_slope.ss1 │ │ ├── south_of_a_waterfall.ss1 │ │ └── water_currents.ss1 │ ├── firered │ │ ├── in_front_of_player_house_after_getting_starter.ss1 │ │ ├── in_front_of_starter_pokemon_table.ss1 │ │ ├── in_front_of_viridian_pokemon_center.ss1 │ │ ├── in_tall_grass_after_receiving_pokeballs.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_afterwards.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_before.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_empty_slot.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_no_empty_slot.ss1 │ │ ├── new_game_inside_player_house.ss1 │ │ ├── on_land_before_water.ss1 │ │ └── on_water_before_land.ss1 │ └── ruby │ │ ├── before_acro_bike_rails.ss1 │ │ ├── in_front_of_player_house_after_getting_starter.ss1 │ │ ├── in_front_of_starter_pokemon_bag.ss1 │ │ ├── in_tall_grass_after_receiving_pokeballs.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_afterwards.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_evolving_with_new_move_before.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_empty_slot.ss1 │ │ ├── in_tall_grass_before_levelling_up_and_learning_move_with_no_empty_slot.ss1 │ │ ├── new_game_inside_player_house.ss1 │ │ ├── north_of_a_muddy_slope.ss1 │ │ ├── north_of_a_waterfall.ss1 │ │ ├── on_land_before_water.ss1 │ │ ├── on_water_before_land.ss1 │ │ ├── south_of_a_muddy_slope.ss1 │ │ └── south_of_a_waterfall.ss1 ├── test_battle_evolution.py ├── test_battle_move_learning.py ├── test_map.py ├── test_mode_spin.py ├── test_mode_starter.py ├── test_pathfinding.py └── utility.py ├── updater.py ├── utility └── extract_stats_encounters.py └── wiki ├── Readme.md ├── images ├── EV_Train.png ├── Lati_SSR.png ├── badge_black.svg ├── badge_discord.svg ├── badge_python.svg ├── badge_wiki.svg ├── badge_youtube.svg ├── berry_blender_ingame.png ├── berry_blender_table.png ├── cerulean.png ├── daycare.png ├── db_browser.png ├── debug_mode.png ├── discord_config_anti_shiny.png ├── discord_config_custom_filter.png ├── discord_config_milestones.png ├── discord_config_phase_summary.png ├── discord_config_pickup.png ├── discord_config_shiny_encounter.png ├── discord_config_shiny_milestone.png ├── discord_config_total_milestone.png ├── discord_milestones.png ├── discord_phase_stats.png ├── discord_shiny_notification.png ├── e_battle_transition_1.gif ├── e_battle_transition_2.gif ├── e_battle_transition_3.gif ├── e_battle_transition_4.gif ├── e_battle_transition_5.gif ├── e_battle_transition_6.gif ├── e_battle_transition_7.gif ├── e_battle_transition_8.gif ├── feebas_route_119_e.png ├── feebas_route_119_rs.png ├── feeder_prompt_windows.png ├── gift_beldum.png ├── gift_castform.png ├── gift_eevee.png ├── gift_frlg_fossils.png ├── gift_hitmons.png ├── gift_lapras.png ├── gift_magikarp.png ├── gift_rse_fossils.png ├── gift_togepi.png ├── gift_wynaut.png ├── glass_workshop.png ├── granite_cave.png ├── groudon.png ├── groudon_ruby.png ├── ho-oh.png ├── http_api.png ├── issue_bad.png ├── issue_good.png ├── kecleon.png ├── kyogre.png ├── kyogre_sapphire.png ├── lati.png ├── level_grind_prompt.png ├── load_save_state.png ├── lugia.png ├── main_interface.png ├── mew.png ├── nugget.png ├── nugget_bridge.png ├── os_apple.png ├── os_arch.png ├── os_debian.png ├── os_pop.png ├── os_ubuntu.png ├── os_windows.png ├── pk3_files.png ├── pokeblock_prompt_windows.png ├── puzzle_deoxys.png ├── puzzle_deoxys_frlg.png ├── puzzle_mirage_tower.png ├── puzzle_regi.png ├── puzzle_seafloor_cavern.png ├── puzzle_sealed_chamber.png ├── puzzle_sky_pillar.png ├── puzzle_tanoby.png ├── rayquaza.png ├── regice.png ├── regirock.png ├── registeel.png ├── repel_prompt.png ├── repel_prompt_windows.png ├── safari_mode_start_frlg.png ├── safari_mode_start_rse.png ├── safari_target.png ├── safari_target_rse.png ├── safari_zone.png ├── shiny.gif └── tcg_example.png └── pages ├── Anti-Shiny Sprites.md ├── Configuration - Battling and Pickup.md ├── Configuration - Catch Block List.md ├── Configuration - Cheats.md ├── Configuration - Custom Catch Filters.md ├── Configuration - Discord.md ├── Configuration - HTTP Server.md ├── Configuration - Key Mappings.md ├── Configuration - OBS.md ├── Configuration - Overview.md ├── Console, Logging and Image Config.md ├── Customisation - Plugins.md ├── Customisation - Statistics Database.md ├── Data Manipulation - Save Modification.md ├── Getting Started.md ├── MacOS Installation.md ├── Mode - Acro Bike Bunny Hop.md ├── Mode - Berry Blender.md ├── Mode - Daycare.md ├── Mode - EV Train.md ├── Mode - Feebas.md ├── Mode - Fishing.md ├── Mode - Game Corner.md ├── Mode - Item Steal.md ├── Mode - Kecleon.md ├── Mode - Level Grind.md ├── Mode - Manual.md ├── Mode - Nugget Bridge.md ├── Mode - Puzzle Solver.md ├── Mode - Roamer Resets.md ├── Mode - Rock Smash.md ├── Mode - Safari.md ├── Mode - Spin.md ├── Mode - Starters.md ├── Mode - Static Gift Resets.md ├── Mode - Static Run Aways.md ├── Mode - Static Soft Resets.md ├── Mode - Sudowoodo.md ├── Mode - Sweet Scent.md ├── Optimisations - Battle Transitions.md ├── Optimisations - General Tips & Tricks.md ├── Pokemon By Bot Mode.md ├── Report an Issue.md ├── Stream FAQ.md ├── Supported Games and Languages.md └── Using Unsupported ROMs.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-when-tag-pushed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.github/workflows/release-when-tag-pushed.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/Readme.md -------------------------------------------------------------------------------- /modules/battle_action_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_action_selection.py -------------------------------------------------------------------------------- /modules/battle_evolution_scene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_evolution_scene.py -------------------------------------------------------------------------------- /modules/battle_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_handler.py -------------------------------------------------------------------------------- /modules/battle_menuing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_menuing.py -------------------------------------------------------------------------------- /modules/battle_move_replacing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_move_replacing.py -------------------------------------------------------------------------------- /modules/battle_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_state.py -------------------------------------------------------------------------------- /modules/battle_strategies/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/__init__.py -------------------------------------------------------------------------------- /modules/battle_strategies/_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/_interface.py -------------------------------------------------------------------------------- /modules/battle_strategies/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/_util.py -------------------------------------------------------------------------------- /modules/battle_strategies/catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/catch.py -------------------------------------------------------------------------------- /modules/battle_strategies/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/default.py -------------------------------------------------------------------------------- /modules/battle_strategies/item_stealing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/item_stealing.py -------------------------------------------------------------------------------- /modules/battle_strategies/level_balancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/level_balancing.py -------------------------------------------------------------------------------- /modules/battle_strategies/level_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/level_up.py -------------------------------------------------------------------------------- /modules/battle_strategies/lose_on_purpose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/lose_on_purpose.py -------------------------------------------------------------------------------- /modules/battle_strategies/run_away.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/battle_strategies/run_away.py -------------------------------------------------------------------------------- /modules/berry_trees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/berry_trees.py -------------------------------------------------------------------------------- /modules/built_in_plugins/discord_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/built_in_plugins/discord_integration.py -------------------------------------------------------------------------------- /modules/built_in_plugins/obs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/built_in_plugins/obs.py -------------------------------------------------------------------------------- /modules/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/clock.py -------------------------------------------------------------------------------- /modules/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/__init__.py -------------------------------------------------------------------------------- /modules/config/schemas_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/schemas_v1.py -------------------------------------------------------------------------------- /modules/config/templates/battle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/battle.yml -------------------------------------------------------------------------------- /modules/config/templates/catch_block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/catch_block.yml -------------------------------------------------------------------------------- /modules/config/templates/cheats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/cheats.yml -------------------------------------------------------------------------------- /modules/config/templates/customcatchfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/customcatchfilters.py -------------------------------------------------------------------------------- /modules/config/templates/discord.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/discord.yml -------------------------------------------------------------------------------- /modules/config/templates/http.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/http.yml -------------------------------------------------------------------------------- /modules/config/templates/keys.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/keys.yml -------------------------------------------------------------------------------- /modules/config/templates/logging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/logging.yml -------------------------------------------------------------------------------- /modules/config/templates/obs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/config/templates/obs.yml -------------------------------------------------------------------------------- /modules/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/console.py -------------------------------------------------------------------------------- /modules/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/context.py -------------------------------------------------------------------------------- /modules/data/abilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/abilities.json -------------------------------------------------------------------------------- /modules/data/event_flags/compile_pret_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_flags/compile_pret_flags.py -------------------------------------------------------------------------------- /modules/data/event_flags/emerald.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_flags/emerald.txt -------------------------------------------------------------------------------- /modules/data/event_flags/frlg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_flags/frlg.txt -------------------------------------------------------------------------------- /modules/data/event_flags/rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_flags/rs.txt -------------------------------------------------------------------------------- /modules/data/event_vars/compile_pret_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_vars/compile_pret_vars.py -------------------------------------------------------------------------------- /modules/data/event_vars/emerald.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_vars/emerald.txt -------------------------------------------------------------------------------- /modules/data/event_vars/frlg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_vars/frlg.txt -------------------------------------------------------------------------------- /modules/data/event_vars/rs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/event_vars/rs.txt -------------------------------------------------------------------------------- /modules/data/extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/extract.py -------------------------------------------------------------------------------- /modules/data/get_pret_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/get_pret_maps.py -------------------------------------------------------------------------------- /modules/data/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/items.json -------------------------------------------------------------------------------- /modules/data/keyboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/keyboard.json -------------------------------------------------------------------------------- /modules/data/moves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/moves.json -------------------------------------------------------------------------------- /modules/data/natures.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/natures.json -------------------------------------------------------------------------------- /modules/data/species.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/species.json -------------------------------------------------------------------------------- /modules/data/symbols/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/Readme.md -------------------------------------------------------------------------------- /modules/data/symbols/fetch_symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/fetch_symbols.py -------------------------------------------------------------------------------- /modules/data/symbols/patches/language/pokeruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/language/pokeruby.yml -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeemerald.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokefirered.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokefirered_rev1.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeleafgreen.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeleafgreen_rev1.sym: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeruby.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokeruby.sym -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeruby_de.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokeruby_de.sym -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokeruby_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokeruby_rev1.sym -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokesapphire.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokesapphire.sym -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokesapphire_de.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokesapphire_de.sym -------------------------------------------------------------------------------- /modules/data/symbols/patches/pokesapphire_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/patches/pokesapphire_rev1.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeemerald.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeemerald.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokefirered.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokefirered.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokefirered_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokefirered_rev1.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeleafgreen.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeleafgreen.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeleafgreen_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeleafgreen_rev1.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeruby.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeruby.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeruby_de.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeruby_de.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokeruby_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokeruby_rev1.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokesapphire.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokesapphire.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokesapphire_de.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokesapphire_de.sym -------------------------------------------------------------------------------- /modules/data/symbols/pokesapphire_rev1.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/symbols/pokesapphire_rev1.sym -------------------------------------------------------------------------------- /modules/data/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/data/types.json -------------------------------------------------------------------------------- /modules/daycare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/daycare.py -------------------------------------------------------------------------------- /modules/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/debug.py -------------------------------------------------------------------------------- /modules/debug_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/debug_utilities.py -------------------------------------------------------------------------------- /modules/discord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/discord.py -------------------------------------------------------------------------------- /modules/encounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/encounter.py -------------------------------------------------------------------------------- /modules/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/exceptions.py -------------------------------------------------------------------------------- /modules/exceptions_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/exceptions_hook.py -------------------------------------------------------------------------------- /modules/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/files.py -------------------------------------------------------------------------------- /modules/fishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/fishing.py -------------------------------------------------------------------------------- /modules/fonts/pokemon-rs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/fonts/pokemon-rs.ttf -------------------------------------------------------------------------------- /modules/fonts/pokemon-rs_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/fonts/pokemon-rs_LICENSE.txt -------------------------------------------------------------------------------- /modules/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/game.py -------------------------------------------------------------------------------- /modules/game_sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/game_sprites.py -------------------------------------------------------------------------------- /modules/game_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/game_stats.py -------------------------------------------------------------------------------- /modules/gui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/__init__.py -------------------------------------------------------------------------------- /modules/gui/create_profile_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/create_profile_screen.py -------------------------------------------------------------------------------- /modules/gui/debug_edit_item_bag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/debug_edit_item_bag.py -------------------------------------------------------------------------------- /modules/gui/debug_edit_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/debug_edit_party.py -------------------------------------------------------------------------------- /modules/gui/debug_edit_pokedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/debug_edit_pokedex.py -------------------------------------------------------------------------------- /modules/gui/debug_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/debug_menu.py -------------------------------------------------------------------------------- /modules/gui/debug_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/debug_tabs.py -------------------------------------------------------------------------------- /modules/gui/desktop_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/desktop_notification.py -------------------------------------------------------------------------------- /modules/gui/emulator_controls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/emulator_controls.py -------------------------------------------------------------------------------- /modules/gui/emulator_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/emulator_screen.py -------------------------------------------------------------------------------- /modules/gui/ev_selection_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/ev_selection_window.py -------------------------------------------------------------------------------- /modules/gui/glfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/glfw.py -------------------------------------------------------------------------------- /modules/gui/headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/headless.py -------------------------------------------------------------------------------- /modules/gui/load_state_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/load_state_window.py -------------------------------------------------------------------------------- /modules/gui/multi_select_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/multi_select_window.py -------------------------------------------------------------------------------- /modules/gui/select_profile_screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/gui/select_profile_screen.py -------------------------------------------------------------------------------- /modules/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/items.py -------------------------------------------------------------------------------- /modules/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/keyboard.py -------------------------------------------------------------------------------- /modules/libmgba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/libmgba.py -------------------------------------------------------------------------------- /modules/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/main.py -------------------------------------------------------------------------------- /modules/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/map.py -------------------------------------------------------------------------------- /modules/map_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/map_data.py -------------------------------------------------------------------------------- /modules/map_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/map_path.py -------------------------------------------------------------------------------- /modules/mart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/mart.py -------------------------------------------------------------------------------- /modules/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/memory.py -------------------------------------------------------------------------------- /modules/menu_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/menu_parsers.py -------------------------------------------------------------------------------- /modules/menuing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/menuing.py -------------------------------------------------------------------------------- /modules/modes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/__init__.py -------------------------------------------------------------------------------- /modules/modes/_asserts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/_asserts.py -------------------------------------------------------------------------------- /modules/modes/_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/_interface.py -------------------------------------------------------------------------------- /modules/modes/_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/_listeners.py -------------------------------------------------------------------------------- /modules/modes/berry_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/berry_blend.py -------------------------------------------------------------------------------- /modules/modes/bunny_hop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/bunny_hop.py -------------------------------------------------------------------------------- /modules/modes/daycare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/daycare.py -------------------------------------------------------------------------------- /modules/modes/ev_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/ev_train.py -------------------------------------------------------------------------------- /modules/modes/feebas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/feebas.py -------------------------------------------------------------------------------- /modules/modes/fishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/fishing.py -------------------------------------------------------------------------------- /modules/modes/game_corner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/game_corner.py -------------------------------------------------------------------------------- /modules/modes/item_steal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/item_steal.py -------------------------------------------------------------------------------- /modules/modes/kecleon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/kecleon.py -------------------------------------------------------------------------------- /modules/modes/level_grind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/level_grind.py -------------------------------------------------------------------------------- /modules/modes/nugget_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/nugget_bridge.py -------------------------------------------------------------------------------- /modules/modes/puzzle_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/puzzle_solver.py -------------------------------------------------------------------------------- /modules/modes/roamer_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/roamer_reset.py -------------------------------------------------------------------------------- /modules/modes/rock_smash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/rock_smash.py -------------------------------------------------------------------------------- /modules/modes/safari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/safari.py -------------------------------------------------------------------------------- /modules/modes/spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/spin.py -------------------------------------------------------------------------------- /modules/modes/starters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/starters.py -------------------------------------------------------------------------------- /modules/modes/static_gift_resets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/static_gift_resets.py -------------------------------------------------------------------------------- /modules/modes/static_run_away.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/static_run_away.py -------------------------------------------------------------------------------- /modules/modes/static_soft_resets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/static_soft_resets.py -------------------------------------------------------------------------------- /modules/modes/sudowoodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/sudowoodo.py -------------------------------------------------------------------------------- /modules/modes/sweet_scent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/sweet_scent.py -------------------------------------------------------------------------------- /modules/modes/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/__init__.py -------------------------------------------------------------------------------- /modules/modes/util/_util_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/_util_helper.py -------------------------------------------------------------------------------- /modules/modes/util/berry_tree_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/berry_tree_interaction.py -------------------------------------------------------------------------------- /modules/modes/util/event_flags_and_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/event_flags_and_vars.py -------------------------------------------------------------------------------- /modules/modes/util/higher_level_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/higher_level_actions.py -------------------------------------------------------------------------------- /modules/modes/util/items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/items.py -------------------------------------------------------------------------------- /modules/modes/util/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/map.py -------------------------------------------------------------------------------- /modules/modes/util/pc_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/pc_interaction.py -------------------------------------------------------------------------------- /modules/modes/util/pokecenter_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/pokecenter_loop.py -------------------------------------------------------------------------------- /modules/modes/util/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/sleep.py -------------------------------------------------------------------------------- /modules/modes/util/soft_reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/soft_reset.py -------------------------------------------------------------------------------- /modules/modes/util/tasks_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/tasks_scripts.py -------------------------------------------------------------------------------- /modules/modes/util/walking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/modes/util/walking.py -------------------------------------------------------------------------------- /modules/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/player.py -------------------------------------------------------------------------------- /modules/player_pc_navigaton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/player_pc_navigaton.py -------------------------------------------------------------------------------- /modules/plugin_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/plugin_interface.py -------------------------------------------------------------------------------- /modules/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/plugins.py -------------------------------------------------------------------------------- /modules/pokeblock_feeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokeblock_feeder.py -------------------------------------------------------------------------------- /modules/pokedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokedex.py -------------------------------------------------------------------------------- /modules/pokemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokemon.py -------------------------------------------------------------------------------- /modules/pokemon_party.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokemon_party.py -------------------------------------------------------------------------------- /modules/pokemon_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokemon_storage.py -------------------------------------------------------------------------------- /modules/pokemon_storage_navigaton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/pokemon_storage_navigaton.py -------------------------------------------------------------------------------- /modules/profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/profiles.py -------------------------------------------------------------------------------- /modules/region_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/region_map.py -------------------------------------------------------------------------------- /modules/roamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/roamer.py -------------------------------------------------------------------------------- /modules/roms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/roms.py -------------------------------------------------------------------------------- /modules/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/runtime.py -------------------------------------------------------------------------------- /modules/safari_strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/safari_strategy.py -------------------------------------------------------------------------------- /modules/save_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/save_data.py -------------------------------------------------------------------------------- /modules/save_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/save_import.py -------------------------------------------------------------------------------- /modules/sprites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/sprites.py -------------------------------------------------------------------------------- /modules/state_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/state_cache.py -------------------------------------------------------------------------------- /modules/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/stats.py -------------------------------------------------------------------------------- /modules/stats_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/stats_migrate.py -------------------------------------------------------------------------------- /modules/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/tasks.py -------------------------------------------------------------------------------- /modules/tcg_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/tcg_card.py -------------------------------------------------------------------------------- /modules/text_printer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/text_printer.py -------------------------------------------------------------------------------- /modules/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/version.py -------------------------------------------------------------------------------- /modules/web/docs/event_stream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/docs/event_stream.md -------------------------------------------------------------------------------- /modules/web/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/http.py -------------------------------------------------------------------------------- /modules/web/http_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/http_stream.py -------------------------------------------------------------------------------- /modules/web/static/api-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/api-doc.html -------------------------------------------------------------------------------- /modules/web/static/css/stream-overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/css/stream-overlay.css -------------------------------------------------------------------------------- /modules/web/static/font/small_pixel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/font/small_pixel.ttf -------------------------------------------------------------------------------- /modules/web/static/font/small_pixel.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/font/small_pixel.woff2 -------------------------------------------------------------------------------- /modules/web/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/index.html -------------------------------------------------------------------------------- /modules/web/static/js/stream-overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/js/stream-overlay.js -------------------------------------------------------------------------------- /modules/web/static/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/map.html -------------------------------------------------------------------------------- /modules/web/static/pokemon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/pokemon.d.ts -------------------------------------------------------------------------------- /modules/web/static/routes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/routes.d.ts -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Balance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Balance.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Boulder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Boulder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Cascade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Cascade.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Dynamo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Dynamo.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Earth.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Feather.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Heat.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Knuckle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Knuckle.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Marsh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Marsh.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Mind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Mind.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Rain.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Rainbow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Rainbow.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Soul.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Thunder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Thunder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/badges/Volcano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/badges/Volcano.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Acro Bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Acro Bike.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Aguav Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Aguav Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Amulet Coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Amulet Coin.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Antidote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Antidote.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Apicot Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Apicot Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Aspear Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Aspear Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Auroraticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Auroraticket.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Awakening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Awakening.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Basement Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Basement Key.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Bead Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Bead Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Belue Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Belue Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Berry Juice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Berry Juice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Berry Pouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Berry Pouch.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Bicycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Bicycle.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Big Mushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Big Mushroom.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Big Pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Big Pearl.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Bike Voucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Bike Voucher.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Black Belt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Black Belt.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Black Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Black Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Blackglasses.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Blackglasses.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Blue Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Blue Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Blue Orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Blue Orb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Blue Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Blue Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Blue Shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Blue Shard.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Bluk Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Bluk Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Brightpowder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Brightpowder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Burn Heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Burn Heal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Calcium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Calcium.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Carbos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Carbos.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Card Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Card Key.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Charcoal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Charcoal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Cheri Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Cheri Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Chesto Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Chesto Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Choice Band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Choice Band.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Claw Fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Claw Fossil.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Cleanse Tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Cleanse Tag.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Coin Case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Coin Case.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Contest Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Contest Pass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Cornn Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Cornn Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Deepseascale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Deepseascale.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Deepseatooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Deepseatooth.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Devon Goods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Devon Goods.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Devon Scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Devon Scope.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dire Hit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dire Hit.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dive Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dive Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dome Fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dome Fossil.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dragon Fang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dragon Fang.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dragon Scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dragon Scale.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Dream Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Dream Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Durin Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Durin Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Elixir.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Energy Root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Energy Root.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Energypowder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Energypowder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Enigma Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Enigma Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Eon Ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Eon Ticket.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Escape Rope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Escape Rope.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Ether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Ether.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Everstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Everstone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Exp Share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Exp Share.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Fab Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Fab Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Fame Checker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Fame Checker.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Figy Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Figy Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Fire Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Fire Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Fluffy Tail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Fluffy Tail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Focus Band.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Focus Band.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Fresh Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Fresh Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Full Heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Full Heal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Full Restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Full Restore.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Ganlon Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Ganlon Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Glitter Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Glitter Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Go-goggles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Go-goggles.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Gold Teeth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Gold Teeth.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Good Rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Good Rod.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Great Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Great Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Green Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Green Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Green Shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Green Shard.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Grepa Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Grepa Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Guard Spec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Guard Spec.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM01.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM02.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM03.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM04.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM05.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM06.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM07.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HM08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HM08.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/HP Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/HP Up.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Harbor Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Harbor Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Hard Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Hard Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Heal Powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Heal Powder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Heart Scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Heart Scale.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Helix Fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Helix Fossil.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Hondew Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Hondew Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Hyper Potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Hyper Potion.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Iapapa Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Iapapa Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Ice Heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Ice Heal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Iron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Iron.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Itemfinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Itemfinder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Kelpsy Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Kelpsy Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Kings Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Kings Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lansat Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lansat Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lava Cookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lava Cookie.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lax Incense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lax Incense.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Leaf Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Leaf Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Leftovers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Leftovers.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lemonade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lemonade.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Leppa Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Leppa Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Letter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Letter.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Liechi Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Liechi Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lift Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lift Key.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Light Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Light Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lucky Egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lucky Egg.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lucky Punch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lucky Punch.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Lum Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Lum Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Luxury Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Luxury Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mach Bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mach Bike.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Macho Brace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Macho Brace.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Magma Emblem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Magma Emblem.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Magnet.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mago Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mago Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Magost Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Magost Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Master Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Master Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Max Elixir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Max Elixir.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Max Ether.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Max Ether.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Max Potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Max Potion.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Max Repel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Max Repel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Max Revive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Max Revive.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mech Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mech Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mental Herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mental Herb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Metal Coat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Metal Coat.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Metal Powder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Metal Powder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Meteorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Meteorite.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Miracle Seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Miracle Seed.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Moomoo Milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Moomoo Milk.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Moon Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Moon Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mystic Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mystic Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Mysticticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Mysticticket.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Nanab Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Nanab Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Nest Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Nest Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Net Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Net Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Nevermeltice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Nevermeltice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Nomel Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Nomel Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/None.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/None.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Nugget.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Oaks Parcel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Oaks Parcel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Old Amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Old Amber.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Old Rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Old Rod.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Old Sea Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Old Sea Map.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Oran Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Oran Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Orange Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Orange Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/PP Max.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/PP Max.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/PP Up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/PP Up.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pamtre Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pamtre Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Parlyz Heal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Parlyz Heal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pearl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pearl.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pecha Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pecha Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Persim Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Persim Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Petaya Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Petaya Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pinap Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pinap Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pink Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pink Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Poison Barb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Poison Barb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Poké Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Poké Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Poké Doll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Poké Doll.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Poké Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Poké Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pokéblock Case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pokéblock Case.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Pomeg Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Pomeg Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Potion.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Powder Jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Powder Jar.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Premier Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Premier Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Protein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Protein.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Qualot Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Qualot Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Quick Claw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Quick Claw.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Rabuta Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Rabuta Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Rainbow Pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Rainbow Pass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Rare Candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Rare Candy.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Rawst Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Rawst Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Razz Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Razz Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Red Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Red Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Red Orb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Red Orb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Red Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Red Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Red Shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Red Shard.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Repeat Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Repeat Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Repel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Repel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Retro Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Retro Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Revival Herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Revival Herb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Revive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Revive.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Root Fossil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Root Fossil.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Ruby.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/SS Ticket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/SS Ticket.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sacred Ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sacred Ash.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Safari Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Safari Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Salac Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Salac Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sapphire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sapphire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Scanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Scanner.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Scope Lens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Scope Lens.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sea Incense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sea Incense.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Secret Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Secret Key.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Shadow Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Shadow Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sharp Beak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sharp Beak.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Shell Bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Shell Bell.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Shoal Salt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Shoal Salt.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Shoal Shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Shoal Shell.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Silk Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Silk Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Silph Scope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Silph Scope.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Silverpowder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Silverpowder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sitrus Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sitrus Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Smoke Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Smoke Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Soda Pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Soda Pop.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Soft Sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Soft Sand.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Soot Sack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Soot Sack.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Soothe Bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Soothe Bell.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Soul Dew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Soul Dew.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Spell Tag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Spell Tag.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Spelon Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Spelon Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Star Piece.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Star Piece.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Stardust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Stardust.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Starf Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Starf Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Stick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Stick.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Storage Key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Storage Key.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Sun Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Sun Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Super Potion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Super Potion.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Super Repel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Super Repel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Super Rod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Super Rod.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM Case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM Case.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM01.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM02.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM03.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM04.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM05.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM06.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM07.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM08.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM09.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM10.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM11.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM12.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM13.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM14.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM15.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM16.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM17.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM18.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM19.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM20.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM21.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM22.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM23.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM24.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM25.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM26.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM27.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM28.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM29.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM30.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM31.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM32.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM33.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM34.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM35.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM36.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM37.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM38.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM39.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM40.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM41.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM42.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM43.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM44.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM45.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM46.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM47.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM48.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM49.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/TM50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/TM50.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Tamato Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Tamato Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Tea.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Teachy TV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Teachy TV.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Thick Club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Thick Club.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Thunder Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Thunder Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Timer Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Timer Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Tinymushroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Tinymushroom.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Town Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Town Map.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Tri-pass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Tri-pass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Tropic Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Tropic Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Twistedspoon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Twistedspoon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Ultra Ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Ultra Ball.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Up-grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Up-grade.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/VS Seeker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/VS Seeker.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Wailmer Pail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Wailmer Pail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Water Stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Water Stone.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Watmel Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Watmel Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Wave Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Wave Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Wepear Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Wepear Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/White Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/White Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/White Herb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/White Herb.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Wiki Berry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Wiki Berry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Wood Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Wood Mail.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/X Accuracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/X Accuracy.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/X Attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/X Attack.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/X Defend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/X Defend.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/X Special.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/X Special.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/X Speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/X Speed.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Yellow Flute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Yellow Flute.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Yellow Scarf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Yellow Scarf.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Yellow Shard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Yellow Shard.png -------------------------------------------------------------------------------- /modules/web/static/sprites/items/Zinc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/items/Zinc.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Birch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Birch.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Feeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Feeder.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Female.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Male.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/No Repel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/No Repel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Pokerus Cured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Pokerus Cured.png -------------------------------------------------------------------------------- /modules/web/static/sprites/other/Pokerus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/other/Pokerus.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokeblocks/bitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokeblocks/bitter.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokeblocks/dry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokeblocks/dry.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokeblocks/sour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokeblocks/sour.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokeblocks/spicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokeblocks/spicy.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokeblocks/sweet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokeblocks/sweet.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon-animated/Egg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon-animated/Egg.gif -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/Egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/Egg.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Abra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Abra.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Absol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Absol.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Aipom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Aipom.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Arbok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Arbok.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Aron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Aron.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Bagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Bagon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Ditto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Ditto.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Doduo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Doduo.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Eevee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Eevee.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Ekans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Ekans.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Entei.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Entei.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Gloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Gloom.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/normal/Golem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/normal/Golem.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/shiny/Mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/shiny/Mew.png -------------------------------------------------------------------------------- /modules/web/static/sprites/pokemon/shiny/Muk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/pokemon/shiny/Muk.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/asleep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/asleep.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/burned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/burned.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/fainted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/fainted.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/frozen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/frozen.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/paralysed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/paralysed.png -------------------------------------------------------------------------------- /modules/web/static/sprites/status/poisoned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/status/poisoned.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Bug.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Dark.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Dragon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Fire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Flying.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Ghost.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Grass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Ground.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Ice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Normal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Poison.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Psychic.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Steel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/arena/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/arena/Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Bug.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Dark.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Dragon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Fire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Flying.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Ghost.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Grass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Ground.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Ice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Normal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Poison.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Steel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/border/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/border/Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/box.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/chat_FRLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/chat_FRLG.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/chat_RSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/chat_RSE.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/ivs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/ivs.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/pkmn_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/pkmn_data.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/player/male_E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/player/male_E.png -------------------------------------------------------------------------------- /modules/web/static/sprites/tcg/shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/tcg/shiny.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Bug.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Dark.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Dragon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Electric.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Fighting.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Fire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Flying.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Ghost.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Grass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Ground.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Ice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Normal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Poison.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Psychic.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Steel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Unknown.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Bug.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Dark.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Fire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Ghost.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Grass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Ice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Steel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/large/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/large/Water.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Bug.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Dark.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Dragon.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Fire.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Flying.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Ghost.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Grass.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Ground.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Ice.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Normal.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Poison.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Rock.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Steel.png -------------------------------------------------------------------------------- /modules/web/static/sprites/types/swsh/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/sprites/types/swsh/Water.png -------------------------------------------------------------------------------- /modules/web/static/stats.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stats.d.ts -------------------------------------------------------------------------------- /modules/web/static/stream-overlay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay.html -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/config.dist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/config.dist.js -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/connection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/connection.js -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/helper.js -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/index.html -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/overlay.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/overlay.css -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/overlay.js -------------------------------------------------------------------------------- /modules/web/static/stream-overlay/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream-overlay/state.js -------------------------------------------------------------------------------- /modules/web/static/stream_events.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/stream_events.d.ts -------------------------------------------------------------------------------- /modules/web/static/world_map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/modules/web/static/world_map.html -------------------------------------------------------------------------------- /plugins/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pokebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/pokebot.py -------------------------------------------------------------------------------- /pokebot.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/pokebot.spec -------------------------------------------------------------------------------- /requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/requirements.py -------------------------------------------------------------------------------- /roms/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/states/emerald/before_acro_bike_rails.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/before_acro_bike_rails.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/diving.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/diving.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/north_of_a_muddy_slope.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/north_of_a_muddy_slope.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/north_of_a_waterfall.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/north_of_a_waterfall.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/on_land_before_water.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/on_land_before_water.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/on_water_before_land.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/on_water_before_land.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/south_of_a_muddy_slope.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/south_of_a_muddy_slope.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/south_of_a_waterfall.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/south_of_a_waterfall.ss1 -------------------------------------------------------------------------------- /tests/states/emerald/water_currents.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/emerald/water_currents.ss1 -------------------------------------------------------------------------------- /tests/states/firered/on_land_before_water.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/firered/on_land_before_water.ss1 -------------------------------------------------------------------------------- /tests/states/firered/on_water_before_land.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/firered/on_water_before_land.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/before_acro_bike_rails.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/before_acro_bike_rails.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/north_of_a_muddy_slope.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/north_of_a_muddy_slope.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/north_of_a_waterfall.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/north_of_a_waterfall.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/on_land_before_water.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/on_land_before_water.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/on_water_before_land.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/on_water_before_land.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/south_of_a_muddy_slope.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/south_of_a_muddy_slope.ss1 -------------------------------------------------------------------------------- /tests/states/ruby/south_of_a_waterfall.ss1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/states/ruby/south_of_a_waterfall.ss1 -------------------------------------------------------------------------------- /tests/test_battle_evolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_battle_evolution.py -------------------------------------------------------------------------------- /tests/test_battle_move_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_battle_move_learning.py -------------------------------------------------------------------------------- /tests/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_map.py -------------------------------------------------------------------------------- /tests/test_mode_spin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_mode_spin.py -------------------------------------------------------------------------------- /tests/test_mode_starter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_mode_starter.py -------------------------------------------------------------------------------- /tests/test_pathfinding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/test_pathfinding.py -------------------------------------------------------------------------------- /tests/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/tests/utility.py -------------------------------------------------------------------------------- /updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/updater.py -------------------------------------------------------------------------------- /utility/extract_stats_encounters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/utility/extract_stats_encounters.py -------------------------------------------------------------------------------- /wiki/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/Readme.md -------------------------------------------------------------------------------- /wiki/images/EV_Train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/EV_Train.png -------------------------------------------------------------------------------- /wiki/images/Lati_SSR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/Lati_SSR.png -------------------------------------------------------------------------------- /wiki/images/badge_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/badge_black.svg -------------------------------------------------------------------------------- /wiki/images/badge_discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/badge_discord.svg -------------------------------------------------------------------------------- /wiki/images/badge_python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/badge_python.svg -------------------------------------------------------------------------------- /wiki/images/badge_wiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/badge_wiki.svg -------------------------------------------------------------------------------- /wiki/images/badge_youtube.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/badge_youtube.svg -------------------------------------------------------------------------------- /wiki/images/berry_blender_ingame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/berry_blender_ingame.png -------------------------------------------------------------------------------- /wiki/images/berry_blender_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/berry_blender_table.png -------------------------------------------------------------------------------- /wiki/images/cerulean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/cerulean.png -------------------------------------------------------------------------------- /wiki/images/daycare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/daycare.png -------------------------------------------------------------------------------- /wiki/images/db_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/db_browser.png -------------------------------------------------------------------------------- /wiki/images/debug_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/debug_mode.png -------------------------------------------------------------------------------- /wiki/images/discord_config_anti_shiny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_anti_shiny.png -------------------------------------------------------------------------------- /wiki/images/discord_config_custom_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_custom_filter.png -------------------------------------------------------------------------------- /wiki/images/discord_config_milestones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_milestones.png -------------------------------------------------------------------------------- /wiki/images/discord_config_phase_summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_phase_summary.png -------------------------------------------------------------------------------- /wiki/images/discord_config_pickup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_pickup.png -------------------------------------------------------------------------------- /wiki/images/discord_config_shiny_encounter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_shiny_encounter.png -------------------------------------------------------------------------------- /wiki/images/discord_config_shiny_milestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_shiny_milestone.png -------------------------------------------------------------------------------- /wiki/images/discord_config_total_milestone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_config_total_milestone.png -------------------------------------------------------------------------------- /wiki/images/discord_milestones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_milestones.png -------------------------------------------------------------------------------- /wiki/images/discord_phase_stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_phase_stats.png -------------------------------------------------------------------------------- /wiki/images/discord_shiny_notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/discord_shiny_notification.png -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_1.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_2.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_3.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_4.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_5.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_6.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_7.gif -------------------------------------------------------------------------------- /wiki/images/e_battle_transition_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/e_battle_transition_8.gif -------------------------------------------------------------------------------- /wiki/images/feebas_route_119_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/feebas_route_119_e.png -------------------------------------------------------------------------------- /wiki/images/feebas_route_119_rs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/feebas_route_119_rs.png -------------------------------------------------------------------------------- /wiki/images/feeder_prompt_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/feeder_prompt_windows.png -------------------------------------------------------------------------------- /wiki/images/gift_beldum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_beldum.png -------------------------------------------------------------------------------- /wiki/images/gift_castform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_castform.png -------------------------------------------------------------------------------- /wiki/images/gift_eevee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_eevee.png -------------------------------------------------------------------------------- /wiki/images/gift_frlg_fossils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_frlg_fossils.png -------------------------------------------------------------------------------- /wiki/images/gift_hitmons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_hitmons.png -------------------------------------------------------------------------------- /wiki/images/gift_lapras.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_lapras.png -------------------------------------------------------------------------------- /wiki/images/gift_magikarp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_magikarp.png -------------------------------------------------------------------------------- /wiki/images/gift_rse_fossils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_rse_fossils.png -------------------------------------------------------------------------------- /wiki/images/gift_togepi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_togepi.png -------------------------------------------------------------------------------- /wiki/images/gift_wynaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/gift_wynaut.png -------------------------------------------------------------------------------- /wiki/images/glass_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/glass_workshop.png -------------------------------------------------------------------------------- /wiki/images/granite_cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/granite_cave.png -------------------------------------------------------------------------------- /wiki/images/groudon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/groudon.png -------------------------------------------------------------------------------- /wiki/images/groudon_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/groudon_ruby.png -------------------------------------------------------------------------------- /wiki/images/ho-oh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/ho-oh.png -------------------------------------------------------------------------------- /wiki/images/http_api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/http_api.png -------------------------------------------------------------------------------- /wiki/images/issue_bad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/issue_bad.png -------------------------------------------------------------------------------- /wiki/images/issue_good.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/issue_good.png -------------------------------------------------------------------------------- /wiki/images/kecleon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/kecleon.png -------------------------------------------------------------------------------- /wiki/images/kyogre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/kyogre.png -------------------------------------------------------------------------------- /wiki/images/kyogre_sapphire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/kyogre_sapphire.png -------------------------------------------------------------------------------- /wiki/images/lati.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/lati.png -------------------------------------------------------------------------------- /wiki/images/level_grind_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/level_grind_prompt.png -------------------------------------------------------------------------------- /wiki/images/load_save_state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/load_save_state.png -------------------------------------------------------------------------------- /wiki/images/lugia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/lugia.png -------------------------------------------------------------------------------- /wiki/images/main_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/main_interface.png -------------------------------------------------------------------------------- /wiki/images/mew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/mew.png -------------------------------------------------------------------------------- /wiki/images/nugget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/nugget.png -------------------------------------------------------------------------------- /wiki/images/nugget_bridge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/nugget_bridge.png -------------------------------------------------------------------------------- /wiki/images/os_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_apple.png -------------------------------------------------------------------------------- /wiki/images/os_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_arch.png -------------------------------------------------------------------------------- /wiki/images/os_debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_debian.png -------------------------------------------------------------------------------- /wiki/images/os_pop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_pop.png -------------------------------------------------------------------------------- /wiki/images/os_ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_ubuntu.png -------------------------------------------------------------------------------- /wiki/images/os_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/os_windows.png -------------------------------------------------------------------------------- /wiki/images/pk3_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/pk3_files.png -------------------------------------------------------------------------------- /wiki/images/pokeblock_prompt_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/pokeblock_prompt_windows.png -------------------------------------------------------------------------------- /wiki/images/puzzle_deoxys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_deoxys.png -------------------------------------------------------------------------------- /wiki/images/puzzle_deoxys_frlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_deoxys_frlg.png -------------------------------------------------------------------------------- /wiki/images/puzzle_mirage_tower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_mirage_tower.png -------------------------------------------------------------------------------- /wiki/images/puzzle_regi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_regi.png -------------------------------------------------------------------------------- /wiki/images/puzzle_seafloor_cavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_seafloor_cavern.png -------------------------------------------------------------------------------- /wiki/images/puzzle_sealed_chamber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_sealed_chamber.png -------------------------------------------------------------------------------- /wiki/images/puzzle_sky_pillar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_sky_pillar.png -------------------------------------------------------------------------------- /wiki/images/puzzle_tanoby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/puzzle_tanoby.png -------------------------------------------------------------------------------- /wiki/images/rayquaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/rayquaza.png -------------------------------------------------------------------------------- /wiki/images/regice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/regice.png -------------------------------------------------------------------------------- /wiki/images/regirock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/regirock.png -------------------------------------------------------------------------------- /wiki/images/registeel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/registeel.png -------------------------------------------------------------------------------- /wiki/images/repel_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/repel_prompt.png -------------------------------------------------------------------------------- /wiki/images/repel_prompt_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/repel_prompt_windows.png -------------------------------------------------------------------------------- /wiki/images/safari_mode_start_frlg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/safari_mode_start_frlg.png -------------------------------------------------------------------------------- /wiki/images/safari_mode_start_rse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/safari_mode_start_rse.png -------------------------------------------------------------------------------- /wiki/images/safari_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/safari_target.png -------------------------------------------------------------------------------- /wiki/images/safari_target_rse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/safari_target_rse.png -------------------------------------------------------------------------------- /wiki/images/safari_zone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/safari_zone.png -------------------------------------------------------------------------------- /wiki/images/shiny.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/shiny.gif -------------------------------------------------------------------------------- /wiki/images/tcg_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/images/tcg_example.png -------------------------------------------------------------------------------- /wiki/pages/Anti-Shiny Sprites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Anti-Shiny Sprites.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - Catch Block List.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - Catch Block List.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - Cheats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - Cheats.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - Discord.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - Discord.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - HTTP Server.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - HTTP Server.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - Key Mappings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - Key Mappings.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - OBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - OBS.md -------------------------------------------------------------------------------- /wiki/pages/Configuration - Overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Configuration - Overview.md -------------------------------------------------------------------------------- /wiki/pages/Console, Logging and Image Config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Console, Logging and Image Config.md -------------------------------------------------------------------------------- /wiki/pages/Customisation - Plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Customisation - Plugins.md -------------------------------------------------------------------------------- /wiki/pages/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Getting Started.md -------------------------------------------------------------------------------- /wiki/pages/MacOS Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/MacOS Installation.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Acro Bike Bunny Hop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Acro Bike Bunny Hop.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Berry Blender.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Berry Blender.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Daycare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Daycare.md -------------------------------------------------------------------------------- /wiki/pages/Mode - EV Train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - EV Train.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Feebas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Feebas.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Fishing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Fishing.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Game Corner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Game Corner.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Item Steal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Item Steal.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Kecleon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Kecleon.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Level Grind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Level Grind.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Manual.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Nugget Bridge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Nugget Bridge.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Puzzle Solver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Puzzle Solver.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Roamer Resets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Roamer Resets.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Rock Smash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Rock Smash.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Safari.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Safari.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Spin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Spin.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Starters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Starters.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Static Gift Resets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Static Gift Resets.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Static Run Aways.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Static Run Aways.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Static Soft Resets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Static Soft Resets.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Sudowoodo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Sudowoodo.md -------------------------------------------------------------------------------- /wiki/pages/Mode - Sweet Scent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Mode - Sweet Scent.md -------------------------------------------------------------------------------- /wiki/pages/Optimisations - Battle Transitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Optimisations - Battle Transitions.md -------------------------------------------------------------------------------- /wiki/pages/Pokemon By Bot Mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Pokemon By Bot Mode.md -------------------------------------------------------------------------------- /wiki/pages/Report an Issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Report an Issue.md -------------------------------------------------------------------------------- /wiki/pages/Stream FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Stream FAQ.md -------------------------------------------------------------------------------- /wiki/pages/Supported Games and Languages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Supported Games and Languages.md -------------------------------------------------------------------------------- /wiki/pages/Using Unsupported ROMs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/40Cakes/pokebot-gen3/HEAD/wiki/pages/Using Unsupported ROMs.md --------------------------------------------------------------------------------