From 89efb42e1fdeb829f5904ff8de351efde15fa315 Mon Sep 17 00:00:00 2001 From: Madmadness65 Date: Sat, 30 Mar 2024 00:58:51 -0500 Subject: [PATCH] Fix Alolan starters evolving later than intended They were evolving at 36 instead of 34. --- src/data/pokemon-evolutions.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/data/pokemon-evolutions.ts b/src/data/pokemon-evolutions.ts index f00ab298d19..f220a609bed 100644 --- a/src/data/pokemon-evolutions.ts +++ b/src/data/pokemon-evolutions.ts @@ -889,19 +889,19 @@ export const pokemonEvolutions: PokemonEvolutions = { ], [Species.DARTRIX]: [ new SpeciesEvolution(Species.HISUI_DECIDUEYE, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DUSK || p.scene.arena.getTimeOfDay() === TimeOfDay.NIGHT), SpeciesWildEvolutionDelay.VERY_LONG), - new SpeciesEvolution(Species.DECIDUEYE, 36, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) + new SpeciesEvolution(Species.DECIDUEYE, 34, null, new SpeciesEvolutionCondition(p => p.scene.arena.getTimeOfDay() === TimeOfDay.DAWN || p.scene.arena.getTimeOfDay() === TimeOfDay.DAY)) ], [Species.LITTEN]: [ new SpeciesEvolution(Species.TORRACAT, 17, null, null) ], [Species.TORRACAT]: [ - new SpeciesEvolution(Species.INCINEROAR, 36, null, null) + new SpeciesEvolution(Species.INCINEROAR, 34, null, null) ], [Species.POPPLIO]: [ new SpeciesEvolution(Species.BRIONNE, 17, null, null) ], [Species.BRIONNE]: [ - new SpeciesEvolution(Species.PRIMARINA, 36, null, null) + new SpeciesEvolution(Species.PRIMARINA, 34, null, null) ], [Species.PIKIPEK]: [ new SpeciesEvolution(Species.TRUMBEAK, 14, null, null)