From ce64eb6c70648169d320054a22501aeda212cfb7 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Wed, 28 Feb 2024 22:05:03 -0600 Subject: [PATCH] Fix Hisui Sliggoo not evolving into Hisui Goodra --- src/data/pokemon-evolutions.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/data/pokemon-evolutions.ts b/src/data/pokemon-evolutions.ts index 4d6374dd857..ac08b0ffed6 100644 --- a/src/data/pokemon-evolutions.ts +++ b/src/data/pokemon-evolutions.ts @@ -873,7 +873,6 @@ export const pokemonEvolutions: PokemonEvolutions = { new SpeciesEvolution(Species.SLIGGOO, 40, null, null) ], [Species.SLIGGOO]: [ - new SpeciesEvolution(Species.HISUI_GOODRA, 54, null, new SpeciesEvolutionCondition(p => [ WeatherType.RAIN, WeatherType.HEAVY_RAIN ].indexOf(p.scene.arena.weather?.weatherType || WeatherType.NONE) > -1 && p.scene.arena.biomeType === Biome.RUINS), SpeciesWildEvolutionDelay.VERY_LONG), new SpeciesEvolution(Species.GOODRA, 50, null, new SpeciesEvolutionCondition(p => [ WeatherType.RAIN, WeatherType.HEAVY_RAIN ].indexOf(p.scene.arena.weather?.weatherType || WeatherType.NONE) > -1), SpeciesWildEvolutionDelay.LONG) ], [Species.BERGMITE]: [ @@ -1095,6 +1094,9 @@ export const pokemonEvolutions: PokemonEvolutions = { [Species.HISUI_ZORUA]: [ new SpeciesEvolution(Species.HISUI_ZOROARK, 30, null, null) ], + [Species.HISUI_SLIGGOO]: [ + new SpeciesEvolution(Species.HISUI_GOODRA, 54, null, new SpeciesEvolutionCondition(p => [ WeatherType.RAIN, WeatherType.HEAVY_RAIN ].indexOf(p.scene.arena.weather?.weatherType || WeatherType.NONE) > -1), SpeciesWildEvolutionDelay.VERY_LONG) + ], [Species.SPRIGATITO]: [ new SpeciesEvolution(Species.FLORAGATO, 16, null, null) ],