diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-04-02 02:12:46 -0400 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-04-02 02:12:46 -0400 |
commit | c9d3b26ff7de11b39ceeb0c713cb7b821f2b03d3 (patch) | |
tree | 485ad20f62a9d1e7407d70526876c85fc7aff88e /include | |
parent | 8be2c5d60b54347c9df22410d97255d836d9fc9d (diff) |
Label miss string indexes
Diffstat (limited to 'include')
-rw-r--r-- | include/constants/battle_script_commands.h | 1 | ||||
-rw-r--r-- | include/constants/battle_string_ids.h | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/include/constants/battle_script_commands.h b/include/constants/battle_script_commands.h index 9372377c4..cef0b184d 100644 --- a/include/constants/battle_script_commands.h +++ b/include/constants/battle_script_commands.h @@ -32,6 +32,7 @@ #define cEFFECT_CHOOSER gBattleCommunication + 3 #define cMULTISTRING_CHOOSER gBattleCommunication + 5 +#define cMISS_TYPE gBattleCommunication + 6 // Battle Script defines for getting the wanted battler #define BS_TARGET 0 diff --git a/include/constants/battle_string_ids.h b/include/constants/battle_string_ids.h index 1886043f1..f5b036b5d 100644 --- a/include/constants/battle_string_ids.h +++ b/include/constants/battle_string_ids.h @@ -383,4 +383,11 @@ #define STRINGID_TRAINER1WINTEXT 379 #define STRINGID_TRAINER2WINTEXT 380 +// Indexes into gMissStringIds +#define B_MSG_MISSED 0 +#define B_MSG_PROTECTED 1 +#define B_MSG_AVOIDED_ATK 2 +#define B_MSG_AVOIDED_DMG 3 +#define B_MSG_GROUND_MISS 4 + #endif // GUARD_CONSTANTS_BATTLE_STRING_IDS_H |