Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions libs/httputils.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,20 @@ function _createPokemonCardDiv(cardclass, cardId, pokemon) {
<div class="text-base">
HP: ${pokemon.ivs[Stat["HP"]]}, ATK: ${pokemon.ivs[Stat["ATK"]]}, DEF: ${pokemon.ivs[Stat["DEF"]]}
</div>
<div class="text-base">
SPE: ${pokemon.ivs[Stat["SPD"]]}, SPD: ${pokemon.ivs[Stat["SPDEF"]]}, SPA: ${pokemon.ivs[Stat["SPATK"]]}
</div>

<table style="border:0px solid transparent;">
<tbody>
<tr>
<td>
<div class="text-base">
SPE: ${pokemon.ivs[Stat["SPD"]]}, SPD: ${pokemon.ivs[Stat["SPDEF"]]}, SPA: ${pokemon.ivs[Stat["SPATK"]]}
</div>
</td>
<td>
<a style="text-align: end; display: block;" class="text-base" href="https://wiki.pokerogue.net/pokedex:${pokemon.id}">wiki</a>
</td>
</tr>
</tbody>
</table>
${(_weather.type && _weather.turnsLeft) ?
`<div class="text-base">_weather: ${_weather.type}, Turns Left: ${_weather.turnsLeft}</div>`
: ''}
Expand Down