summaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/duel_constants.asm40
1 files changed, 22 insertions, 18 deletions
diff --git a/src/constants/duel_constants.asm b/src/constants/duel_constants.asm
index 7eb8b27..8d8453f 100644
--- a/src/constants/duel_constants.asm
+++ b/src/constants/duel_constants.asm
@@ -1,21 +1,25 @@
PLAYER_TURN EQUS "wPlayerDuelVariables >> $8"
OPPONENT_TURN EQUS "wOpponentDuelVariables >> $8"
-DUELVAR_CARD_LOCATIONS EQUS "wPlayerCardLocations & $ff"
-DUELVAR_HAND EQUS "wPlayerHand & $ff"
-DUELVAR_DECK_CARDS EQUS "wPlayerDeckCards & $ff"
-DUELVAR_NUMBER_OF_CARDS_NOT_IN_DECK EQUS "wPlayerNumberOfCardsNotInDeck & $ff"
-DUELVAR_ARENA_CARD EQUS "wPlayerArenaCard & $ff"
-DUELVAR_BENCH EQUS "wPlayerBench & $ff"
-DUELVAR_ARENA_CARD_HP EQUS "wPlayerArenaCardHP & $ff"
-DUELVAR_BENCH1_CARD_HP EQUS "wPlayerBench1CardHP & $ff"
-DUELVAR_BENCH2_CARD_HP EQUS "wPlayerBench2CardHP & $ff"
-DUELVAR_BENCH3_CARD_HP EQUS "wPlayerBench3CardHP & $ff"
-DUELVAR_BENCH4_CARD_HP EQUS "wPlayerBench4CardHP & $ff"
-DUELVAR_BENCH5_CARD_HP EQUS "wPlayerBench5CardHP & $ff"
-DUELVAR_PRIZES EQUS "wPlayerPrizes & $ff"
-DUELVAR_NUMBER_OF_CARDS_IN_DISCARD_PILE EQUS "wPlayerNumberOfCardsInDiscardPile & $ff"
-DUELVAR_NUMBER_OF_CARDS_IN_HAND EQUS "wPlayerNumberOfCardsInHand & $ff"
-DUELVAR_NUMBER_OF_POKEMON_IN_PLAY EQUS "wPlayerNumberOfPokemonInPlay & $ff"
-DUELVAR_ARENA_CARD_STATUS EQUS "wPlayerArenaCardStatus & $ff"
-DUELVAR_DUELIST_TYPE EQUS "wPlayerDuelistType & $ff"
+DUEL_WON EQU $1
+DUEL_LOST EQU $2
+DUEL_DRAW EQU $3
+
+DUELVARS_CARD_LOCATIONS EQUS "wPlayerCardLocations & $ff"
+DUELVARS_HAND EQUS "wPlayerHand & $ff"
+DUELVARS_DECK_CARDS EQUS "wPlayerDeckCards & $ff"
+DUELVARS_NUMBER_OF_CARDS_NOT_IN_DECK EQUS "wPlayerNumberOfCardsNotInDeck & $ff"
+DUELVARS_ARENA_CARD EQUS "wPlayerArenaCard & $ff"
+DUELVARS_BENCH EQUS "wPlayerBench & $ff"
+DUELVARS_ARENA_CARD_HP EQUS "wPlayerArenaCardHP & $ff"
+DUELVARS_BENCH1_CARD_HP EQUS "wPlayerBench1CardHP & $ff"
+DUELVARS_BENCH2_CARD_HP EQUS "wPlayerBench2CardHP & $ff"
+DUELVARS_BENCH3_CARD_HP EQUS "wPlayerBench3CardHP & $ff"
+DUELVARS_BENCH4_CARD_HP EQUS "wPlayerBench4CardHP & $ff"
+DUELVARS_BENCH5_CARD_HP EQUS "wPlayerBench5CardHP & $ff"
+DUELVARS_PRIZES EQUS "wPlayerPrizes & $ff"
+DUELVARS_NUMBER_OF_CARDS_IN_DISCARD_PILE EQUS "wPlayerNumberOfCardsInDiscardPile & $ff"
+DUELVARS_NUMBER_OF_CARDS_IN_HAND EQUS "wPlayerNumberOfCardsInHand & $ff"
+DUELVARS_NUMBER_OF_POKEMON_IN_PLAY EQUS "wPlayerNumberOfPokemonInPlay & $ff"
+DUELVARS_ARENA_CARD_STATUS EQUS "wPlayerArenaCardStatus & $ff"
+DUELVARS_DUELIST_TYPE EQUS "wPlayerDuelistType & $ff"