diff options
author | DizzyEggg <jajkodizzy@wp.pl> | 2018-02-26 13:24:46 +0100 |
---|---|---|
committer | DizzyEggg <jajkodizzy@wp.pl> | 2018-02-26 13:24:46 +0100 |
commit | 919f80321442bcdaa39ecb02e72f4d71ee03511f (patch) | |
tree | 350403a88fb0bc1513d777355084c4bc30db30f0 /include/battle.h | |
parent | 8821d6396a137035ec23f3948d6b6ea85d3b3ed8 (diff) |
correct move target defines
Diffstat (limited to 'include/battle.h')
-rw-r--r-- | include/battle.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/battle.h b/include/battle.h index 5225b72e3..971b9e4f5 100644 --- a/include/battle.h +++ b/include/battle.h @@ -66,14 +66,14 @@ #define MSG_DISPLAY 0x7 #define BATTLE_COMMUNICATION_ENTRIES_COUNT 0x8 -#define MOVE_TARGET_SELECTED 0x0 -#define MOVE_TARGET_DEPENDS 0x1 -#define MOVE_TARGET_USER 0x2 -#define MOVE_TARGET_RANDOM 0x4 -#define MOVE_TARGET_x10 0x10 -#define MOVE_TARGET_BOTH 0x8 -#define MOVE_TARGET_FOES_AND_ALLY 0x20 -#define MOVE_TARGET_OPPONENTS_FIELD 0x40 +#define MOVE_TARGET_SELECTED 0x0 +#define MOVE_TARGET_DEPENDS 0x1 +#define MOVE_TARGET_USER_OR_SELECTED 0x2 +#define MOVE_TARGET_RANDOM 0x4 +#define MOVE_TARGET_BOTH 0x8 +#define MOVE_TARGET_USER 0x10 +#define MOVE_TARGET_FOES_AND_ALLY 0x20 +#define MOVE_TARGET_OPPONENTS_FIELD 0x40 // defines for the u8 array gTypeEffectiveness #define TYPE_EFFECT_ATK_TYPE(i)((gTypeEffectiveness[i + 0])) |