Skip to content

Commit

Permalink
Clarify stat levels
Browse files Browse the repository at this point in the history
  • Loading branch information
Glazelf committed Jul 7, 2023
1 parent 02613d3 commit ae1074f
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 @@ -179,7 +179,7 @@ module.exports = async ({ client, interaction, pokemon, learnsetBool = false, sh
let abilitySDesc = Dex.abilities.get(pokemon.abilities['S']).shortDesc;
abilityString += `\n**${pokemon.abilities['S']}** (Special): ${abilitySDesc}`;
};
let statLevels = `(50) (100)`;
let statLevels = `(lvl50) (lvl100)`;
let HPstats = calcHP(pokemon.baseStats.hp);
let Atkstats = calcStat(pokemon.baseStats.atk);
let Defstats = calcStat(pokemon.baseStats.def);
Expand Down

0 comments on commit ae1074f

Please sign in to comment.