Skip to content

Commit

Permalink
Moves with variable BP are not floored at 60
Browse files Browse the repository at this point in the history
  • Loading branch information
pyuk-bot committed Oct 14, 2023
1 parent 6df311f commit 066e28d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/battle-tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2002,7 +2002,7 @@ class BattleTooltips {
pokemon.terastallized && pokemon.terastallized === move.type && value.value < 60 && move.priority <= 0 &&
!move.multihit && !((move.basePower === 0 || move.basePower === 150) && (move as any).basePowerCallback)
) {
value.setRange(60, value.maxValue, 'Tera type BP minimum');
value.set(60, 'Tera type BP minimum');
}

if (
Expand Down

0 comments on commit 066e28d

Please sign in to comment.