mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-04-26 10:48:53 -05:00
11 lines
261 B
TypeScript
11 lines
261 B
TypeScript
export const Moves: import('../../../sim/dex-moves').ModdedMoveDataTable = {
|
|
volttackle: {
|
|
inherit: true,
|
|
onModifyMove(move, pokemon, target) {
|
|
if (pokemon.baseSpecies.name === "Raichu-Mega-X") {
|
|
move.self = { boosts: { atk: 1 } };
|
|
}
|
|
},
|
|
},
|
|
};
|