diff options
author | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-09 17:20:47 -0500 |
---|---|---|
committer | Remy Oukaour <remy.oukaour@gmail.com> | 2018-01-09 17:20:47 -0500 |
commit | a8cf8979d9acf66d1bdf4ea115ab6a0faa8f9d34 (patch) | |
tree | 317d59efe06dc7d62bd35827f956a3d9b5aa0fd0 /constants | |
parent | ce50d1b2cb4eebf8484cf12e6280c441ec94ae39 (diff) |
Do a little cleanup towards issue #465
Diffstat (limited to 'constants')
-rw-r--r-- | constants/pokemon_data_constants.asm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index 6e8c2d322..76524a423 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -123,6 +123,12 @@ const_value set 1 const ATK_EQ_DEF +; PP +PP_UP_MASK EQU %11000000 +PP_UP_ONE EQU %01000000 +PP_MASK EQU %00111111 + + ; significant happiness values BASE_HAPPINESS EQU 70 FRIEND_BALL_HAPPINESS EQU 200 |