Skip to content

Commit

Permalink
Change wiki to Fandom Pokemon Go
Browse files Browse the repository at this point in the history
  • Loading branch information
nguoianphu committed Aug 19, 2021
1 parent 36643e4 commit c51f19b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,23 @@ $ npm run start
Info for **Pokemon GO** only

- Add weather boosted per type of pokemon
- Data from <https://niantic.helpshift.com/a/pokemon-go/?s=finding-evolving-hatching&f=weather-boosts&l=en&p=web>
- Add rank 1 & IV for Great & Ultra Leagues into Pokedex
- Data get from <https://pvpivs.com/leagueRanks.html>
- Create Android APK to install on mobile
- Using Capacitor
- Use hashrouter so we can deploy this webpage in a subfolder like Github page
- Github page <https://nguoianphu.github.io/pkmn.help>
- My own web hosting <https://play.nguoianphu.com/pkmn.help/>
- Add buddy distance to earn candies: how many km per candy
- Data from https://gamepress.gg
- Add Evolutions
- Data from https://pogoapi.net/
- Add required candies to evolve
- Item to evolve
- Other conditions to evolve
- Change Bulbapedia to Fandom Pokemon Go
- To do:
- Add Evoluation line
- Add required candies to evolve
- Add buddy distance to earn candies: how many km per candy
- Add previous form before evolution
- Example Vaporeon shows Eevee but others like Jolteon, Flareon, etc show nothing
- Make the mobile app better
20 changes: 10 additions & 10 deletions src/ScreenPokedex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,13 +247,13 @@ function Monster({ pokemon }: MonsterProps) {
{/* <StatsTable pokemon={pokemon} /> */}

<div className="flex justify-end">
<a
aria-label={`Bulbapedia page for ${speciesName}`}
<Link
aria-label={`Defense for ${speciesName} (${formName})`}
className="underline fg-link OutlineFocus"
href={pokemon.bulbapediaURL}
to={`/defense?${params}#matchup-defense`}
>
Bulbapedia
</a>
Defense
</Link>
<span aria-hidden="true" className="o-50">
&nbsp;&bull;&nbsp;
</span>
Expand All @@ -267,13 +267,13 @@ function Monster({ pokemon }: MonsterProps) {
<span aria-hidden="true" className="o-50">
&nbsp;&bull;&nbsp;
</span>
<Link
aria-label={`Defense for ${speciesName} (${formName})`}
<a
aria-label={`Pokémon GO Wiki page for ${speciesName}`}
className="underline fg-link OutlineFocus"
to={`/defense?${params}#matchup-defense`}
href={`https://pokemongo.fandom.com/wiki/${pokemon.name}`}
>
Defense
</Link>
Wiki
</a>
</div>
</div>
</div>
Expand Down

0 comments on commit c51f19b

Please sign in to comment.