diff options
author | YamaArashi <shadow962@live.com> | 2016-01-17 21:05:12 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-01-17 21:05:12 -0800 |
commit | 70f6bc8c8421df195f8c7625ab9b8c48e515282b (patch) | |
tree | 5754fbc608bf696df9284fe74c63d9b138b87d43 /wram.asm | |
parent | f14562da4b066a80af3edfc5171e083f63532109 (diff) | |
parent | 20e7bc3b09da3d5a6349489801b379a326ebb573 (diff) |
Merge pull request #334 from YamaArashi/master
commented pokedex more
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 26 |
1 files changed, 14 insertions, 12 deletions
@@ -921,26 +921,27 @@ wPokedexDataStart:: wPokedexOrder:: ds NUM_POKEMON +- 1 wPokedexOrderEnd:: ds 6 wPokedexMetadata:: -wDexListingPage:: -wc7d0:: ds 1 ; Dex list page +wDexListingScrollOffset:: ; offset of the first displayed entry from the start +wc7d0:: ds 1 wDexListingCursor:: wc7d1:: ds 1 ; Dex cursor wDexListingEnd:: wc7d2:: ds 1 ; Last mon to display -wc7d3:: ds 1 ; Number of mons visible per dex list page +wDexListingHeight:: ; number of entries displayed at once in the dex listing +wc7d3:: ds 1 wCurrentDexMode:: ; Pokedex Mode wc7d4:: ds 1 ; Index of the topmost visible item in a scrolling menu -wc7d5:: ds 1 ; Which row the cursor is at in a scrolling menu (0-6) -wc7d6:: ds 1 -wc7d7:: ds 1 -wc7d8:: ds 1 -wc7d9:: ds 1 -wc7da:: ds 1 +wDexSearchMonType1:: ds 1 ; first type to search +wDexSearchMonType2:: ds 1 ; second type to search +wDexSearchResultCount:: ds 1 +wDexArrowCursorPosIndex:: ds 1 +wDexArrowCursorDelayCounter:: ds 1 +wDexArrowCursorBlinkCounter:: ds 1 wDexSearchSlowpokeFrame:: ds 1 wUnlockedUnownMode:: ds 1 -wc7dd:: ds 1 -wc7de:: ds 1 -wc7df:: ds 1 +wDexCurrentUnownIndex:: ds 1 +wDexUnownCount:: ds 1 +wDexConvertedMonType:: ds 1 ; mon type converted from dex search mon type wc7e0:: ds 1 wc7e1:: ds 1 wBackupDexListingCursor:: @@ -1347,6 +1348,7 @@ wIntroSceneFrameCounter:: wHoldingUnownPuzzlePiece:: wCardFlipCursorY:: wCreditsBorderFrame:: +wDexEntryPrevJumptableIndex:: wcf64:: ds 1 IF !DEF(CRYSTAL11) wPokedexStatus:: |