Prev: C2DF Up: Map Next: C30A
C2E7: Handle enemy lateral movement (1/2)
Used by the routine at BC48.
C2E7 LD A,(IX+$09) Check enemy type
C2EA CP $FE Return if bubble
C2EC RET Z
C2ED CP $FD Return if smartbomb
C2EF RET Z
C2F0 CP $FC Return if question
C2F2 RET Z
C2F3 AND $7F Jump forward to handle TRIANGLE
C2F5 CP $08
C2F7 CP $0E
C2F9 JP Z,$C3C1
C2FC OR A Does nothing
C2FD JP NZ,$C300
lateral movement for FOOT MAN and CATERPILLAR
C300 LD A,(IX+$02) Jump to handle right movement
C303 OR A
C304 JP Z,$C433
C307 JP $C503 Jump to handle left movement
Prev: C2DF Up: Map Next: C30A