├── .codeclimate.yml ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Pokemon Go Universal.sln ├── PokemonGo-UWP.Tests ├── Package.appxmanifest ├── PokemonGo-UWP.Tests.csproj ├── PokemonGo-UWP.Tests_TemporaryKey.pfx ├── Properties │ ├── AssemblyInfo.cs │ └── UnitTestApp.rd.xml ├── TestAssets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.png │ ├── Square44x44Logo.scale-200.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── UnitTestApp.xaml ├── UnitTestApp.xaml.cs ├── Utils │ └── CollectionExtensionsTests.cs └── project.json ├── PokemonGo-UWP ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Achievements │ │ ├── acetrainer_lv1.png │ │ ├── acetrainer_lv2.png │ │ ├── acetrainer_lv3.png │ │ ├── backpacker_lv1.png │ │ ├── backpacker_lv2.png │ │ ├── backpacker_lv3.png │ │ ├── badge_lv0.png │ │ ├── badge_lv1.png │ │ ├── badge_lv2.png │ │ ├── badge_lv3.png │ │ ├── battlegirl_lv1.png │ │ ├── battlegirl_lv2.png │ │ ├── battlegirl_lv3.png │ │ ├── breeder_lv1.png │ │ ├── breeder_lv2.png │ │ ├── breeder_lv3.png │ │ ├── collector_lv1.png │ │ ├── collector_lv2.png │ │ ├── collector_lv3.png │ │ ├── fisherman_lv1.png │ │ ├── fisherman_lv2.png │ │ ├── fisherman_lv3.png │ │ ├── jogger_lv1.png │ │ ├── jogger_lv2.png │ │ ├── jogger_lv3.png │ │ ├── kanto_lv1.png │ │ ├── kanto_lv2.png │ │ ├── kanto_lv3.png │ │ ├── pikachufan_lv1.png │ │ ├── pikachufan_lv2.png │ │ ├── pikachufan_lv3.png │ │ ├── scientist_lv1.png │ │ ├── scientist_lv2.png │ │ ├── scientist_lv3.png │ │ ├── youngster_lv1.png │ │ ├── youngster_lv2.png │ │ └── youngster_lv3.png │ ├── Audio │ │ ├── Battle.mp3 │ │ ├── BeforeTheFight.mp3 │ │ ├── EncounterPokemon.mp3 │ │ ├── Evolution.mp3 │ │ ├── Gameplay.mp3 │ │ ├── Gotcha.mp3 │ │ ├── Levelup.mp3 │ │ ├── Main_xp.mp3 │ │ ├── Professor.mp3 │ │ ├── System_Message.mp3 │ │ ├── Title.mp3 │ │ └── pokemon_found_ding.wav │ ├── Backgrounds │ │ ├── Park.png │ │ ├── Parkscene_Background.png │ │ ├── Parkscene_Background_Night.png │ │ ├── details_type_bg_bug.png │ │ ├── details_type_bg_default.png │ │ ├── details_type_bg_dragon.png │ │ ├── details_type_bg_electric.png │ │ ├── details_type_bg_fairy.png │ │ ├── details_type_bg_fighting.png │ │ ├── details_type_bg_fire.png │ │ ├── details_type_bg_flying.png │ │ ├── details_type_bg_ghost.png │ │ ├── details_type_bg_grass.png │ │ ├── details_type_bg_ground.png │ │ ├── details_type_bg_ice.png │ │ ├── details_type_bg_normal.png │ │ ├── details_type_bg_poison.png │ │ ├── details_type_bg_psychic.png │ │ ├── details_type_bg_rock.png │ │ ├── details_type_bg_water.png │ │ ├── sky_day.png │ │ ├── sky_night.png │ │ ├── ui_bg_blue_02.png │ │ ├── ui_bg_green.png │ │ ├── ui_bg_green_02.png │ │ ├── ui_bg_green_03.png │ │ ├── ui_bg_green_04.png │ │ ├── ui_bg_gym_resolve.png │ │ ├── ui_bg_purple.png │ │ ├── ui_bg_purple_02.png │ │ ├── ui_bg_recentcatch.png │ │ └── ui_settings_bg.png │ ├── Buttons │ │ ├── btn_action_menu.png │ │ ├── btn_attack.png │ │ ├── btn_back_normal_dark.png │ │ ├── btn_claim.png │ │ ├── btn_close.png │ │ ├── btn_close_dark.png │ │ ├── btn_close_normal.png │ │ ├── btn_close_normal_dark.png │ │ ├── btn_empty.png │ │ ├── btn_go.png │ │ ├── btn_items.png │ │ ├── btn_items_catch.png │ │ ├── btn_master.png │ │ ├── btn_menu.png │ │ ├── btn_ok.png │ │ ├── btn_ok_dark.png │ │ ├── btn_ok_normal_dark.png │ │ ├── btn_pokedex.png │ │ ├── btn_pokemon.png │ │ ├── btn_run_away.png │ │ ├── btn_settings.png │ │ ├── btn_swap.png │ │ └── btn_train.png │ ├── Candy │ │ ├── Bug.png │ │ ├── Dark.png │ │ ├── Default.png │ │ ├── Dragon.png │ │ ├── Electric.png │ │ ├── Fairy.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 │ ├── Fonts │ │ ├── Generica Bold.otf │ │ ├── Generica.otf │ │ ├── Lato-Bold.ttf │ │ ├── Lato-Italic.ttf │ │ ├── Lato-Light.ttf │ │ ├── Lato-Medium.ttf │ │ └── Lato-Regular.ttf │ ├── Icons │ │ ├── CompassIcon.png │ │ ├── Footprint_Far.png │ │ ├── Footprint_Mid.png │ │ ├── Footprint_Near.png │ │ ├── FrontPortraitRing.png │ │ ├── RecenterMapIconDark.png │ │ ├── RecenterMapIconLight.png │ │ ├── circle_255_filled_01.png │ │ ├── crown.png │ │ ├── gender-female.png │ │ ├── gender-male.png │ │ ├── hint_gym_blue.png │ │ ├── hint_gym_neutral.png │ │ ├── hint_gym_red.png │ │ ├── hint_gym_yellow.png │ │ ├── ic_appraise.png │ │ ├── ic_arena_blue.png │ │ ├── ic_arena_red.png │ │ ├── ic_arena_yellow.png │ │ ├── ic_buddy.png │ │ ├── ic_buddy_light.png │ │ ├── ic_candy_light.png │ │ ├── ic_combat.png │ │ ├── ic_date.png │ │ ├── ic_fav.png │ │ ├── ic_health.png │ │ ├── ic_incubator.png │ │ ├── ic_ivpercentage.png │ │ ├── ic_level.png │ │ ├── ic_name.png │ │ ├── ic_number.png │ │ ├── ic_store.png │ │ ├── pokestop_far.png │ │ ├── pokestop_far_inactive.png │ │ ├── pokestop_far_inactive_lured.png │ │ ├── pokestop_far_lured.png │ │ ├── pokestop_near.png │ │ ├── pokestop_near_inactive.png │ │ ├── pokestop_near_inactive_lured.png │ │ ├── pokestop_near_lured.png │ │ ├── spawnpoint.png │ │ ├── stardust_painted.png │ │ └── stardust_vector.png │ ├── Items │ │ ├── E_Item_901.png │ │ ├── E_Item_902.png │ │ ├── Egg-10.png │ │ ├── Egg-5.png │ │ ├── Egg.png │ │ ├── Item_1.png │ │ ├── Item_101.png │ │ ├── Item_102.png │ │ ├── Item_103.png │ │ ├── Item_104.png │ │ ├── Item_1101.png │ │ ├── Item_1102.png │ │ ├── Item_1103.png │ │ ├── Item_1104.png │ │ ├── Item_1105.png │ │ ├── Item_2.png │ │ ├── Item_201.png │ │ ├── Item_202.png │ │ ├── Item_3.png │ │ ├── Item_301.png │ │ ├── Item_4.png │ │ ├── Item_401.png │ │ ├── Item_402.png │ │ ├── Item_501.png │ │ ├── Item_701.png │ │ ├── Item_702.png │ │ ├── Item_703.png │ │ ├── Item_704.png │ │ ├── Item_705.png │ │ ├── Item_801.png │ │ ├── Item_901.png │ │ ├── Item_902.png │ │ ├── Item_COIN_01.png │ │ ├── Item_COIN_BOX_01.png │ │ ├── Item_COIN_BUCKET_01.png │ │ ├── Item_COIN_HANDFUL_01.png │ │ ├── Item_COIN_HEAP_01.png │ │ ├── Item_COIN_POUCH_01.png │ │ └── Item_COIN_STACK_01.png │ ├── LiveTiles │ │ ├── Normal │ │ │ ├── NewStoreLogo.png │ │ │ ├── NewStoreLogo.scale-100.png │ │ │ ├── NewStoreLogo.scale-125.png │ │ │ ├── NewStoreLogo.scale-150.png │ │ │ ├── NewStoreLogo.scale-200.png │ │ │ ├── NewStoreLogo.scale-400.png │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ ├── Square310x310Logo.scale-125.png │ │ │ ├── Square310x310Logo.scale-150.png │ │ │ ├── Square310x310Logo.scale-200.png │ │ │ ├── Square310x310Logo.scale-400.png │ │ │ ├── Square44x44Logo.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square71x71Logo.png │ │ │ ├── Square71x71Logo.scale-100.png │ │ │ ├── Square71x71Logo.scale-125.png │ │ │ ├── Square71x71Logo.scale-150.png │ │ │ ├── Square71x71Logo.scale-200.png │ │ │ ├── Square71x71Logo.scale-400.png │ │ │ ├── Wide310x150Logo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── Official │ │ │ ├── NewStoreLogo.png │ │ │ ├── NewStoreLogo.scale-100.png │ │ │ ├── NewStoreLogo.scale-125.png │ │ │ ├── NewStoreLogo.scale-150.png │ │ │ ├── NewStoreLogo.scale-200.png │ │ │ ├── NewStoreLogo.scale-400.png │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ ├── Square310x310Logo.scale-125.png │ │ │ ├── Square310x310Logo.scale-150.png │ │ │ ├── Square310x310Logo.scale-200.png │ │ │ ├── Square310x310Logo.scale-400.png │ │ │ ├── Square44x44Logo.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square71x71Logo.png │ │ │ ├── Square71x71Logo.scale-100.png │ │ │ ├── Square71x71Logo.scale-125.png │ │ │ ├── Square71x71Logo.scale-150.png │ │ │ ├── Square71x71Logo.scale-200.png │ │ │ ├── Square71x71Logo.scale-400.png │ │ │ ├── Wide310x150Logo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── Peek.gif │ │ ├── People.gif │ │ ├── People.png │ │ └── Transparent │ │ │ ├── NewStoreLogo.png │ │ │ ├── NewStoreLogo.scale-100.png │ │ │ ├── NewStoreLogo.scale-125.png │ │ │ ├── NewStoreLogo.scale-150.png │ │ │ ├── NewStoreLogo.scale-200.png │ │ │ ├── NewStoreLogo.scale-400.png │ │ │ ├── Square150x150Logo.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square310x310Logo.png │ │ │ ├── Square310x310Logo.scale-100.png │ │ │ ├── Square310x310Logo.scale-125.png │ │ │ ├── Square310x310Logo.scale-150.png │ │ │ ├── Square310x310Logo.scale-200.png │ │ │ ├── Square310x310Logo.scale-400.png │ │ │ ├── Square44x44Logo.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square71x71Logo.png │ │ │ ├── Square71x71Logo.scale-100.png │ │ │ ├── Square71x71Logo.scale-125.png │ │ │ ├── Square71x71Logo.scale-150.png │ │ │ ├── Square71x71Logo.scale-200.png │ │ │ ├── Square71x71Logo.scale-400.png │ │ │ ├── Wide310x150Logo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── Pokemons │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 100.png │ │ ├── 101.png │ │ ├── 102.png │ │ ├── 103.png │ │ ├── 104.png │ │ ├── 105.png │ │ ├── 106.png │ │ ├── 107.png │ │ ├── 108.png │ │ ├── 109.png │ │ ├── 11.png │ │ ├── 110.png │ │ ├── 111.png │ │ ├── 112.png │ │ ├── 113.png │ │ ├── 114.png │ │ ├── 115.png │ │ ├── 116.png │ │ ├── 117.png │ │ ├── 118.png │ │ ├── 119.png │ │ ├── 12.png │ │ ├── 120.png │ │ ├── 121.png │ │ ├── 122.png │ │ ├── 123.png │ │ ├── 124.png │ │ ├── 125.png │ │ ├── 126.png │ │ ├── 127.png │ │ ├── 128.png │ │ ├── 129.png │ │ ├── 13.png │ │ ├── 130.png │ │ ├── 131.png │ │ ├── 132.png │ │ ├── 133.png │ │ ├── 134.png │ │ ├── 135.png │ │ ├── 136.png │ │ ├── 137.png │ │ ├── 138.png │ │ ├── 139.png │ │ ├── 14.png │ │ ├── 140.png │ │ ├── 141.png │ │ ├── 142.png │ │ ├── 143.png │ │ ├── 144.png │ │ ├── 145.png │ │ ├── 146.png │ │ ├── 147.png │ │ ├── 148.png │ │ ├── 149.png │ │ ├── 15.png │ │ ├── 150.png │ │ ├── 151.png │ │ ├── 152.png │ │ ├── 153.png │ │ ├── 154.png │ │ ├── 155.png │ │ ├── 156.png │ │ ├── 157.png │ │ ├── 158.png │ │ ├── 159.png │ │ ├── 16.png │ │ ├── 160.png │ │ ├── 161.png │ │ ├── 162.png │ │ ├── 163.png │ │ ├── 164.png │ │ ├── 165.png │ │ ├── 166.png │ │ ├── 167.png │ │ ├── 168.png │ │ ├── 169.png │ │ ├── 17.png │ │ ├── 170.png │ │ ├── 171.png │ │ ├── 172.png │ │ ├── 173.png │ │ ├── 174.png │ │ ├── 175.png │ │ ├── 176.png │ │ ├── 177.png │ │ ├── 178.png │ │ ├── 179.png │ │ ├── 18.png │ │ ├── 180.png │ │ ├── 181.png │ │ ├── 182.png │ │ ├── 183.png │ │ ├── 184.png │ │ ├── 185.png │ │ ├── 186.png │ │ ├── 187.png │ │ ├── 188.png │ │ ├── 189.png │ │ ├── 19.png │ │ ├── 190.png │ │ ├── 191.png │ │ ├── 192.png │ │ ├── 193.png │ │ ├── 194.png │ │ ├── 195.png │ │ ├── 196.png │ │ ├── 197.png │ │ ├── 198.png │ │ ├── 199.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 200.png │ │ ├── 201-01-A.png │ │ ├── 201-02-B.png │ │ ├── 201-03-C.png │ │ ├── 201-04-D.png │ │ ├── 201-05-E.png │ │ ├── 201-06-F.png │ │ ├── 201-07-G.png │ │ ├── 201-08-H.png │ │ ├── 201-09-I.png │ │ ├── 201-10-J.png │ │ ├── 201-11-K.png │ │ ├── 201-12-L.png │ │ ├── 201-13-M.png │ │ ├── 201-14-N.png │ │ ├── 201-15-O.png │ │ ├── 201-16-P.png │ │ ├── 201-17-Q.png │ │ ├── 201-18-R.png │ │ ├── 201-19-S.png │ │ ├── 201-20-T.png │ │ ├── 201-21-U.png │ │ ├── 201-22-V.png │ │ ├── 201-23-W.png │ │ ├── 201-24-X.png │ │ ├── 201-25-Y.png │ │ ├── 201-26-Z.png │ │ ├── 201-27-!.png │ │ ├── 201-28-¿.png │ │ ├── 201.png │ │ ├── 201_11.png │ │ ├── 201_12.png │ │ ├── 201_13.png │ │ ├── 201_14.png │ │ ├── 201_15.png │ │ ├── 201_16.png │ │ ├── 201_17.png │ │ ├── 201_18.png │ │ ├── 201_19.png │ │ ├── 201_20.png │ │ ├── 201_21.png │ │ ├── 201_22.png │ │ ├── 201_23.png │ │ ├── 201_24.png │ │ ├── 201_25.png │ │ ├── 201_26.png │ │ ├── 201_28.png │ │ ├── 201_29.png │ │ ├── 201_30.png │ │ ├── 201_31.png │ │ ├── 201_32.png │ │ ├── 201_33.png │ │ ├── 201_34.png │ │ ├── 201_35.png │ │ ├── 201_36.png │ │ ├── 201_37.png │ │ ├── 201_38.png │ │ ├── 201a.png │ │ ├── 201b.png │ │ ├── 201c.png │ │ ├── 201d.png │ │ ├── 201e.png │ │ ├── 201excl.png │ │ ├── 201f.png │ │ ├── 201g.png │ │ ├── 201h.png │ │ ├── 201i.png │ │ ├── 201j.png │ │ ├── 201k.png │ │ ├── 201l.png │ │ ├── 201m.png │ │ ├── 201n.png │ │ ├── 201o.png │ │ ├── 201p.png │ │ ├── 201q.png │ │ ├── 201ques.png │ │ ├── 201r.png │ │ ├── 201s.png │ │ ├── 201t.png │ │ ├── 201u.png │ │ ├── 201v.png │ │ ├── 201w.png │ │ ├── 201x.png │ │ ├── 201y.png │ │ ├── 201z.png │ │ ├── 202.png │ │ ├── 203.png │ │ ├── 204.png │ │ ├── 205.png │ │ ├── 206.png │ │ ├── 207.png │ │ ├── 208.png │ │ ├── 209.png │ │ ├── 21.png │ │ ├── 210.png │ │ ├── 211.png │ │ ├── 212.png │ │ ├── 213.png │ │ ├── 214.png │ │ ├── 215.png │ │ ├── 216.png │ │ ├── 217.png │ │ ├── 218.png │ │ ├── 219.png │ │ ├── 22.png │ │ ├── 220.png │ │ ├── 221.png │ │ ├── 222.png │ │ ├── 223.png │ │ ├── 224.png │ │ ├── 225.png │ │ ├── 226.png │ │ ├── 227.png │ │ ├── 228.png │ │ ├── 229.png │ │ ├── 23.png │ │ ├── 230.png │ │ ├── 231.png │ │ ├── 232.png │ │ ├── 233.png │ │ ├── 234.png │ │ ├── 235.png │ │ ├── 236.png │ │ ├── 237.png │ │ ├── 238.png │ │ ├── 239.png │ │ ├── 24.png │ │ ├── 240.png │ │ ├── 241.png │ │ ├── 242.png │ │ ├── 243.png │ │ ├── 244.png │ │ ├── 245.png │ │ ├── 246.png │ │ ├── 247.png │ │ ├── 248.png │ │ ├── 249.png │ │ ├── 25.png │ │ ├── 250.png │ │ ├── 251.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 40.png │ │ ├── 41.png │ │ ├── 42.png │ │ ├── 43.png │ │ ├── 44.png │ │ ├── 45.png │ │ ├── 46.png │ │ ├── 47.png │ │ ├── 48.png │ │ ├── 49.png │ │ ├── 5.png │ │ ├── 50.png │ │ ├── 51.png │ │ ├── 52.png │ │ ├── 53.png │ │ ├── 54.png │ │ ├── 55.png │ │ ├── 56.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 59.png │ │ ├── 6.png │ │ ├── 60.png │ │ ├── 61.png │ │ ├── 62.png │ │ ├── 63.png │ │ ├── 64.png │ │ ├── 65.png │ │ ├── 66.png │ │ ├── 67.png │ │ ├── 68.png │ │ ├── 69.png │ │ ├── 7.png │ │ ├── 70.png │ │ ├── 71.png │ │ ├── 72.png │ │ ├── 73.png │ │ ├── 74.png │ │ ├── 75.png │ │ ├── 76.png │ │ ├── 77.png │ │ ├── 78.png │ │ ├── 79.png │ │ ├── 8.png │ │ ├── 80.png │ │ ├── 81.png │ │ ├── 82.png │ │ ├── 83.png │ │ ├── 84.png │ │ ├── 85.png │ │ ├── 86.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 89.png │ │ ├── 9.png │ │ ├── 90.png │ │ ├── 91.png │ │ ├── 92.png │ │ ├── 93.png │ │ ├── 94.png │ │ ├── 95.png │ │ ├── 96.png │ │ ├── 97.png │ │ ├── 98.png │ │ └── 99.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square44x44Logo.png │ ├── StoreLogo.png │ ├── Teams │ │ ├── gym_base_blue.png │ │ ├── gym_base_empty.png │ │ ├── gym_base_red.png │ │ ├── gym_base_yellow.png │ │ ├── instinct.png │ │ ├── mystic.png │ │ ├── no-team.png │ │ ├── team_leader_blue.png │ │ ├── team_leader_red.png │ │ ├── team_leader_yellow.png │ │ └── valor.png │ ├── UI │ │ ├── Desert.jpg │ │ ├── Gym_Arena_Glass.png │ │ ├── Park.jpg │ │ ├── Pokeball.png │ │ ├── Professor.png │ │ ├── Spotlight.png │ │ ├── WarningScreen_BackgroundPlate.png │ │ ├── ash.png │ │ ├── ash_withincense.png │ │ ├── avatar.gif │ │ ├── avatar.png │ │ ├── bush.png │ │ ├── candy.png │ │ ├── close.png │ │ ├── egg.png │ │ ├── escape.png │ │ ├── gem.png │ │ ├── inventory.png │ │ ├── logoDark.png │ │ ├── logoLight.png │ │ ├── night_sky_texture_by_amdillon.jpg │ │ ├── panelBG.png │ │ ├── player-avatar-incense.png │ │ ├── player-avatar.png │ │ ├── pokeballLoading.gif │ │ ├── pokestopBG.png │ │ ├── poksetop.png │ │ ├── raids_loading_screen.png │ │ ├── stardust.png │ │ ├── steelix_loading_screen.png │ │ ├── walk.png │ │ ├── walk_dgrey.png │ │ ├── walk_grey.png │ │ └── walk_two.png │ └── logo.ai ├── Controls │ ├── ArcProgressBar.cs │ ├── CircularProgressBar.xaml │ ├── CircularProgressBar.xaml.cs │ ├── MessageDialog │ │ ├── PoGoMessageDialog.xaml │ │ ├── PoGoMessageDialog.xaml.cs │ │ ├── StepperMessageDialog.xaml │ │ ├── StepperMessageDialog.xaml.cs │ │ ├── TextboxMessageDialog.xaml │ │ └── TextboxMessageDialog.xaml.cs │ ├── OutdoorBackground.xaml │ ├── OutdoorBackground.xaml.cs │ ├── PoGoPivotHeader.xaml │ └── PoGoPivotHeader.xaml.cs ├── Entities │ ├── AppliedItemWrapper.cs │ ├── FortDataWrapper.cs │ ├── IMapPokemon.cs │ ├── IUpdatable.cs │ ├── IncensePokemon.cs │ ├── ItemDataWrapper.cs │ ├── Language.cs │ ├── LuredPokemon.cs │ ├── MapPokemonWrapper.cs │ ├── NearbyPokemonWrapper.cs │ ├── ObservableCollectionPlus.cs │ ├── PokemonDataWrapper.cs │ ├── PokemonModel.cs │ ├── PokemonStat.cs │ ├── SpawnPointWrapper.cs │ ├── VersionInfo.cs │ └── WebConfigurationInfo.cs ├── Enums │ └── AuthType.cs ├── Exceptions │ └── LocationException.cs ├── MultilingualResources │ ├── PokemonGo-UWP.cs.xlf │ ├── PokemonGo-UWP.da.xlf │ ├── PokemonGo-UWP.de-CH.xlf │ ├── PokemonGo-UWP.de.xlf │ ├── PokemonGo-UWP.el.xlf │ ├── PokemonGo-UWP.en-GB.xlf │ ├── PokemonGo-UWP.es-MX.xlf │ ├── PokemonGo-UWP.es.xlf │ ├── PokemonGo-UWP.fi.xlf │ ├── PokemonGo-UWP.fr.xlf │ ├── PokemonGo-UWP.he.xlf │ ├── PokemonGo-UWP.hr-HR.xlf │ ├── PokemonGo-UWP.hr.xlf │ ├── PokemonGo-UWP.hu.xlf │ ├── PokemonGo-UWP.id.xlf │ ├── PokemonGo-UWP.it.xlf │ ├── PokemonGo-UWP.ja.xlf │ ├── PokemonGo-UWP.nb-NO.xlf │ ├── PokemonGo-UWP.nl.xlf │ ├── PokemonGo-UWP.nn-NO.xlf │ ├── PokemonGo-UWP.pl.xlf │ ├── PokemonGo-UWP.pt-BR.xlf │ ├── PokemonGo-UWP.pt-PT.xlf │ ├── PokemonGo-UWP.ru.xlf │ ├── PokemonGo-UWP.sk.xlf │ ├── PokemonGo-UWP.tr.xlf │ ├── PokemonGo-UWP.zh-CN.xlf │ ├── PokemonGo-UWP.zh-HK.xlf │ └── PokemonGo-UWP.zh-TW.xlf ├── Package.appxmanifest ├── PokemonGo-UWP.csproj ├── PokemonGo-UWP_TemporaryKey.pfx ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── Strings │ ├── cs │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── da │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── de-CH │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── de │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── el │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── en-GB │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── en-US │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── es-MX │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── es │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── fi │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── fr │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── gr-GR │ │ └── Resources.resw │ ├── he │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── hr-HR │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── hr │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── hu-HU │ │ ├── Items.resw │ │ └── Resources.resw │ ├── hu │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── id │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── it │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── ja │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── nb-NO │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── nl │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── nn-NO │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── pl │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── pt-BR │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── pt-PT │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── ru │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── sk │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── tr │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── zh-CN │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ ├── zh-HK │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw │ └── zh-TW │ │ ├── Achievements.resw │ │ ├── CodeResources.resw │ │ ├── Items.resw │ │ ├── Pokedex.resw │ │ ├── Pokemon.resw │ │ ├── PokemonMoves.resw │ │ ├── PokemonTypes.resw │ │ └── Resources.resw ├── Styles │ ├── Custom.xaml │ └── NianticStyleLight.json ├── Utils │ ├── Achievements │ │ ├── AchievementType.cs │ │ ├── AchievementValueAttribute.cs │ │ ├── BadgeTypeAttribute.cs │ │ ├── BronzeAttribute.cs │ │ ├── GoldAttribute.cs │ │ └── SilverAttribute.cs │ ├── ApplicationKeys.cs │ ├── Extensions │ │ ├── CollectionExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── IEnumerablePokemonExtensions.cs │ │ ├── MessageDialogExtensions.cs │ │ ├── PokedexExtensions.cs │ │ └── RandomExtensions.cs │ ├── Game │ │ ├── Converters.cs │ │ ├── DataTemplateSelectors.cs │ │ ├── FortDataStatus.cs │ │ ├── GameMapNavigationModes.cs │ │ ├── PokemonInfo.cs │ │ ├── Resources.cs │ │ ├── SortingModes.cs │ │ ├── TutorialNavigationModes.cs │ │ ├── UpdateManager.cs │ │ └── WebConfigurationManager.cs │ ├── GameClient.cs │ ├── Helpers │ │ ├── AsyncSynchronisationContext.cs │ │ ├── AudioUtils.cs │ │ ├── DispatcherHelper.cs │ │ ├── ExceptionHandler.cs │ │ ├── GeoHelper.cs │ │ ├── IStorageHelper.cs │ │ ├── ImageCache.cs │ │ ├── ImageLoaders │ │ │ ├── CircleSurface.cs │ │ │ ├── ImageLoader.cs │ │ │ └── ManagedSurface.cs │ │ ├── LiveTileHelper.cs │ │ ├── LiveTileModes.cs │ │ ├── LocalCacheHelper.cs │ │ ├── LocationServiceHelper.cs │ │ ├── MapOrientationModes.cs │ │ ├── MapStyleHelpers.cs │ │ ├── NavigationHelper.cs │ │ ├── NavigationModels.cs │ │ ├── ProtobufJsonNetConverter.cs │ │ ├── ProximityHelper.cs │ │ └── StorageHelper.cs │ └── Settings │ │ ├── Isettings.cs │ │ ├── Settings.cs │ │ └── SettingsService.cs ├── ViewModels │ ├── AchievementDetailPageViewModel.cs │ ├── ActionLogPageViewModel.cs │ ├── CapturePokemonPageViewModel.cs │ ├── EggDetailPageViewModel.cs │ ├── EnterGymPageViewModel.cs │ ├── GameMapPageViewModel.cs │ ├── ItemsInventoryPageViewModel.cs │ ├── LoginPageViewModel.cs │ ├── PlayerProfileViewModel.cs │ ├── PokedexDetailViewModel.cs │ ├── PokedexPageViewModel.cs │ ├── PokehashKeyPageViewModel.cs │ ├── PokemonDetailPageViewModel.cs │ ├── PokemonInventoryPageViewModel.cs │ ├── SearchPokeStopPageViewModel.cs │ ├── SettingsPageViewModel.cs │ └── TutorialPageViewModel.cs ├── Views │ ├── AchievementDetailPage.xaml │ ├── AchievementDetailPage.xaml.cs │ ├── ActionLogPage.xaml │ ├── ActionLogPage.xaml.cs │ ├── CapturePokemonPage.xaml │ ├── CapturePokemonPage.xaml.cs │ ├── ChallengePage.xaml │ ├── ChallengePage.xaml.cs │ ├── Dialogs │ │ ├── Busy.xaml │ │ ├── Busy.xaml.cs │ │ ├── ChooseTeamDialog.xaml │ │ ├── ChooseTeamDialog.xaml.cs │ │ ├── ConfirmationDialog.xaml │ │ ├── ConfirmationDialog.xaml.cs │ │ ├── ProfessorDialog.xaml │ │ └── ProfessorDialog.xaml.cs │ ├── EnterGymPage.xaml │ ├── EnterGymPage.xaml.cs │ ├── GameMapPage.xaml │ ├── GameMapPage.xaml.cs │ ├── Item │ │ ├── AwardedXpOverlay.xaml │ │ ├── AwardedXpOverlay.xaml.cs │ │ ├── ItemUseOnPokemonPage.xaml │ │ ├── ItemUseOnPokemonPage.xaml.cs │ │ ├── ItemsInventoryPage.xaml │ │ └── ItemsInventoryPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── PlayerProfilePage.xaml │ ├── PlayerProfilePage.xaml.cs │ ├── PokedexDetailPage.xaml │ ├── PokedexDetailPage.xaml.cs │ ├── PokedexPage.xaml │ ├── PokedexPage.xaml.cs │ ├── PokehashKeyPage.xaml │ ├── PokehashKeyPage.xaml.cs │ ├── Pokemon │ │ ├── EggDetailControl.xaml │ │ ├── EggDetailControl.xaml.cs │ │ ├── EggDetailPage.xaml │ │ ├── EggDetailPage.xaml.cs │ │ ├── EggInventoryControl.xaml │ │ ├── EggInventoryControl.xaml.cs │ │ ├── GymMembersControl.xaml │ │ ├── GymMembersControl.xaml.cs │ │ ├── IncubatorSelectionOverlayControl.xaml │ │ ├── IncubatorSelectionOverlayControl.xaml.cs │ │ ├── PokemonDetailControl.xaml │ │ ├── PokemonDetailControl.xaml.cs │ │ ├── PokemonDetailPage.xaml │ │ ├── PokemonDetailPage.xaml.cs │ │ ├── PokemonInventoryControl.xaml │ │ ├── PokemonInventoryControl.xaml.cs │ │ ├── PokemonInventoryPage.xaml │ │ ├── PokemonInventoryPage.xaml.cs │ │ ├── SortingMenuOverlayControl.xaml │ │ └── SortingMenuOverlayControl.xaml.cs │ ├── SearchPokestopPage.xaml │ ├── SearchPokestopPage.xaml.cs │ ├── SettingsPage.xaml │ ├── SettingsPage.xaml.cs │ ├── Splash.xaml │ ├── Splash.xaml.cs │ ├── StyleElementPreviewPage.xaml │ ├── StyleElementPreviewPage.xaml.cs │ ├── TutorialPage.xaml │ └── TutorialPage.xaml.cs └── project.json ├── README.md ├── azure-pipelines.yml ├── version.json └── webconfiguration.json /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/.gitignore -------------------------------------------------------------------------------- /Pokemon Go Universal.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/Pokemon Go Universal.sln -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/Package.appxmanifest -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/PokemonGo-UWP.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/PokemonGo-UWP.Tests.csproj -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/TestAssets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/TestAssets/StoreLogo.png -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/UnitTestApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/UnitTestApp.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/UnitTestApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/UnitTestApp.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP.Tests/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP.Tests/project.json -------------------------------------------------------------------------------- /PokemonGo-UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/App.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/App.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/badge_lv0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/badge_lv0.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/badge_lv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/badge_lv1.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/badge_lv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/badge_lv2.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/badge_lv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/badge_lv3.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/jogger_lv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/jogger_lv1.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/jogger_lv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/jogger_lv2.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/jogger_lv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/jogger_lv3.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/kanto_lv1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/kanto_lv1.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/kanto_lv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/kanto_lv2.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Achievements/kanto_lv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Achievements/kanto_lv3.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Battle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Battle.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/BeforeTheFight.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/BeforeTheFight.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/EncounterPokemon.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/EncounterPokemon.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Evolution.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Evolution.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Gameplay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Gameplay.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Gotcha.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Gotcha.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Levelup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Levelup.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Main_xp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Main_xp.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Professor.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Professor.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/System_Message.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/System_Message.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Audio/Title.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Audio/Title.mp3 -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Backgrounds/Park.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Backgrounds/Park.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Backgrounds/sky_day.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Backgrounds/sky_day.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Backgrounds/sky_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Backgrounds/sky_night.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_attack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_attack.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_claim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_claim.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_close.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_empty.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_go.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_items.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_master.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_menu.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_ok.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_ok_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_ok_dark.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_pokedex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_pokedex.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_pokemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_pokemon.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_run_away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_run_away.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_settings.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_swap.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Buttons/btn_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Buttons/btn_train.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Bug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Bug.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Dark.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Default.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Dragon.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Electric.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Electric.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Fairy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Fairy.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Fighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Fighting.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Fire.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Flying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Flying.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Ghost.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Grass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Grass.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Ground.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Ice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Ice.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Normal.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Poison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Poison.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Psychic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Psychic.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Rock.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Steel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Steel.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Candy/Water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Candy/Water.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Generica Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Generica Bold.otf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Generica.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Generica.otf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Lato-Bold.ttf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Lato-Italic.ttf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Lato-Light.ttf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Lato-Medium.ttf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/CompassIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/CompassIcon.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/Footprint_Far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/Footprint_Far.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/Footprint_Mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/Footprint_Mid.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/Footprint_Near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/Footprint_Near.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/crown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/crown.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/gender-female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/gender-female.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/gender-male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/gender-male.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/hint_gym_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/hint_gym_blue.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/hint_gym_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/hint_gym_red.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_appraise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_appraise.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_arena_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_arena_blue.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_arena_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_arena_red.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_buddy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_buddy.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_buddy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_buddy_light.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_candy_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_candy_light.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_combat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_combat.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_date.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_fav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_fav.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_health.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_incubator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_incubator.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_level.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_level.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_name.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_number.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_number.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/ic_store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/ic_store.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/pokestop_far.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/pokestop_far.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/pokestop_near.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/pokestop_near.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Icons/spawnpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Icons/spawnpoint.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/E_Item_901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/E_Item_901.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/E_Item_902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/E_Item_902.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Egg-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Egg-10.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Egg-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Egg-5.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Egg.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_101.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_102.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_103.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_104.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1101.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1102.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1103.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1104.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_1105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_1105.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_2.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_201.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_202.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_3.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_301.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_4.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_401.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_401.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_402.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_501.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_701.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_701.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_702.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_702.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_703.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_703.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_704.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_704.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_705.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_705.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_801.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_801.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_901.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_901.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_902.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_902.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Items/Item_COIN_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Items/Item_COIN_01.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/LiveTiles/Peek.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/LiveTiles/Peek.gif -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/LiveTiles/People.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/LiveTiles/People.gif -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/LiveTiles/People.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/LiveTiles/People.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/1.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/10.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/100.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/101.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/101.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/102.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/103.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/103.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/104.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/105.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/105.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/106.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/106.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/107.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/107.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/108.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/108.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/109.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/109.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/11.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/110.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/111.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/112.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/113.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/113.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/114.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/115.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/116.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/116.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/117.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/118.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/118.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/119.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/119.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/12.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/120.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/121.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/122.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/122.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/123.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/124.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/124.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/125.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/126.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/126.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/127.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/127.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/128.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/129.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/129.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/13.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/130.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/130.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/131.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/131.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/132.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/132.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/133.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/134.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/134.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/135.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/135.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/136.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/136.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/137.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/137.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/138.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/138.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/139.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/139.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/14.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/140.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/140.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/141.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/141.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/142.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/142.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/143.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/143.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/144.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/145.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/145.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/146.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/146.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/147.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/147.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/148.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/148.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/149.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/149.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/15.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/150.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/151.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/152.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/153.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/153.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/154.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/154.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/155.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/155.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/156.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/156.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/157.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/157.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/158.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/159.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/159.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/16.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/160.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/160.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/161.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/161.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/162.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/162.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/163.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/163.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/164.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/164.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/165.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/166.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/166.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/167.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/168.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/169.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/169.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/17.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/170.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/170.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/171.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/171.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/172.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/173.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/173.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/174.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/174.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/175.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/175.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/176.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/176.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/177.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/177.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/178.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/178.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/179.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/179.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/18.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/180.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/181.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/181.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/182.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/182.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/183.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/183.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/184.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/184.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/185.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/185.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/186.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/186.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/187.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/187.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/188.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/188.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/189.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/189.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/19.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/190.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/190.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/191.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/192.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/193.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/193.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/194.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/195.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/195.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/196.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/197.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/197.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/198.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/198.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/199.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/199.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/2.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/20.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/200.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-01-A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-01-A.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-02-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-02-B.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-03-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-03-C.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-04-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-04-D.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-05-E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-05-E.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-06-F.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-06-F.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-07-G.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-07-G.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-08-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-08-H.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-09-I.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-09-I.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-10-J.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-10-J.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-11-K.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-11-K.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-12-L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-12-L.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-13-M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-13-M.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-14-N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-14-N.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-15-O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-15-O.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-16-P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-16-P.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-17-Q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-17-Q.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-18-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-18-R.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-19-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-19-S.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-20-T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-20-T.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-21-U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-21-U.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-22-V.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-22-V.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-23-W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-23-W.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-24-X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-24-X.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-25-Y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-25-Y.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-26-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-26-Z.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-27-!.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-27-!.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201-28-¿.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201-28-¿.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_11.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_12.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_13.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_14.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_15.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_16.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_17.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_18.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_19.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_20.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_21.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_22.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_23.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_24.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_25.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_26.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_28.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_29.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_30.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_31.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_32.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_33.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_34.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_35.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_36.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_37.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201_38.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201a.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201b.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201c.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201d.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201e.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201excl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201excl.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201f.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201g.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201h.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201i.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201j.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201j.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201k.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201l.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201m.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201n.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201o.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201p.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201q.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201ques.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201ques.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201r.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201s.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201t.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201u.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201u.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201v.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201w.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201x.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201y.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/201z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/201z.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/202.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/202.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/203.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/203.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/204.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/204.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/205.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/206.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/206.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/207.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/208.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/209.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/209.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/21.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/210.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/210.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/211.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/211.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/212.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/213.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/213.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/214.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/214.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/215.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/215.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/216.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/217.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/217.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/218.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/218.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/219.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/219.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/22.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/220.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/220.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/221.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/222.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/222.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/223.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/223.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/224.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/224.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/225.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/225.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/226.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/226.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/227.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/228.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/229.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/229.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/23.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/230.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/230.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/231.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/231.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/232.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/232.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/233.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/233.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/234.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/234.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/235.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/235.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/236.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/236.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/237.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/237.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/238.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/238.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/239.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/239.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/24.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/240.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/241.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/242.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/243.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/243.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/244.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/244.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/245.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/245.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/246.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/247.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/247.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/248.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/248.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/249.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/249.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/25.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/250.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/251.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/251.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/26.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/27.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/28.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/29.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/3.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/30.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/31.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/32.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/33.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/34.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/35.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/36.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/37.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/38.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/39.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/4.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/40.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/41.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/42.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/43.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/44.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/45.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/46.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/47.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/48.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/49.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/5.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/50.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/51.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/52.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/53.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/54.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/55.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/56.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/57.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/58.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/59.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/6.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/60.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/61.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/62.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/63.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/64.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/65.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/66.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/67.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/68.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/69.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/7.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/70.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/71.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/72.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/73.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/74.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/75.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/76.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/77.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/77.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/78.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/78.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/79.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/79.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/8.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/80.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/81.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/82.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/83.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/83.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/84.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/84.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/85.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/85.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/86.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/86.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/87.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/88.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/89.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/89.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/9.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/90.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/91.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/91.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/92.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/93.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/93.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/94.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/94.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/95.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/95.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/96.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/97.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/98.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/98.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Pokemons/99.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Pokemons/99.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Square44x44Logo.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/gym_base_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/gym_base_blue.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/gym_base_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/gym_base_empty.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/gym_base_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/gym_base_red.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/instinct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/instinct.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/mystic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/mystic.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/no-team.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/no-team.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/Teams/valor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/Teams/valor.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Desert.jpg -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Gym_Arena_Glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Gym_Arena_Glass.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Park.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Park.jpg -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Pokeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Pokeball.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Professor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Professor.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/Spotlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/Spotlight.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/ash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/ash.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/ash_withincense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/ash_withincense.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/avatar.gif -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/avatar.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/bush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/bush.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/candy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/candy.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/close.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/egg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/egg.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/escape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/escape.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/gem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/gem.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/inventory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/inventory.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/logoDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/logoDark.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/logoLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/logoLight.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/panelBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/panelBG.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/player-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/player-avatar.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/pokeballLoading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/pokeballLoading.gif -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/pokestopBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/pokestopBG.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/poksetop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/poksetop.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/stardust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/stardust.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/walk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/walk.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/walk_dgrey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/walk_dgrey.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/walk_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/walk_grey.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/UI/walk_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/UI/walk_two.png -------------------------------------------------------------------------------- /PokemonGo-UWP/Assets/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Assets/logo.ai -------------------------------------------------------------------------------- /PokemonGo-UWP/Controls/ArcProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Controls/ArcProgressBar.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Controls/OutdoorBackground.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Controls/OutdoorBackground.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Controls/PoGoPivotHeader.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Controls/PoGoPivotHeader.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/AppliedItemWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/AppliedItemWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/FortDataWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/FortDataWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/IMapPokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/IMapPokemon.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/IUpdatable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/IUpdatable.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/IncensePokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/IncensePokemon.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/ItemDataWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/ItemDataWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/Language.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/LuredPokemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/LuredPokemon.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/MapPokemonWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/MapPokemonWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/PokemonDataWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/PokemonDataWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/PokemonModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/PokemonModel.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/PokemonStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/PokemonStat.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/SpawnPointWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/SpawnPointWrapper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Entities/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Entities/VersionInfo.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Enums/AuthType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Enums/AuthType.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Exceptions/LocationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Exceptions/LocationException.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Package.appxmanifest -------------------------------------------------------------------------------- /PokemonGo-UWP/PokemonGo-UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/PokemonGo-UWP.csproj -------------------------------------------------------------------------------- /PokemonGo-UWP/PokemonGo-UWP_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/PokemonGo-UWP_TemporaryKey.pfx -------------------------------------------------------------------------------- /PokemonGo-UWP/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Properties/Default.rd.xml -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/cs/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/cs/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/da/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/da/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de-CH/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de-CH/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/de/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/de/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/el/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/el/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-GB/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-GB/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es-MX/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es-MX/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/es/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/es/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fi/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fi/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/fr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/fr/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/gr-GR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/gr-GR/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/he/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/he/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr-HR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr-HR/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hr/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu-HU/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu-HU/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu-HU/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu-HU/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/hu/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/hu/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/id/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/id/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/it/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/it/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ja/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ja/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nb-NO/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nb-NO/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nl/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/nn-NO/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/nn-NO/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pl/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pl/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-BR/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-BR/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/pt-PT/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/pt-PT/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/ru/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/ru/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/sk/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/sk/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/CodeResources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/CodeResources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/tr/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/tr/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-CN/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-CN/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-HK/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-HK/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/Achievements.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/Achievements.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/Items.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/Items.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/Pokedex.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/Pokedex.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/Pokemon.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/Pokemon.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/PokemonMoves.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/PokemonMoves.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/PokemonTypes.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/PokemonTypes.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Strings/zh-TW/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Strings/zh-TW/Resources.resw -------------------------------------------------------------------------------- /PokemonGo-UWP/Styles/Custom.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Styles/Custom.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Styles/NianticStyleLight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Styles/NianticStyleLight.json -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/ApplicationKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/ApplicationKeys.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/Converters.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/FortDataStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/FortDataStatus.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/PokemonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/PokemonInfo.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/Resources.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/SortingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/SortingModes.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Game/UpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Game/UpdateManager.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/GameClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/GameClient.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/AudioUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/AudioUtils.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/GeoHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/GeoHelper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/IStorageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/IStorageHelper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/ImageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/ImageCache.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/LiveTileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/LiveTileHelper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/LiveTileModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/LiveTileModes.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Helpers/StorageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Helpers/StorageHelper.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Settings/Isettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Settings/Isettings.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Utils/Settings/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Utils/Settings/Settings.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/ActionLogPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/ActionLogPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/ActionLogPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/ActionLogPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/CapturePokemonPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/CapturePokemonPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/ChallengePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/ChallengePage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/ChallengePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/ChallengePage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/Dialogs/Busy.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/Dialogs/Busy.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/Dialogs/Busy.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/Dialogs/Busy.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/EnterGymPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/EnterGymPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/EnterGymPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/EnterGymPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/GameMapPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/GameMapPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/GameMapPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/GameMapPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/MainPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/MainPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PlayerProfilePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PlayerProfilePage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PlayerProfilePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PlayerProfilePage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokedexDetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokedexDetailPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokedexDetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokedexDetailPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokedexPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokedexPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokedexPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokedexPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokehashKeyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokehashKeyPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/PokehashKeyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/PokehashKeyPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/SearchPokestopPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/SearchPokestopPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/SettingsPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/Splash.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/Splash.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/Splash.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/Splash.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/TutorialPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/TutorialPage.xaml -------------------------------------------------------------------------------- /PokemonGo-UWP/Views/TutorialPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/Views/TutorialPage.xaml.cs -------------------------------------------------------------------------------- /PokemonGo-UWP/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/PokemonGo-UWP/project.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtaheij/PoGo-UWP/HEAD/version.json -------------------------------------------------------------------------------- /webconfiguration.json: -------------------------------------------------------------------------------- 1 | { 2 | "gymsaredisabled" : true 3 | } 4 | --------------------------------------------------------------------------------