From b2beb8e0c8bcfb56bef15b3203f41a88c1459977 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Wed, 10 Apr 2024 21:59:08 -0500 Subject: [PATCH] Chespin now has Tackle at level 1 Minor change to give the only starter without a normal attack one. Chesnaught *does* have it at level 1 oddly enough. --- src/data/pokemon-level-moves.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/data/pokemon-level-moves.ts b/src/data/pokemon-level-moves.ts index bc72a3bd0..81fb79660 100644 --- a/src/data/pokemon-level-moves.ts +++ b/src/data/pokemon-level-moves.ts @@ -10888,6 +10888,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = { [ 91, Moves.SELF_DESTRUCT ], ], [Species.CHESPIN]: [ + [ 1, Moves.TACKLE ], [ 1, Moves.VINE_WHIP ], [ 1, Moves.GROWL ], [ 8, Moves.ROLLOUT ], @@ -10902,6 +10903,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = { [ 48, Moves.WOOD_HAMMER ], ], [Species.QUILLADIN]: [ + [ 1, Moves.TACKLE ], [ 1, Moves.VINE_WHIP ], [ 1, Moves.GROWL ], [ 8, Moves.ROLLOUT ],