diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-08-10 13:30:28 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-08-10 13:30:28 -0700 |
commit | 1c7bb82bcd1529d09b78d7ced65143e0d6d02f5d (patch) | |
tree | 778055de1ec7a2da077d05ed5a88d42f69dff6f4 /wram.asm | |
parent | 0b9061e8085faf05c349fcb4a5a2ff89046436dc (diff) |
Ball upgrade related stuff.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -35,7 +35,19 @@ wScore:: ; 0xd46a ; player's current score ds 6 - ds $31 + ds $e + +wBallType:: ; 0xd47e +; PokeBall, Great Ball, Ultra Ball, or Master Ball + ds 1 +wBallTypeCounter:: ; 0xd47f +; two-byte counter that represents how many frames remain until the Ball uprade goes down to the next level. + ds 2 +wBallTypeBackup:: ; 0xd481 +; Holds the ball type during bonus stages, since they always use a regular pokeball. + ds 1 + + ds $1f wBallSaverIconOn:: ; 0xd4a1 ; The blue Ball Saver icon is illuminated when this byte is non-zero. |