diff options
Diffstat (limited to 'constants')
-rw-r--r-- | constants/battle_constants.asm | 2 | ||||
-rw-r--r-- | constants/misc_constants.asm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/constants/battle_constants.asm b/constants/battle_constants.asm index 64e3ec4f8..f86cd0873 100644 --- a/constants/battle_constants.asm +++ b/constants/battle_constants.asm @@ -54,6 +54,8 @@ NUM_STATS EQU const_value STAT_MIN_NORMAL EQU 5 STAT_MIN_HP EQU 10 +MAX_STAT_VALUE EQU 999 + ; shiny dvs ATKDEFDV_SHINY EQU $EA SPDSPCDV_SHINY EQU $AA diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 70b97a21d..64c625933 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -89,6 +89,8 @@ HOF_MON_LENGTH = 1 + 2 + 2 + 1 + (PKMN_NAME_LENGTH +- 1) ; species, id, dvs, lev HOF_LENGTH = 1 + HOF_MON_LENGTH * PARTY_LENGTH + 1 ; win count, party, terminator NUM_HOF_TEAMS = 30 +MAX_LINK_RECORD EQU 9999 + ; significant money values START_MONEY EQU 3000 |