From e4ac7932fbf30e07410d4c61cdd46bd4b74e4d15 Mon Sep 17 00:00:00 2001 From: AJ Fontaine Date: Sat, 18 May 2024 15:36:04 -0400 Subject: [PATCH] Fixed parameters --- src/data/pokemon-evolutions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/data/pokemon-evolutions.ts b/src/data/pokemon-evolutions.ts index 529ad7b6251..f3282a2fb49 100644 --- a/src/data/pokemon-evolutions.ts +++ b/src/data/pokemon-evolutions.ts @@ -427,7 +427,7 @@ export const pokemonEvolutions: PokemonEvolutions = { ], [Species.KIRLIA]: [ new SpeciesEvolution(Species.GARDEVOIR, 30, null, null), - new SpeciesEvolution(Species.GALLADE, EvolutionItem.DAWN_STONE, null, new SpeciesEvolutionCondition(p => p.gender === Gender.MALE, p => p.gender = Gender.MALE), SpeciesWildEvolutionDelay.LONG) + new SpeciesEvolution(Species.GALLADE, null, EvolutionItem.DAWN_STONE, new SpeciesEvolutionCondition(p => p.gender === Gender.MALE, p => p.gender = Gender.MALE), SpeciesWildEvolutionDelay.LONG) ], [Species.SURSKIT]: [ new SpeciesEvolution(Species.MASQUERAIN, 22, null, null) @@ -516,7 +516,7 @@ export const pokemonEvolutions: PokemonEvolutions = { ], [Species.SNORUNT]: [ new SpeciesEvolution(Species.GLALIE, 42, null, null), - new SpeciesEvolution(Species.FROSLASS, EvolutionItem.DAWN_STONE, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE), SpeciesWildEvolutionDelay.VERY_LONG) + new SpeciesEvolution(Species.FROSLASS, null, EvolutionItem.DAWN_STONE, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE), SpeciesWildEvolutionDelay.VERY_LONG) ], [Species.SPHEAL]: [ new SpeciesEvolution(Species.SEALEO, 32, null, null)