diff options
author | Phlosioneer <mattmdrr2@gmail.com> | 2019-04-01 22:09:14 -0400 |
---|---|---|
committer | Phlosioneer <mattmdrr2@gmail.com> | 2019-04-01 22:16:07 -0400 |
commit | 845307b3a6f5d1cb65669e8a971bee22ae6419d0 (patch) | |
tree | efc58834819ad6913fee773d17c79b80005a9942 /include/contest.h | |
parent | 4d938cb622a50a5f6659fccc69fca6da78e83ed4 (diff) |
Rename contest AI stuff
Diffstat (limited to 'include/contest.h')
-rw-r--r-- | include/contest.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/contest.h b/include/contest.h index a0b1a6b34..5178d657b 100644 --- a/include/contest.h +++ b/include/contest.h @@ -216,7 +216,7 @@ struct ContestPokemon /*0x02*/ u8 nickname[POKEMON_NAME_LENGTH + 1]; /*0x0D*/ u8 trainerName[PLAYER_NAME_LENGTH + 1]; /*0x15*/ u8 trainerGfxId; - /*0x18*/ u32 flags; + /*0x18*/ u32 aiChecks; /*0x1C*/ u8 whichRank:2; // 0x1 0x2 u8 aiPool_Cool:1; // 0x4 u8 aiPool_Beauty:1; // 0x8 @@ -352,13 +352,13 @@ struct UnknownContestStruct7 struct ContestAIInfo { /*0x00*/ u8 aiState; - /*0x02*/ u16 unk2; - /*0x04*/ u8 unk4; + /*0x02*/ u16 nextMove; + /*0x04*/ u8 nextMoveIndex; /*0x05*/ u8 unk5[4]; /*0x09*/ u8 aiAction; /*0x0A*/ u8 fillerA[0x6]; // TODO: don't know what's here - /*0x10*/ u8 unk10; - /*0x14*/ u32 flags; + /*0x10*/ u8 currentAICheck; + /*0x14*/ u32 aiChecks; /*0x18*/ s16 scriptResult; /*0x1A*/ s16 scriptArr[3]; /*0x20*/ const u8 *stack[8]; |