Add Poltchageist family form data (#6163)

This commit is contained in:
Bassoonian 2025-02-01 21:46:59 +01:00 committed by GitHub
parent 7c6eda21b1
commit a0097ef395
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 18 additions and 0 deletions

View File

@ -2155,6 +2155,20 @@ static const u16 sGimmighoulFormSpeciesIdTable[] = {
};
#endif //P_FAMILY_GIMMIGHOUL
#if P_FAMILY_POLTCHAGEIST
static const u16 sPoltchageistFormSpeciesIdTable[] = {
SPECIES_POLTCHAGEIST_COUNTERFEIT,
SPECIES_POLTCHAGEIST_ARTISAN,
FORM_SPECIES_END,
};
static const u16 sSinistchaFormSpeciesIdTable[] = {
SPECIES_SINISTCHA_UNREMARKABLE,
SPECIES_SINISTCHA_MASTERPIECE,
FORM_SPECIES_END,
};
#endif //P_FAMILY_POLTCHAGEIST
#if P_FAMILY_OGERPON
static const u16 sOgerponFormSpeciesIdTable[] = {
SPECIES_OGERPON_TEAL,

View File

@ -6986,6 +6986,7 @@ const struct SpeciesInfo gSpeciesInfoGen9[] =
.levelUpLearnset = sPoltchageistLevelUpLearnset,
.teachableLearnset = sPoltchageistTeachableLearnset,
.evolutions = EVOLUTION({EVO_ITEM, ITEM_UNREMARKABLE_TEACUP, SPECIES_SINISTCHA_UNREMARKABLE}),
.formSpeciesIdTable = sPoltchageistFormSpeciesIdTable,
},
[SPECIES_POLTCHAGEIST_ARTISAN] =
{
@ -7048,6 +7049,7 @@ const struct SpeciesInfo gSpeciesInfoGen9[] =
.levelUpLearnset = sPoltchageistLevelUpLearnset,
.teachableLearnset = sPoltchageistTeachableLearnset,
.evolutions = EVOLUTION({EVO_ITEM, ITEM_MASTERPIECE_TEACUP, SPECIES_SINISTCHA_MASTERPIECE}),
.formSpeciesIdTable = sPoltchageistFormSpeciesIdTable,
},
[SPECIES_SINISTCHA_UNREMARKABLE] =
@ -7110,6 +7112,7 @@ const struct SpeciesInfo gSpeciesInfoGen9[] =
)
.levelUpLearnset = sSinistchaLevelUpLearnset,
.teachableLearnset = sSinistchaTeachableLearnset,
.formSpeciesIdTable = sSinistchaFormSpeciesIdTable,
},
[SPECIES_SINISTCHA_MASTERPIECE] =
{
@ -7171,6 +7174,7 @@ const struct SpeciesInfo gSpeciesInfoGen9[] =
)
.levelUpLearnset = sSinistchaLevelUpLearnset,
.teachableLearnset = sSinistchaTeachableLearnset,
.formSpeciesIdTable = sSinistchaFormSpeciesIdTable,
},
#endif //P_FAMILY_POLTCHAGEIST