mirror of https://github.com/pret/pokeemerald.git
24 lines
482 B
C
24 lines
482 B
C
|
#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);
|
||
|
|
||
|
#endif // GUARD_BATTLE_MESSAGE_H
|