Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Jan 28, 2025
1 parent b49c4bd commit 2893317
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/pokemon/getPokemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ function calcHP(pokemon, generation) {

let statText = `(${min50}-${max50}) (${min100}-${max100})`;
if (pokemon.name.endsWith("-Gmax") || pokemon.name.endsWith("-Eternamax")) statText = `(${Math.floor(min50 * 1.5)}-${max50 * 2}) (${Math.floor(min100 * 1.5)}-${max100 * 2})`;
if (pokemon.name == "Shedinja") statText = `(1-1) (1-1)`;
if (pokemon.name == "Shedinja") statText = "(1-1) (1-1)";
return statText;
};

Expand Down

0 comments on commit 2893317

Please sign in to comment.