Skip to content

Commit

Permalink
Refactor basePowerCallback default returns (#10073)
Browse files Browse the repository at this point in the history
  • Loading branch information
HisuianZoroark authored Jan 3, 2024
1 parent 54621f4 commit 7a0b76b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data/moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 7a0b76b

Please sign in to comment.