Battle animation annotations

This commit is contained in:
PikalaxALT
2016-03-01 22:31:21 -05:00
parent e044b8ec08
commit 599e6e8d16
49 changed files with 761 additions and 772 deletions

View File

@@ -21,17 +21,17 @@ CheckDirectionalWarp:: ; 149af
; Else, set carry (immediate warp).
ld a, [PlayerStandingTile]
cp $70 ; Warp on down
jr z, .not_warp
jr z, .directional
cp $76 ; Warp on left
jr z, .not_warp
jr z, .directional
cp $78 ; Warp on up
jr z, .not_warp
jr z, .directional
cp $7e ; Warp on right
jr z, .not_warp
jr z, .directional
scf
ret
.not_warp
.directional
xor a
ret
; 149c6