Added Egg Moves for Basculin White Striped (#6769)

This commit is contained in:
PCG 2025-05-04 15:13:57 +05:30 committed by GitHub
parent fe2d7442af
commit 904b399a81
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View File

@ -4278,6 +4278,13 @@ static const u16 sBasculinEggMoveLearnset[] = {
MOVE_HEAD_SMASH,
MOVE_UNAVAILABLE,
};
#if P_HISUIAN_FORMS
static const u16 sBasculinWhiteStripedEggMoveLearnset[] = {
MOVE_ENDEAVOR,
MOVE_LAST_RESPECTS,
MOVE_UNAVAILABLE,
};
#endif //P_HISUIAN_FORMS
#endif //P_FAMILY_BASCULIN
#if P_FAMILY_SANDILE

View File

@ -4440,6 +4440,7 @@ const struct SpeciesInfo gSpeciesInfoGen5[] =
)
.levelUpLearnset = sBasculinWhiteStripedLevelUpLearnset,
.teachableLearnset = sBasculinWhiteStripedTeachableLearnset,
.eggMoveLearnset = sBasculinWhiteStripedEggMoveLearnset,
.formSpeciesIdTable = sBasculinFormSpeciesIdTable,
.evolutions = EVOLUTION({EVO_RECOIL_DAMAGE_MALE, 294, SPECIES_BASCULEGION_M},
{EVO_RECOIL_DAMAGE_FEMALE, 294, SPECIES_BASCULEGION_F}),