diff options
author | xCrystal <rgr.crystal@gmail.com> | 2018-07-29 18:17:43 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2018-07-29 18:17:43 +0200 |
commit | 00f7e8038194d8ef42e006fd2e6d0e573ee83f1d (patch) | |
tree | 530aeecdc2d69a0c8fc95326d16a0d1a4eb7e049 /src/wram.asm | |
parent | 5621850eb451524b3f7c2ac2d036fd27a918ec30 (diff) |
More duel bank1 disasm
Diffstat (limited to 'src/wram.asm')
-rw-r--r-- | src/wram.asm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/wram.asm b/src/wram.asm index 0379dec..b81e9f2 100644 --- a/src/wram.asm +++ b/src/wram.asm @@ -43,6 +43,8 @@ wPlayerDuelVariables:: ; c200 wPlayerCardLocations:: ; c200 ds DECK_SIZE +; deck indexes of the up to 6 cards placed as prizes +wPlayerPrizeCards:: ; c23c ds $6 ; Deck indexes of the cards that are in the player's hand @@ -203,6 +205,7 @@ wOpponentDuelVariables:: ; c300 wOpponentCardLocations:: ; c300 ds DECK_SIZE +wOpponentPrizeCards:: ; c33c ds $6 wOpponentHand:: ; c342 @@ -750,7 +753,11 @@ wcbfa:: ; cbfa wcbfb:: ; cbfb ds $1 - ds $2 +wcbfc:: ; cbfc + ds $1 + +wcbfd:: ; cbfd + ds $1 ; during a practice duel, identifies an entry of PracticeDuelActionTable wPracticeDuelAction:: ; cbfe |