diff options
author | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
---|---|---|
committer | dannye <corrnondacqb@yahoo.com> | 2016-08-08 14:22:18 -0500 |
commit | 33ea880aa4f408624b967d4ab811c477e6a76784 (patch) | |
tree | 4498627a74bec31397c076c92d5db70c2565a450 /wram.asm | |
parent | c7ce0a95184784f029779426611324ff84f2ef12 (diff) |
Adding Glaceon test
An example to show adding a second new Pokemon and a new evolution item in pokered
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -2341,10 +2341,8 @@ wPokedexOwned:: ; d2f7 flag_array NUM_POKEMON wPokedexOwnedEnd:: -wPokedexSeen:: ; d30a - flag_array NUM_POKEMON -wPokedexSeenEnd:: - + ds 152 / 8 * 2 - (wPokedexOwnedEnd - wPokedexOwned) +wPokedexSeenEndOld:: wNumBagItems:: ; d31d ds 1 @@ -2574,7 +2572,11 @@ wDestinationWarpID:: ; d42f ; if $ff, the player's coordinates are not updated when entering the map ds 1 - ds 128 +wPokedexSeen:: + flag_array NUM_POKEMON +wPokedexSeenEnd:: + + ds 128 - (wPokedexSeenEnd - wPokedexSeen) wNumSigns:: ; d4b0 ; number of signs in the current map (up to 16) @@ -2914,6 +2916,7 @@ wRoute18GateCurScript:: ; d669 ds 78 wGameProgressFlagsEnd:: +wEvolutionData:: ds 56 wObtainedHiddenItemsFlags:: |