diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-07-19 13:48:22 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-07-19 13:48:22 -0700 |
commit | a2ba22e74fba671be40cf773ff9a16a53ce8be47 (patch) | |
tree | 7621d6dca52cd4bf2c0afce9474d9412c3f1f09a /wram.asm | |
parent | 7ffd878799c6eb366cb8a8013d83105dedac1483 (diff) |
Diglett Stage work. Dump lots of data and label routines.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 28 |
1 files changed, 27 insertions, 1 deletions
@@ -89,7 +89,33 @@ wNumMonHits:: ; 0xd5c0 ; Number of times the wild pokemon has been hit in Catch'em mode ds 1 - ds $1e0 + ds $17c + +wDiglettStates:: ; 0xd73d +; Each diglett has a sprite state 1 - 5. +; The animation wiggles back and forth. +; $0 = diglett has been hit +; $1 = hiding in hole +; $2 = straight up +; $3 = leaning left +; $4 = straight up +; $5 = leaning right +; $6 = getting hit + ds 31 + +wCurrentDiglett:: ; 0xd75c +; Keeps track of which diglett is being updated. + ds 1 + +wDiglettsInitializedFlag:: ; 0xd75d +; bit 0 is set after all digletts have been initialized + ds 1 + +wDiglettInitDelayCounter:: ; 0xd75e +; used to faciliate how fast the digletts are initialized + ds 1 + + ds $42 wLeftTiltCounter:: ; 0xd7a1 ; Counts up to 3 and back down to time the left tilt animation |