diff options
author | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-08-27 16:13:37 -0400 |
---|---|---|
committer | ProjectRevoTPP <projectrevotpp@hotmail.com> | 2017-08-27 16:13:37 -0400 |
commit | e154155a2916939bb504e26b3c6be1924b18b921 (patch) | |
tree | f0222cff03482d7ca30c42b7c6810430da240f14 /include/battle_message.h | |
parent | bd59586968791b7c322bc79ef571f9cbff80c38a (diff) | |
parent | 3d9ef5ea2c6c1ba173c17e98d91044926167bf6a (diff) |
Merge branch 'master' of https://github.com/pret/pokeruby into refactor_src
Diffstat (limited to 'include/battle_message.h')
-rw-r--r-- | include/battle_message.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/battle_message.h b/include/battle_message.h index d115e5357..3e37a1ccd 100644 --- a/include/battle_message.h +++ b/include/battle_message.h @@ -1,6 +1,21 @@ #ifndef GUARD_BATTLE_MESSAGE_H #define GUARD_BATTLE_MESSAGE_H +struct StringInfoBattle +{ + u16 currentMove; + u16 lastMove; + u16 lastItem; + u8 lastAbility; + u8 scrActive; + u8 unk1605E; + u8 hpScale; + u8 StringBank; + u8 moveType; + u8 abilities[4]; + u8 textBuffs[3][0x10]; +}; + void BufferStringBattle(u16 stringID); u32 StrCpyDecodeToDisplayedStringBattle(const u8* src); u32 StrCpyDecodeBattle(const u8* src, u8* dst); |