diff options
author | xCrystal <rgr.crystal@gmail.com> | 2020-12-15 20:47:13 +0100 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2020-12-15 20:47:13 +0100 |
commit | 117efe39b6b297dc52c1b5ad4d3012e7b00c8bd7 (patch) | |
tree | 785195227b981bf4c4dab2fb8d56b1e8bc112a38 /src/engine/bank01.asm | |
parent | d8f98d97bcd41f710d51925470dc799a6051f022 (diff) |
Misc progress related to duel effect functions
Diffstat (limited to 'src/engine/bank01.asm')
-rw-r--r-- | src/engine/bank01.asm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/engine/bank01.asm b/src/engine/bank01.asm index c4a6b27..811f95b 100644 --- a/src/engine/bank01.asm +++ b/src/engine/bank01.asm @@ -1438,10 +1438,15 @@ CheckIfActiveCardParalyzedOrAsleep: ; 4918 (1:4918) scf ret -; display the animation of the turn duelist drawing a card at the beginning of the turn +; display the animation of the turn duelist drawing one card at the beginning of the turn ; if there isn't any card left in the deck, let the player know with a text message DisplayDrawOneCardScreen: ; 4933 (1:4933) ld a, 1 +; fallthrough + +; display the animation of the turn duelist drawing A cards at the beginning of the turn +; if there isn't any card left in the deck, let the player know with a text message +DisplayDrawACardsScreen: push hl push de push bc @@ -7386,9 +7391,9 @@ Func_6ff7: ; 6ff7 (1:6ff7) ret ; print one of the "There was no effect from" texts depending -; on the value at wNoEffectFromStatus (NO_STATUS or a status condition constant) +; on the value at wNoEffectFromWhichStatus (NO_STATUS or a status condition constant) PrintThereWasNoEffectFromStatusText: ; 700a (1:700a) - ld a, [wNoEffectFromStatus] + ld a, [wNoEffectFromWhichStatus] or a jr nz, .status ld hl, wLoadedMoveName |