diff options
| author | yenatch <yenatch@gmail.com> | 2014-09-19 12:44:48 -0700 |
|---|---|---|
| committer | yenatch <yenatch@gmail.com> | 2014-09-30 11:17:52 -0700 |
| commit | ca58bd215cc462a950dc889f9d7f0f9e8ecd1b02 (patch) | |
| tree | 4ceb00f59e8bff14193a71e3fc04fa0a8b430ad3 /constants | |
| parent | d6ac5407e76558d28111be1d1bb478de4f99db62 (diff) | |
Clean up wram sections so that all space is accounted for.
Diffstat (limited to 'constants')
| -rw-r--r-- | constants/item_constants.asm | 4 | ||||
| -rw-r--r-- | constants/misc_constants.asm | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/constants/item_constants.asm b/constants/item_constants.asm index 206bff1c0..fea4632e3 100644 --- a/constants/item_constants.asm +++ b/constants/item_constants.asm @@ -250,7 +250,9 @@ HM_06 EQU $F8 HM_07 EQU $F9 HM_08 EQU $FA -NUM_TMS EQU HM_01 - TM_01 - 2 + +NUM_TMS EQU 50 +NUM_HMS EQU 7 ; leftovers from red diff --git a/constants/misc_constants.asm b/constants/misc_constants.asm index 5ad9826f4..9d793f3b0 100644 --- a/constants/misc_constants.asm +++ b/constants/misc_constants.asm @@ -1,9 +1,15 @@ PARTY_LENGTH EQU 6 +MAX_ITEMS EQU 20 +MAX_BALLS EQU 12 +MAX_KEY_ITEMS EQU 25 +MAX_PC_ITEMS EQU 50 + ; strings PLAYER_NAME_LENGTH EQU 8 PKMN_NAME_LENGTH EQU 11 MOVE_NAME_LENGTH EQU 13 +ITEM_NAME_LENGTH EQU 13 NAME_LENGTH EQU 11 LV_CHAR EQU $6e |
