diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2019-09-02 21:37:52 -0400 |
---|---|---|
committer | huderlem <huderlem@gmail.com> | 2019-09-05 20:48:48 -0500 |
commit | 8d910465f8597299e6017a9831ba4576595cb748 (patch) | |
tree | 68652503a68583656ecd770d8c613b55fa0ee741 /include/trainer_hill.h | |
parent | de02805388a425f1e193e8bc7288a3cbe605f9fb (diff) |
Minor refactor of ereader_helpers.c
Diffstat (limited to 'include/trainer_hill.h')
-rw-r--r-- | include/trainer_hill.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/trainer_hill.h b/include/trainer_hill.h index e605ac654..1d1d2d5da 100644 --- a/include/trainer_hill.h +++ b/include/trainer_hill.h @@ -1,6 +1,20 @@ #ifndef GUARD_TRAINER_HILL_H #define GUARD_TRAINER_HILL_H +#define HILL_TRAINER_NAME_LENGTH 11 + +struct TrainerHillTrainer +{ + u8 name[HILL_TRAINER_NAME_LENGTH]; + u8 facilityClass; + u32 unused; + u16 speechBefore[6]; + u16 speechWin[6]; + u16 speechLose[6]; + u16 speechAfter[6]; + struct BattleTowerPokemon mons[PARTY_SIZE]; +}; + extern u32 *gTrainerHillVBlankCounter; void CallTrainerHillFunction(void); |