diff --git a/play.pokemonshowdown.com/src/battle-tooltips.ts b/play.pokemonshowdown.com/src/battle-tooltips.ts index 54804467c..c8a2e85f6 100644 --- a/play.pokemonshowdown.com/src/battle-tooltips.ts +++ b/play.pokemonshowdown.com/src/battle-tooltips.ts @@ -2021,6 +2021,7 @@ export class BattleTooltips { } } if (move.id === 'weatherball') { + value.abilityModify(2, "Mega Sol"); if (this.battle.weather !== 'deltastream') { value.weatherModify(2); } @@ -2181,8 +2182,8 @@ export class BattleTooltips { ) { if (move.type === 'Normal') { value.abilityModify(this.battle.gen > 6 ? 1.2 : 1.3, "Aerilate"); - value.abilityModify(this.battle.gen > 6 ? 1.2 : 1.3, "Dragonize"); - value.abilityModify(this.battle.gen > 6 ? 1.2 : 1.3, "Galvanize"); + value.abilityModify(1.2, "Dragonize"); + value.abilityModify(1.2, "Galvanize"); value.abilityModify(this.battle.gen > 6 ? 1.2 : 1.3, "Pixilate"); value.abilityModify(this.battle.gen > 6 ? 1.2 : 1.3, "Refrigerate"); }