diff options
| author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-02-03 11:41:26 +0000 |
|---|---|---|
| committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-02-03 11:50:15 +0000 |
| commit | 91ecded7f6d4727dbd017e3188a4834fe9926f79 (patch) | |
| tree | ea501a09e2a23b015372e0d88a78f138af54f2b0 /src/engine/deck_ai | |
| parent | 68b8291b1920bcae99750f4bb97b7c01b73f786c (diff) | |
Change all references of "move" to "attack"
Diffstat (limited to 'src/engine/deck_ai')
| -rw-r--r-- | src/engine/deck_ai/decks/legendary_articuno.asm | 10 | ||||
| -rw-r--r-- | src/engine/deck_ai/decks/sams_practice.asm | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/engine/deck_ai/decks/legendary_articuno.asm b/src/engine/deck_ai/decks/legendary_articuno.asm index 562e7c5..6b3b9f8 100644 --- a/src/engine/deck_ai/decks/legendary_articuno.asm +++ b/src/engine/deck_ai/decks/legendary_articuno.asm @@ -91,18 +91,18 @@ ScoreLegendaryArticunoCards: ; 14c91 (5:4c91) ; player prizes >= 3 ; if Lapras has more than half HP and -; can use second move, check next for Articuno +; can use second attack, check next for Articuno ; otherwise, check if Articuno or Dewgong -; have more than half HP and can use second move +; have more than half HP and can use second attack ; and if so, the next Pokémon to check is Lapras ld a, LAPRAS - call CheckForBenchIDAtHalfHPAndCanUseSecondMove + call CheckForBenchIDAtHalfHPAndCanUseSecondAttack jr c, .articuno ld a, ARTICUNO1 - call CheckForBenchIDAtHalfHPAndCanUseSecondMove + call CheckForBenchIDAtHalfHPAndCanUseSecondAttack jr c, .lapras ld a, DEWGONG - call CheckForBenchIDAtHalfHPAndCanUseSecondMove + call CheckForBenchIDAtHalfHPAndCanUseSecondAttack jr c, .lapras jr .articuno diff --git a/src/engine/deck_ai/decks/sams_practice.asm b/src/engine/deck_ai/decks/sams_practice.asm index 10ce811..b92253d 100644 --- a/src/engine/deck_ai/decks/sams_practice.asm +++ b/src/engine/deck_ai/decks/sams_practice.asm @@ -104,7 +104,7 @@ AIPerformScriptedTurn: ; 1483a (5:483a) xor a ldh [hTempPlayAreaLocation_ff9d], a ld [wSelectedAttack], a - call CheckIfSelectedMoveIsUnusable + call CheckIfSelectedAttackIsUnusable jr c, .unusable call AITryUseAttack ret |
