diff options
author | Marcus Huderle <huderlem@gmail.com> | 2015-08-10 16:13:49 -0700 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2015-08-10 16:13:49 -0700 |
commit | e6416a62bb55298b540f3f27bb660ff2b17791ff (patch) | |
tree | c3960433085065068eb1e363b71609b0b595a049 /wram.asm | |
parent | 1c7bb82bcd1529d09b78d7ced65143e0d6d02f5d (diff) |
Alley triggers.
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -154,7 +154,27 @@ wRightMapMoveDiglettFrame:: ; 0xd4f6 ; Contains frame for map move diglett head bobbing animation ds 1 - ds $53 + ds $4b + +wLeftAlleyTrigger:: ; 0xd542 +; Set to $1 when ball passes over the bottom-left corner of the Blue/Red field top screen +; It's used to determine if the Ball was hit up the left side alley. + ds 1 +wLeftAlleyCount:: ; 0xd543 +; Increments when the Ball travels up the left alley. +; When the count is 3, evolution mode can be triggered. + ds 1 +wRightAlleyTrigger:: ; 0xd544 +; Set to $1 when Ball passes over the bottom-right corner of the Blue/Red field top screen +; It's used to determine if the Ball was hit up the right side alley. + ds 1 +wRightAlleyCount:: ; 0xd545 +; Increments when the Ball travels up the right alley. +; When the count is 2, Catch 'Em Mode can be triggered. +; If the count is 3, the current map's rare pokemon will be used for Catch 'Em Mode. + ds 1 + + ds 4 wCurrentMap:: ; 0xd54a ; Current map during play. See map_constants.asm |