From 71f99da38de5542c4aebc521c493be8ac8a981d2 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Mon, 22 Apr 2024 13:30:17 -0500 Subject: [PATCH] Allow Necrozma's forms to relearn the signature moves Dusk Mane can relearn Sunsteel Strike, Dawn Wings can relearn Moongeist Beam, and Ultra Necrozma can relearn both. --- src/data/pokemon-level-moves.ts | 63 +++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/src/data/pokemon-level-moves.ts b/src/data/pokemon-level-moves.ts index e205febcd..51ddbb53d 100644 --- a/src/data/pokemon-level-moves.ts +++ b/src/data/pokemon-level-moves.ts @@ -18391,6 +18391,69 @@ export const pokemonFormLevelMoves: PokemonSpeciesFormLevelMoves = { [ 60, Moves.STONE_EDGE ], ], }, + [Species.NECROZMA]: { + 1: [ + [ 0, Moves.SUNSTEEL_STRIKE ], + [ 1, Moves.CONFUSION ], + [ 1, Moves.METAL_CLAW ], + [ 1, Moves.MORNING_SUN ], + [ 1, Moves.MOONLIGHT ], + [ 1, Moves.GRAVITY ], + [ 1, Moves.CHARGE_BEAM ], + [ 8, Moves.STEALTH_ROCK ], + [ 16, Moves.SLASH ], + [ 24, Moves.NIGHT_SLASH ], + [ 32, Moves.PSYCHO_CUT ], + [ 40, Moves.STORED_POWER ], + [ 48, Moves.ROCK_BLAST ], + [ 56, Moves.IRON_DEFENSE ], + [ 64, Moves.POWER_GEM ], + [ 72, Moves.PHOTON_GEYSER ], + [ 80, Moves.AUTOTOMIZE ], + [ 88, Moves.PRISMATIC_LASER ], + ], + 2: [ + [ 0, Moves.MOONGEIST_BEAM ], + [ 1, Moves.CONFUSION ], + [ 1, Moves.METAL_CLAW ], + [ 1, Moves.MORNING_SUN ], + [ 1, Moves.MOONLIGHT ], + [ 1, Moves.GRAVITY ], + [ 1, Moves.CHARGE_BEAM ], + [ 8, Moves.STEALTH_ROCK ], + [ 16, Moves.SLASH ], + [ 24, Moves.NIGHT_SLASH ], + [ 32, Moves.PSYCHO_CUT ], + [ 40, Moves.STORED_POWER ], + [ 48, Moves.ROCK_BLAST ], + [ 56, Moves.IRON_DEFENSE ], + [ 64, Moves.POWER_GEM ], + [ 72, Moves.PHOTON_GEYSER ], + [ 80, Moves.AUTOTOMIZE ], + [ 88, Moves.PRISMATIC_LASER ], + ], + 3: [ + [ 0, Moves.SUNSTEEL_STRIKE ], + [ 0, Moves.MOONGEIST_BEAM ], + [ 1, Moves.CONFUSION ], + [ 1, Moves.METAL_CLAW ], + [ 1, Moves.MORNING_SUN ], + [ 1, Moves.MOONLIGHT ], + [ 1, Moves.GRAVITY ], + [ 1, Moves.CHARGE_BEAM ], + [ 8, Moves.STEALTH_ROCK ], + [ 16, Moves.SLASH ], + [ 24, Moves.NIGHT_SLASH ], + [ 32, Moves.PSYCHO_CUT ], + [ 40, Moves.STORED_POWER ], + [ 48, Moves.ROCK_BLAST ], + [ 56, Moves.IRON_DEFENSE ], + [ 64, Moves.POWER_GEM ], + [ 72, Moves.PHOTON_GEYSER ], + [ 80, Moves.AUTOTOMIZE ], + [ 88, Moves.PRISMATIC_LASER ], + ], + }, [Species.TOXTRICITY]: { 1: [ [ 0, Moves.SPARK ],