diff options
| author | xCrystal <rgr.crystal@gmail.com> | 2018-02-28 00:19:58 +0100 |
|---|---|---|
| committer | xCrystal <rgr.crystal@gmail.com> | 2018-02-28 00:19:58 +0100 |
| commit | e33ae4349f20f529e6abd0934d9b7157382723ff (patch) | |
| tree | 482857b84e8a6546451cd25c78665df16a05bc9d /src/constants | |
| parent | 99529d7658179740809899f63ace3c74b9456749 (diff) | |
Fix wDuelFinished and wDuelResult constants
Diffstat (limited to 'src/constants')
| -rw-r--r-- | src/constants/duel_constants.asm | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/constants/duel_constants.asm b/src/constants/duel_constants.asm index 7f2f4d4..5f6eeee 100644 --- a/src/constants/duel_constants.asm +++ b/src/constants/duel_constants.asm @@ -11,9 +11,13 @@ DUELTYPE_PRACTICE EQU $80 ; for normal duels (vs AI), wDuelType is $80 + [wOpponentDeckID] ; wDuelFinished constants -DUEL_WON EQU $1 -DUEL_LOST EQU $2 -DUEL_DRAW EQU $3 +TURN_PLAYER_WON EQU $1 +TURN_PLAYER_LOST EQU $2 +TURN_PLAYER_TIED EQU $3 + +; wDuelResult constants +DUEL_WIN EQU $0 +DUEL_LOSS EQU $1 ; Box message id's const_def |
