diff options
Diffstat (limited to 'include/battle_message.h')
-rw-r--r-- | include/battle_message.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/include/battle_message.h b/include/battle_message.h index 97a42bbf8..b4e46cfe7 100644 --- a/include/battle_message.h +++ b/include/battle_message.h @@ -18,6 +18,50 @@ struct StringInfoBattle u8 textBuffs[3][0x10]; }; +#define B_TXT_BUFF1 0x0 +#define B_TXT_BUFF2 0x1 +#define B_TXT_PLAYER_MON1_NAME 0x2 +#define B_TXT_OPPONENT_MON1_NAME 0x3 +#define B_TXT_PLAYER_MON2_NAME 0x4 +#define B_TXT_OPPONENT_MON2_NAME 0x5 +#define B_TXT_LINK_PLAYER_MON1_NAME 0x6 +#define B_TXT_LINK_OPPONENT_MON1_NAME 0x7 +#define B_TXT_LINK_PLAYER_MON2_NAME 0x8 +#define B_TXT_LINK_OPPONENT_MON2_NAME 0x9 +#define B_TXT_ATK_NAME_WITH_PREFIX_MON1 0xA +#define B_TXT_ATK_PARTNER_NAME 0xB +#define B_TXT_ATK_NAME_WITH_PREFIX 0xC +#define B_TXT_DEF_NAME_WITH_PREFIX 0xD +#define B_TXT_EFF_NAME_WITH_PREFIX 0xE // EFF = short for gEffectBank +#define B_TXT_ACTIVE_NAME_WITH_PREFIX 0xF +#define B_TXT_SCR_ACTIVE_NAME_WITH_PREFIX 0x10 +#define B_TXT_CURRENT_MOVE 0x11 +#define B_TXT_LAST_MOVE 0x12 +#define B_TXT_LAST_ITEM 0x13 +#define B_TXT_LAST_ABILITY 0x14 +#define B_TXT_ATK_ABILITY 0x15 +#define B_TXT_DEF_ABILITY 0x16 +#define B_TXT_SCR_ACTIVE_ABILITY 0x17 +#define B_TXT_EFF_ABILITY 0x18 +#define B_TXT_TRAINER1_CLASS 0x19 +#define B_TXT_TRAINER1_NAME 0x1A +#define B_TXT_LINK_PLAYER_NAME 0x1B +#define B_TXT_LINK_PARTNER_NAME 0x1C +#define B_TXT_LINK_OPPONENT1_NAME 0x1D +#define B_TXT_LINK_OPPONENT2_NAME 0x1E +#define B_TXT_LINK_SCR_TRAINER_NAME 0x1F +#define B_TXT_PLAYER_NAME 0x20 +#define B_TXT_TRAINER1_LOSE_TEXT 0x21 +#define B_TXT_22 0x22 +#define B_TXT_PC_CREATOR_NAME 0x23 +#define B_TXT_ATK_PREFIX1 0x24 +#define B_TXT_DEF_PREFIX1 0x25 +#define B_TXT_ATK_PREFIX2 0x26 +#define B_TXT_DEF_PREFIX2 0x27 +#define B_TXT_ATK_PREFIX3 0x28 +#define B_TXT_DEF_PREFIX3 0x29 +#define B_TXT_BUFF3 0x2A + // for B_TXT_BUFF1, B_TXT_BUFF2 and B_TXT_BUFF3 #define B_BUFF_STRING 0 |