From 7a0b76b0a7fd14d6307fb56a3f8ce892a4ec9a7c Mon Sep 17 00:00:00 2001 From: Hisuian Zoroark <96159984+HisuianZoroark@users.noreply.github.com> Date: Tue, 2 Jan 2024 21:45:09 -0500 Subject: [PATCH] Refactor basePowerCallback default returns (#10073) --- data/moves.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/moves.ts b/data/moves.ts index d2ff9a8ec78e..7e978978347a 100644 --- a/data/moves.ts +++ b/data/moves.ts @@ -5543,7 +5543,7 @@ export const Moves: {[moveid: string]: MoveData} = { this.add('-combine'); return 150; } - return 80; + return move.basePower; }, category: "Special", name: "Fire Pledge", @@ -7821,7 +7821,7 @@ export const Moves: {[moveid: string]: MoveData} = { this.add('-combine'); return 150; } - return 80; + return move.basePower; }, category: "Special", name: "Grass Pledge", @@ -19939,7 +19939,7 @@ export const Moves: {[moveid: string]: MoveData} = { if (pokemon.terastallized === 'Stellar') { return 100; } - return 80; + return move.basePower; }, category: "Special", name: "Tera Blast", @@ -21307,7 +21307,7 @@ export const Moves: {[moveid: string]: MoveData} = { this.add('-combine'); return 150; } - return 80; + return move.basePower; }, category: "Special", name: "Water Pledge",