diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-09-22 12:57:02 -0400 |
commit | 3b4ea37c363b70ea1683059329879466dec4a094 (patch) | |
tree | 430b2260d025fc28880ce3f76882d97dcd50507d /constants/move_constants.asm | |
parent | 268e2cae0b98779cfb0c590ab9612151c752e868 (diff) |
Replace enum with const, and update many constants to be more like pokegold
Diffstat (limited to 'constants/move_constants.asm')
-rw-r--r-- | constants/move_constants.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/constants/move_constants.asm b/constants/move_constants.asm index c21936f..f7693ae 100644 --- a/constants/move_constants.asm +++ b/constants/move_constants.asm @@ -1,4 +1,4 @@ -; Move IDs +; move ids const_def const MOVE_NONE ; 00 const MOVE_POUND ; 01 @@ -252,7 +252,7 @@ const MOVE_BRIGHT_MOSS ; f9 *ROCK_SMASH const MOVE_WHIRLPOOL ; fa const MOVE_BOUNCE ; fb *BEAT_UP -NUM_ATTACKS EQU const_value + -1 +NUM_ATTACKS EQU const_value - 1 const MOVE_OR_ANIM_FC ; fc const MOVE_OR_ANIM_FD ; fd |