diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-04-05 19:32:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-05 19:32:42 -0700 |
commit | b1d091e233b81262e0905ce06607cfa7c4d4c9dd (patch) | |
tree | 183403f45e1319cf681698c943dab74773f81317 /include/trainer.h | |
parent | 781d0ca44c8eab2b7751fe8f337d6acde7fe8582 (diff) | |
parent | 64c9fd3a29cfd56c1b7ba5812ca84e62427971a9 (diff) |
Merge pull request #554 from Blampharos/btl_attrs
[Don't merge] Decompile btl_attrs.s into battle_1.c
Diffstat (limited to 'include/trainer.h')
-rw-r--r-- | include/trainer.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/trainer.h b/include/trainer.h index e8f2776d2..96143245a 100644 --- a/include/trainer.h +++ b/include/trainer.h @@ -16,6 +16,14 @@ #define TRAINER_ENCOUNTER_MUSIC_INTERVIEWER 12 #define TRAINER_ENCOUNTER_MUSIC_RICH 13 // Rich Boys and Gentlemen +#define F_TRAINER_FEMALE 1 << 7 + +// All trainer parties specify the IV, level, and species for each Pokémon in +// the party. Some trainer parties also specify held items and custom moves +// for each Pokémon. +#define F_TRAINER_PARTY_CUSTOM_MOVESET 1 << 0 +#define F_TRAINER_PARTY_HELD_ITEM 1 << 1 + enum { FACILITY_CLASS_AQUA_LEADER, FACILITY_CLASS_TEAM_AQUA_M, |