Fix Poltchageist not always producing counterfeit offspring (#4812)
This commit is contained in:
parent
e18150fb35
commit
b8607fe3aa
1 changed files with 4 additions and 2 deletions
|
@ -1078,12 +1078,14 @@ static u16 DetermineEggSpeciesAndParentSlots(struct DayCare *daycare, u8 *parent
|
|||
eggSpecies = SPECIES_ILLUMISE;
|
||||
else if (eggSpecies == SPECIES_MANAPHY)
|
||||
eggSpecies = SPECIES_PHIONE;
|
||||
else if (eggSpecies == SPECIES_SINISTEA_ANTIQUE)
|
||||
eggSpecies = SPECIES_SINISTEA_PHONY;
|
||||
else if (GET_BASE_SPECIES_ID(eggSpecies) == SPECIES_ROTOM)
|
||||
eggSpecies = SPECIES_ROTOM;
|
||||
else if (GET_BASE_SPECIES_ID(eggSpecies) == SPECIES_FURFROU)
|
||||
eggSpecies = SPECIES_FURFROU;
|
||||
else if (eggSpecies == SPECIES_SINISTEA_ANTIQUE)
|
||||
eggSpecies = SPECIES_SINISTEA_PHONY;
|
||||
else if (eggSpecies == SPECIES_POLTCHAGEIST_ARTISAN)
|
||||
eggSpecies = SPECIES_POLTCHAGEIST_COUNTERFEIT;
|
||||
// To avoid single-stage Totem Pokémon to breed more of themselves.
|
||||
else if (eggSpecies == SPECIES_MIMIKYU_TOTEM_DISGUISED)
|
||||
eggSpecies = SPECIES_MIMIKYU_DISGUISED;
|
||||
|
|
Loading…
Reference in a new issue