mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Clean up contest_opponents.inc
This commit is contained in:
parent
5b4b0a245b
commit
153499ed6f
File diff suppressed because it is too large
Load Diff
@ -208,15 +208,17 @@ struct ContestPokemon
|
|||||||
{
|
{
|
||||||
/*0x00*/ u16 species;
|
/*0x00*/ u16 species;
|
||||||
/*0x02*/ u8 nickname[POKEMON_NAME_LENGTH + 1];
|
/*0x02*/ u8 nickname[POKEMON_NAME_LENGTH + 1];
|
||||||
/*0x0D*/ u8 trainerName[8];
|
/*0x0D*/ u8 trainerName[PLAYER_NAME_LENGTH + 1];
|
||||||
/*0x15*/ u8 trainerGfxId;
|
/*0x15*/ u8 trainerGfxId;
|
||||||
|
// Temp note: 2 bytes of padding
|
||||||
/*0x18*/ u32 flags;
|
/*0x18*/ u32 flags;
|
||||||
/*0x1C*/ u8 whichRank:2;
|
/*0x1C*/ u8 whichRank:2; // 0x1 0x2
|
||||||
u8 aiPool_Cool:1;
|
u8 aiPool_Cool:1; // 0x4
|
||||||
u8 aiPool_Beauty:1;
|
u8 aiPool_Beauty:1; // 0x8
|
||||||
u8 aiPool_Cute:1;
|
u8 aiPool_Cute:1; // 0x10
|
||||||
u8 aiPool_Smart:1;
|
u8 aiPool_Smart:1; // 0x20
|
||||||
u8 aiPool_Tough:1;
|
u8 aiPool_Tough:1; // 0x40
|
||||||
|
// Temp note: 1 byte of padding
|
||||||
/*0x1E*/ u16 moves[4]; // moves
|
/*0x1E*/ u16 moves[4]; // moves
|
||||||
/*0x26*/ u8 cool; // cool
|
/*0x26*/ u8 cool; // cool
|
||||||
/*0x27*/ u8 beauty; // beauty
|
/*0x27*/ u8 beauty; // beauty
|
||||||
@ -227,7 +229,7 @@ struct ContestPokemon
|
|||||||
/*0x2C*/ u8 unk2C[12];
|
/*0x2C*/ u8 unk2C[12];
|
||||||
/*0x38*/ u32 personality; // personality
|
/*0x38*/ u32 personality; // personality
|
||||||
/*0x3C*/ u32 otId; // otId
|
/*0x3C*/ u32 otId; // otId
|
||||||
}; // wow
|
};
|
||||||
|
|
||||||
struct Shared18000
|
struct Shared18000
|
||||||
{
|
{
|
||||||
|
@ -77,4 +77,10 @@ const struct ContestWinner gUnknown_08587FA4[] =
|
|||||||
.trainerName = _("OMAR"),
|
.trainerName = _("OMAR"),
|
||||||
.contestRank = CONTEST_RANK_MASTER
|
.contestRank = CONTEST_RANK_MASTER
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
/*
|
||||||
|
const struct ContestPokemon gContestOpponents[] =
|
||||||
|
{
|
||||||
|
|
||||||
|
};*/
|
||||||
|
extern const struct ContestPokemon gContestOpponents[96];
|
Loading…
Reference in New Issue
Block a user