Skip to content

Commit

Permalink
Teambuilder: Don't recommend 0 Atk IVs with Tera Blast
Browse files Browse the repository at this point in the history
  • Loading branch information
DaWoblefet committed Jul 16, 2024
1 parent 915562a commit 6d1b654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion play.pokemonshowdown.com/js/client-teambuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -3466,7 +3466,7 @@
} else if (move.category === 'Physical' && !move.damage && !move.ohko &&
!['foulplay', 'endeavor', 'counter', 'bodypress', 'seismictoss', 'bide', 'metalburst', 'superfang'].includes(move.id) && !(this.curTeam.gen < 8 && move.id === 'rapidspin')) {
minAtk = false;
} else if (['metronome', 'assist', 'copycat', 'mefirst', 'photongeyser', 'shellsidearm'].includes(move.id) || (this.curTeam.gen === 5 && move.id === 'naturepower')) {
} else if (['metronome', 'assist', 'copycat', 'mefirst', 'photongeyser', 'shellsidearm', 'terablast'].includes(move.id) || (this.curTeam.gen === 5 && move.id === 'naturepower')) {
minAtk = false;
}
if (minSpe === false && moveName === 'Gyro Ball') {
Expand Down

0 comments on commit 6d1b654

Please sign in to comment.