mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-05-06 05:27:54 -05:00
Pokemon with Hisui evolutions get the Eviolite boost
This commit is contained in:
parent
da61ce3c41
commit
696fa61e6e
|
|
@ -502,7 +502,10 @@ export class DexSpecies {
|
|||
}
|
||||
species.nfe = species.evos.some(evo => {
|
||||
const evoSpecies = this.get(evo);
|
||||
return !evoSpecies.isNonstandard || evoSpecies.isNonstandard === species?.isNonstandard;
|
||||
return !evoSpecies.isNonstandard ||
|
||||
evoSpecies.isNonstandard === species?.isNonstandard ||
|
||||
// Pokemon with Hisui evolutions
|
||||
evoSpecies.isNonstandard === "Unobtainable";
|
||||
});
|
||||
species.canHatch = species.canHatch ||
|
||||
(!['Ditto', 'Undiscovered'].includes(species.eggGroups[0]) && !species.prevo && species.name !== 'Manaphy');
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user