Skip to content

Commit

Permalink
Fix several incorrect movesets (#2776)
Browse files Browse the repository at this point in the history
  • Loading branch information
Xavion3 authored Jul 3, 2024
1 parent e42c329 commit f4a1c83
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions src/data/pokemon-level-moves.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3488,6 +3488,10 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 0, Moves.DESTINY_BOND ],
[ 0, Moves.SAFEGUARD ],
[ 0, Moves.MIRROR_COAT ],
[ 1, Moves.COUNTER ],
[ 1, Moves.DESTINY_BOND ],
[ 1, Moves.SAFEGUARD ],
[ 1, Moves.MIRROR_COAT ],
[ 1, Moves.AMNESIA ],
[ 1, Moves.SPLASH ],
[ 1, Moves.CHARM ],
Expand Down Expand Up @@ -14125,6 +14129,9 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 0, Moves.CONFUSION ],
[ 0, Moves.LIGHT_SCREEN ],
[ 0, Moves.REFLECT ],
[ 1, Moves.CONFUSION ],
[ 1, Moves.LIGHT_SCREEN ],
[ 1, Moves.REFLECT ],
[ 1, Moves.STRUGGLE_BUG ],
],
[Species.ORBEETLE]: [
Expand Down Expand Up @@ -17169,10 +17176,12 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 98, Moves.HYPER_BEAM ],
],
[Species.WALKING_WAKE]: [
[ 0, Moves.LEER ],
[ 0, Moves.ROAR ],
[ 0, Moves.TWISTER ],
[ 0, Moves.AQUA_JET ],
[ -1, Moves.SUNNY_DAY ],
[ -1, Moves.HONE_CLAWS ],
[ 1, Moves.LEER ],
[ 1, Moves.ROAR ],
[ 1, Moves.TWISTER ],
[ 1, Moves.AQUA_JET ],
[ 7, Moves.BITE ],
[ 14, Moves.WATER_PULSE ],
[ 21, Moves.NOBLE_ROAR ],
Expand All @@ -17186,10 +17195,12 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 84, Moves.HYDRO_PUMP ],
],
[Species.IRON_LEAVES]: [
[ 0, Moves.LEER ],
[ 0, Moves.QUICK_ATTACK ],
[ 0, Moves.HELPING_HAND ],
[ 0, Moves.WORK_UP ],
[ -1, Moves.ELECTRIC_TERRAIN ],
[ -1, Moves.QUASH ],
[ 1, Moves.LEER ],
[ 1, Moves.QUICK_ATTACK ],
[ 1, Moves.HELPING_HAND ],
[ 1, Moves.WORK_UP ],
[ 7, Moves.MAGICAL_LEAF ],
[ 14, Moves.RETALIATE ],
[ 21, Moves.QUICK_GUARD ],
Expand Down Expand Up @@ -17353,6 +17364,9 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 54, Moves.POWER_WHIP ],
],
[Species.GOUGING_FIRE]: [
[ -1, Moves.DOUBLE_KICK ],
[ -1, Moves.ANCIENT_POWER ],
[ -1, Moves.NOBLE_ROAR ],
[ 1, Moves.STOMP ],
[ 1, Moves.LEER ],
[ 1, Moves.INCINERATE ],
Expand All @@ -17372,6 +17386,7 @@ export const pokemonSpeciesLevelMoves: PokemonSpeciesLevelMoves = {
[ 91, Moves.RAGING_FURY ],
],
[Species.RAGING_BOLT]: [
[ -1, Moves.ANCIENT_POWER ],
[ 1, Moves.TWISTER ],
[ 1, Moves.SUNNY_DAY ],
[ 1, Moves.SHOCK_WAVE ],
Expand Down

0 comments on commit f4a1c83

Please sign in to comment.