diff options
author | entrpntr <entrpntr@gmail.com> | 2020-03-16 09:31:44 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-03-17 11:47:47 -0400 |
commit | e3b53fa1b8ae55a82d50895aee67a3078209b216 (patch) | |
tree | 5d5bbe8bc66bf92c567fbea4475b25a4cd304db1 /constants/pokemon_data_constants.asm | |
parent | 1e0807e4bfd5ca3e710c284cbbd4c0a50131baf3 (diff) |
Fill in a lot of missing bank $04 code.
Diffstat (limited to 'constants/pokemon_data_constants.asm')
-rw-r--r-- | constants/pokemon_data_constants.asm | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/constants/pokemon_data_constants.asm b/constants/pokemon_data_constants.asm index 04df889b..d29b4121 100644 --- a/constants/pokemon_data_constants.asm +++ b/constants/pokemon_data_constants.asm @@ -62,8 +62,9 @@ GENDER_UNKNOWN EQU -1 const EGG_DRAGON ; e const EGG_NONE ; f (Undiscovered) -; menu sprites -const_value SET 1 +; IconPointers indexes (see data/icon_pointers.asm) + const_def + const ICON_NULL const ICON_POLIWAG const ICON_JIGGLYPUFF const ICON_DIGLETT @@ -103,6 +104,16 @@ const_value SET 1 const ICON_SUDOWOODO const ICON_BIGMON +; LoadMenuMonIcon.Jumptable indexes (see engine/gfx/mon_icons.asm) + const_def + const MONICON_PARTYMENU + const MONICON_NAMINGSCREEN + const MONICON_MOVES + const MONICON_TRADE + const MONICON_MOBILE1 + const MONICON_MOBILE2 + const MONICON_UNUSED + ; maximum number of party pokemon PARTY_LENGTH EQU 6 |