From 1eaf51444747c71d0d9a7582041e4a7db6396906 Mon Sep 17 00:00:00 2001 From: uHatyy Date: Thu, 5 Dec 2024 07:40:58 -0600 Subject: [PATCH] Fixed some oversights on the EV guesser Fixed Ruination being considered a special attack, Comeuppance being considered a physical attack, and Tera Blast being counted as a full special attack by the EV spread guesser. --- play.pokemonshowdown.com/src/battle-tooltips.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/play.pokemonshowdown.com/src/battle-tooltips.ts b/play.pokemonshowdown.com/src/battle-tooltips.ts index 814a500751..09d0ed0113 100644 --- a/play.pokemonshowdown.com/src/battle-tooltips.ts +++ b/play.pokemonshowdown.com/src/battle-tooltips.ts @@ -2656,10 +2656,10 @@ class BattleStatGuesser { } moveCount['Support']++; } - } else if (['counter', 'endeavor', 'metalburst', 'mirrorcoat', 'rapidspin'].includes(move.id)) { + } else if (['counter', 'endeavor', 'metalburst', 'mirrorcoat', 'rapidspin', 'comeuppance'].includes(move.id)) { moveCount['Support']++; } else if ([ - 'nightshade', 'seismictoss', 'psywave', 'superfang', 'naturesmadness', 'foulplay', 'endeavor', 'finalgambit', 'bodypress', + 'nightshade', 'seismictoss', 'psywave', 'superfang', 'naturesmadness', 'foulplay', 'endeavor', 'finalgambit', 'bodypress', 'ruination', ].includes(move.id)) { moveCount['Offense']++; } else if (move.id === 'fellstinger') { @@ -2671,7 +2671,7 @@ class BattleStatGuesser { if (move.id === 'knockoff') { moveCount['Support']++; } - if (['scald', 'voltswitch', 'uturn', 'flipturn'].includes(move.id)) { + if (['scald', 'voltswitch', 'uturn', 'flipturn', 'terablast'].includes(move.id)) { moveCount[move.category] -= 0.2; } }