diff options
author | Marcus Huderle <huderlem@gmail.com> | 2019-02-07 12:58:09 -0600 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2019-02-07 12:58:09 -0600 |
commit | 4785a07acd8d27372f12eebca84b5a67e0591f3c (patch) | |
tree | 343f9f1a2678d5858e42bf0d95caf6494af306a4 /include | |
parent | b52871433a49c33a27d480e358b7cd695f65e214 (diff) |
Document battle factory functions
Diffstat (limited to 'include')
-rw-r--r-- | include/battle_factory.h | 4 | ||||
-rw-r--r-- | include/global.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/include/battle_factory.h b/include/battle_factory.h index 2db041b06..5606d60d1 100644 --- a/include/battle_factory.h +++ b/include/battle_factory.h @@ -2,10 +2,10 @@ #define GUARD_BATTLE_FACTORY_H void CallBattleFactoryFunction(void); -bool8 sub_81A6BF4(void); +bool8 InBattleFactory(void); u8 GetFactoryMonFixedIV(u8 arg0, u8 arg1); void FillFactoryBrainParty(void); -u8 sub_81A6F70(u8 battleMode, u8 lvlMode); +u8 GetNumPastRentalsRank(u8 battleMode, u8 lvlMode); u32 GetAiScriptsInBattleFactory(void); void SetMonMoveAvoidReturn(struct Pokemon *mon, u16 moveArg, u8 moveSlot); diff --git a/include/global.h b/include/global.h index 6c1b7c5bb..831b83042 100644 --- a/include/global.h +++ b/include/global.h @@ -277,7 +277,7 @@ struct FrontierMonData u8 nature; }; -struct Struct_field_E70 +struct RentalMon { u16 monId; u32 personality; @@ -370,7 +370,7 @@ struct BattleFrontier /*0xE6A*/ u16 field_E6A; /*0xE6C*/ u16 field_E6C; /*0xE6E*/ u16 field_E6E; - /*0xE70*/ struct Struct_field_E70 field_E70[6]; + /*0xE70*/ struct RentalMon rentalMons[6]; /*0xEB8*/ u16 battlePoints; /*0xEBA*/ u16 field_EBA; /*0xEBC*/ u32 battlesCount; |