diff options
author | IIMarckus <iimarckus@gmail.com> | 2012-07-04 22:13:23 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2012-07-04 22:13:23 -0600 |
commit | 92e80be51b3ec02c77b3d0365722f0e8c50af2d7 (patch) | |
tree | 8c725015830b15b934fd79630b52b764dbefd375 /wram.asm | |
parent | a99c75b7cd19cb267b4340d56a2197ddabcf99a3 (diff) |
Add Special 0x60, which checks the conditions for Snorlax to wake up.
Diffstat (limited to 'wram.asm')
-rw-r--r-- | wram.asm | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -641,6 +641,19 @@ Box13Name: ; 0xdb31 Box14Name: ; 0xdb3a ds 9 +SECTION "PlayerMapInfo", BSS[$dcb4] + +WarpNumber: ; 0xdcb4 + ds 1 +MapGroup: ; 0xdcb5 + ds 1 ; map group of current map +MapNumber: ; 0xdcb6 + ds 1 ; map number of current map +YCoord: ; 0xdcb7 + ds 1 ; current y coordinate relative to top-left corner of current map +XCoord: ; 0xdcb8 + ds 1 ; current x coordinate relative to top-left corner of current map + SECTION "PlayerParty",BSS[$dcd7] PartyCount: ; 0xdcd7 |