diff options
author | dannye <corrnondacqb@yahoo.com> | 2015-07-26 23:23:05 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2015-07-26 23:23:05 -0500 |
commit | d7c5c8cf22c857830aae4da285c91e5e58c2cc02 (patch) | |
tree | e68f0dda79eda3f9bfe8aa69297cd58cc077e14a /constants | |
parent | 93255d6d17fbb3702a0f8670d7ecc2ed627af2a7 (diff) | |
parent | bbb86671eaac735fe6ef57da01ef79fd16953238 (diff) |
Merge branch 'master' of https://github.com/xCrystal/pokered
Diffstat (limited to 'constants')
-rw-r--r-- | constants/misc_constants.asm | 10 | ||||
-rw-r--r-- | constants/move_animation_constants.asm | 2 |
2 files changed, 8 insertions, 4 deletions
diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 4f2eb275..b5d889d4 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -1,13 +1,17 @@ MAX_LEVEL EQU 100 -NUM_MOVES EQU 4 + +NUM_MOVES EQU 4 +NUM_STATS EQU 5 +NUM_STAT_MODS EQU 8 +NUM_DVS EQU 2 PARTY_LENGTH EQU 6 MONS_PER_BOX EQU 20 NUM_BOXES EQU 12 -HOF_MON EQU $10 -HOF_TEAM EQU PARTY_LENGTH * HOF_MON +HOF_MON EQU $10 +HOF_TEAM EQU PARTY_LENGTH * HOF_MON HOF_TEAM_CAPACITY EQU 50 A_BUTTON EQU %00000001 diff --git a/constants/move_animation_constants.asm b/constants/move_animation_constants.asm index 6d8f33ca..27658c83 100644 --- a/constants/move_animation_constants.asm +++ b/constants/move_animation_constants.asm @@ -16,7 +16,7 @@ const_value = $D8 const SE_SPIRAL_BALLS_INWARD ; $E2 used in Growth/Focus Energy/Hyper Beam etc. const SE_SHAKE_ENEMY_HUD_2 ; $E3 unused const SE_SHAKE_ENEMY_HUD ; $E4 - const SE_SLIDE_MON_HALF_OFF ; $E5 used in Softboiled + const SE_SLIDE_MON_HALF_OFF ; $E5 used in Softboiled const SE_PETALS_FALLING ; $E6 used in Petal Dance const SE_LEAVES_FALLING ; $E7 used in Razor Leaf const SE_TRANSFORM_MON ; $E8 used in Transform |