diff options
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 13 |
1 files changed, 11 insertions, 2 deletions
@@ -113,8 +113,17 @@ wCurrentMap:: ; 0xd54a ; Current map during play. See map_constants.asm ds 1 - ds $2e - ; d54b might be the current mode (catchEm, evolution, map change, etc.) +wSpecialMode:: ; 0xd54b +; Set to non-zero when things like Catch 'em Mode or Map Move mode start. + ds 1 + + ds 15 + +wRareMonsFlag:: ; 0xd55b +; Gets set to $8 when the rare mons should be used for catch 'em mode. $8 is then doubled to add $10 to the base address of the map's wild mons table. + ds 1 + + ds $1d wCurrentMon:: ; 0xd579 ; Current mon id for CatchEm Mode. Might also be used for Evolution Mode. |