diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-07-01 18:21:09 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-07-01 18:21:09 -0400 |
commit | 050cce5c3ef7e1979c09579d246bbf339833ae6c (patch) | |
tree | 77804f86b8c5b2430df01b3adbb5c036653ce05e /include/battle.h | |
parent | 4c2dce093c40de73cc9efa6325f9603aebedf2ab (diff) |
Document pokemon_item_effect, struct BattleResult
Diffstat (limited to 'include/battle.h')
-rw-r--r-- | include/battle.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/battle.h b/include/battle.h index 1881069b4..957532f63 100644 --- a/include/battle.h +++ b/include/battle.h @@ -233,14 +233,14 @@ struct BattleResults { u8 playerFaintCounter; // 0x0 u8 opponentFaintCounter; // 0x1 - u8 unk2; // 0x2 - u8 unk3; // 0x3 - u8 unk4; // 0x4 + u8 totalMonSwitchCounter; // 0x2 + u8 playerHealInBattleCount; // 0x3 + u8 reviveCount; // 0x4 u8 playerMonWasDamaged:1; // 0x5 - u8 unk5_1:1; // 0x5 + u8 usedMasterBall:1; // 0x5 u16 poke1Species; // 0x6 u8 pokeString1[10]; // 0x8 - u8 unk12; + u8 unk12; // unused u8 battleTurnCounter; // 0x13 u8 pokeString2[10]; // 0x14 u8 filler1E[2]; |