diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-08-02 20:34:09 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-08-02 20:34:09 -0700 |
commit | 0b9061e8085faf05c349fcb4a5a2ff89046436dc (patch) | |
tree | 92c7311349a52444133ad36298a510accd2dd8ce /wram.asm | |
parent | 53f31ad513495adf2d1827af28db286ef4620ef6 (diff) |
Label some Meowth Bonus stage addresses.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 42 |
1 files changed, 41 insertions, 1 deletions
@@ -178,7 +178,47 @@ wNumMonHits:: ; 0xd5c0 ; Number of times the wild pokemon has been hit in Catch'em mode ds 1 - ds $17c + ds $128 + +wMeowthAnimationFrameCounter:: ; 0xd6e9 +; Counts down. When it hits 0, the next animation frame happens. + ds 1 + + ds 3 + +wMeowthXPosition:: ; 0xd6ed + ds 1 +wMeowthYPosition:: ; 0xd6ee + ds 1 + + ds 1 + +wMeowthXMovement:: ; 0xd6f0 +; Used to move meowth horizontally. +; Value is $01 when moving right. +; Value is $ff when moving left. + ds 1 +wMeowthYMovement:: ; 0xd6f1 +; Used to move meowth vertically. +; Value is $01 when moving down. +; Value is $ff when moving up. + ds 1 + + ds $1d + +wMeowthStageBonusCounter:: ; 0xd70f +; Keeps track of how many bonus points you get from collecting a coin. +; The bonus increases by 1 each time you collect a coin. +; If Meowth is hit, the bonus resets to 0. + ds 1 + + ds 1 + +wMeowthStageScore:: ; 0xd711 +; Number of Meowth coins collected. + ds 1 + + ds $2b wDiglettStates:: ; 0xd73d ; Each diglett has a sprite state 1 - 5. |