diff options
author | YamaArashi <shadow962@live.com> | 2015-10-14 06:57:02 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2015-10-14 06:57:02 -0700 |
commit | b6e95f52d692d893d4d050ab9de6347c74e0bf18 (patch) | |
tree | 26fa8e1d6c95bfc269beac131a66c7c89725402c /constants | |
parent | 63ce51de2ebe21a46437f3f4610cfcf623876e20 (diff) |
battle move data
Diffstat (limited to 'constants')
-rw-r--r-- | constants/battle_move_constants.s | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/constants/battle_move_constants.s b/constants/battle_move_constants.s new file mode 100644 index 000000000..a05da3db3 --- /dev/null +++ b/constants/battle_move_constants.s @@ -0,0 +1,15 @@ + .set TARGET_SELECTED_POKEMON, 0 + + .set F_TARGET_SPECIAL, 1 << 0 + .set F_TARGET_RANDOM, 1 << 2 + .set F_TARGET_BOTH_ENEMIES, 1 << 3 + .set F_TARGET_USER, 1 << 4 + .set F_TARGET_ALL_EXCEPT_USER, 1 << 5 + .set F_TARGET_ENEMY_SIDE, 1 << 6 + + .set F_MAKES_CONTACT, 1 << 0 + .set F_AFFECTED_BY_PROTECT, 1 << 1 + .set F_AFFECTED_BY_MAGIC_COAT, 1 << 2 + .set F_AFFECTED_BY_SNATCH, 1 << 3 + .set F_MIRROR_MOVE_COMPATIBLE, 1 << 4 + .set F_AFFECTED_BY_KINGS_ROCK, 1 << 5 |