From 56bedbb2f5c2ae074eb4e31d2d3c4a69d7ef6497 Mon Sep 17 00:00:00 2001 From: ry <100055739+ry4242@users.noreply.github.com> Date: Thu, 26 Mar 2026 12:10:18 -0500 Subject: [PATCH] Update tooltips of Galvanize/Dragonize/Mega Sol (#2622) * Update tooltips of Galvanize/Dragonize/Mega Sol * Update battle-tooltips.ts --- play.pokemonshowdown.com/src/battle-tooltips.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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"); }