pokemon-showdown/data/mods/gen9legendsou/moves.ts
Kris Johnson 30ff784f2c
Z-A: Add DLC Pokemon (#11613)
* Z-A: Add DLC Pokemon

* za ou learnsets

* zaou changes

* skip test 4 now

* dfadasas
2025-12-12 00:04:05 -07:00

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 } };
}
},
},
};