diff options
author | anmart <andrewrmartinek@gmail.com> | 2016-02-20 00:39:27 -0500 |
---|---|---|
committer | anmart <andrewrmartinek@gmail.com> | 2016-02-20 00:39:27 -0500 |
commit | 90f1f4a0903b7fc04b28962cd6bc8d946ab15ea5 (patch) | |
tree | db5bbfa3f79abdd907a6d6892e8cfa59f0191e42 /src/wram.asm | |
parent | 595988d101d7c7264099ee3b9f559214bfda436c (diff) |
Disassembled Duel Attack Submenu
Disassembled Duel Attack Submenu and some related wram + functions
Diffstat (limited to 'src/wram.asm')
-rwxr-xr-x | src/wram.asm | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/src/wram.asm b/src/wram.asm index da98d0d..5ec4410 100755 --- a/src/wram.asm +++ b/src/wram.asm @@ -62,7 +62,15 @@ wPlayerBench4CardHP:: ; c2cc ds $1 wPlayerBench5CardHP:: ; c2cd ds $1 - ds $1e + ds $1a + +;The only known use of this is to store +;when an attack causes a pokemon +;to not be able to attack the following turn +;for example: tail wag, leer +wPlayerCantAttackStatus:: ; c2e8 + ds $1 + ds $3 ; Each bit represents a prize (1 = not taken ; 0 = taken) wPlayerPrizes:: ; c2ec @@ -122,7 +130,15 @@ wOpponentBench4CardHP:: ; c3cc ds $1 wOpponentBench5CardHP:: ; c3cd ds $1 - ds $1e + ds $1a + +;The only known use of this is to store +;when an attack causes a pokemon +;to not be able to attack the following turn +;for example: tail wag, leer +wOpponentCantAttackStatus:: ; c3e8 + ds $1 + ds $3 wOpponentPrizes:: ; c3ec ds $1 @@ -769,4 +785,4 @@ wMusicE4:: ; ddea ds $9 wMusicReturnAddress:: ; ddf3 - ds $8 + ds $8
\ No newline at end of file |