Egg Move Refactor (#4534)

* Egg Move Refactor

* Update python file and fix formatting
This commit is contained in:
Bassoonian
2024-05-19 13:47:15 +02:00
committed by GitHub
parent 334668be26
commit bc9f09744d
15 changed files with 5617 additions and 4318 deletions

View File

@@ -444,6 +444,7 @@ struct SpeciesInfo /*0x8C*/
// Move Data
/* 0x80 */ const struct LevelUpMove *levelUpLearnset;
/* 0x84 */ const u16 *teachableLearnset;
const u16 *eggMoveLearnset;
/* 0x88 */ const struct Evolution *evolutions;
/* 0x84 */ const u16 *formSpeciesIdTable;
/* 0x84 */ const struct FormChange *formChangeTable;
@@ -768,6 +769,7 @@ u16 GetSpeciesHeight(u16 species);
u16 GetSpeciesWeight(u16 species);
const struct LevelUpMove *GetSpeciesLevelUpLearnset(u16 species);
const u16 *GetSpeciesTeachableLearnset(u16 species);
const u16 *GetSpeciesEggMoves(u16 species);
const struct Evolution *GetSpeciesEvolutions(u16 species);
const u16 *GetSpeciesFormTable(u16 species);
const struct FormChange *GetSpeciesFormChanges(u16 species);