Skip to content

Commit

Permalink
Mr mime eviolite in tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
ShivaD173 committed Jan 8, 2025
1 parent 4e53a88 commit 4a496cb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions play.pokemonshowdown.com/src/battle-tooltips.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,6 @@ class BattleTooltips {
stats.spa = Math.floor(stats.spa * 1.5);
}
if (ability === 'orichalcumpulse') {
stats.atk = Math.floor(stats.atk * 1.333333);
stats.atk = Math.floor(stats.atk * 1.3333);
if (this.battle.dex.modid.includes('vgcgay')) {
stats.spa = Math.floor(stats.spa * 1.3333);
Expand Down Expand Up @@ -1198,7 +1197,7 @@ class BattleTooltips {
// Pokemon with Hisui evolutions
evoSpecies.isNonstandard === "Unobtainable";
});
if (item === 'eviolite' && (isNFE || this.battle.dex.species.get(serverPokemon.speciesForme).id === 'dipplin')) {
if (item === 'eviolite' && (isNFE || ["mrmimegalar", "dipplin"].includes(this.battle.dex.species.get(serverPokemon.speciesForme).id))) {
stats.def = Math.floor(stats.def * 1.5);
stats.spd = Math.floor(stats.spd * 1.5);
}
Expand Down

0 comments on commit 4a496cb

Please sign in to comment.