diff options
author | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-01-13 18:54:54 +0000 |
---|---|---|
committer | ElectroDeoxys <ElectroDeoxys@gmail.com> | 2021-01-13 18:54:54 +0000 |
commit | 4d4d7e554def50e5fdbc04a5d2a78f3a69a76327 (patch) | |
tree | c31dcaf58db42501f514219a8f8f608e57abd502 /src/engine/home.asm | |
parent | 31335eb22dce889025037e0360c2e711e56a851d (diff) |
More misc attack animations
Diffstat (limited to 'src/engine/home.asm')
-rw-r--r-- | src/engine/home.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/home.asm b/src/engine/home.asm index 18a79f4..c860dd3 100644 --- a/src/engine/home.asm +++ b/src/engine/home.asm @@ -4529,7 +4529,7 @@ HandleConfusionDamageToSelf: ; 1828 (0:1828) ld [wIsDamageToSelf], a ldtx hl, DamageToSelfDueToConfusionText call DrawWideTextBox_PrintText - ld a, $75 + ld a, ATK_ANIM_CONFUSION_HIT ld [wLoadedMoveAnimation], a ld a, 20 ; damage call DealConfusionDamageToSelf @@ -4700,7 +4700,7 @@ LoadNonPokemonCardEffectCommands: ; 1944 (0:1944) ; display recoil animation DealRecoilDamageToSelf: ; 1955 (0:1955) push af - ld a, $7a + ld a, ATK_ANIM_RECOIL_HIT ld [wLoadedMoveAnimation], a pop af ; fallthrough @@ -4977,7 +4977,7 @@ PrintKnockedOut: ; 1ad3 (0:1ad3) ; shows the defending player's play area screen when dealing the damage ; instead of the main duel interface with regular attack animation. DealDamageToPlayAreaPokemon_RegularAnim: ; 1af3 (0:1af3) - ld a, $78 + ld a, ATK_ANIM_BENCH_HIT ld [wLoadedMoveAnimation], a ; fallthrough |