mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-11-26 16:56:11 +00:00
Gallade no longer needs shiny stone to evolve
This commit is contained in:
parent
7f2dd28832
commit
1be1be7098
@ -418,7 +418,7 @@ export const pokemonEvolutions: PokemonEvolutions = {
|
|||||||
],
|
],
|
||||||
[Species.KIRLIA]: [
|
[Species.KIRLIA]: [
|
||||||
new SpeciesEvolution(Species.GARDEVOIR, 30, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE)),
|
new SpeciesEvolution(Species.GARDEVOIR, 30, null, new SpeciesEvolutionCondition(p => p.gender === Gender.FEMALE, p => p.gender = Gender.FEMALE)),
|
||||||
new SpeciesEvolution(Species.GALLADE, 1, EvolutionItem.DAWN_STONE, new SpeciesEvolutionCondition(p => p.gender === Gender.MALE, p => p.gender = Gender.MALE), SpeciesWildEvolutionDelay.LONG)
|
new SpeciesEvolution(Species.GALLADE, 30, null, new SpeciesEvolutionCondition(p => p.gender === Gender.MALE, p => p.gender = Gender.MALE))
|
||||||
],
|
],
|
||||||
[Species.SURSKIT]: [
|
[Species.SURSKIT]: [
|
||||||
new SpeciesEvolution(Species.MASQUERAIN, 22, null, null)
|
new SpeciesEvolution(Species.MASQUERAIN, 22, null, null)
|
||||||
|
Loading…
Reference in New Issue
Block a user