Prev: A222 Up: Map Next: A38B
A360: Café — hero drinks animation
Used by the routine at cafe_encounter.
Sets CHARS=$DE31, cycles through drinking frames: LA38B (frame 1), delay 1, LA3D2 (frame 2, delay 10), back to frame 1 (delay 1). Then redraws the static background (draw_cafe_bg) and returns.
cafe_drink_anim A360 LD DE,$DE31
A363 CALL set_chars
A366 LD HL,$A38B Draw frame LA38B
A369 CALL draw_frame
A36C LD A,$01
A36E CALL delay_a
A371 LD HL,$A3D2 Draw frame LA3D2
A374 CALL draw_frame
A377 LD A,$0A
A379 CALL delay_a
A37C LD HL,$A38B Draw frame LA38B
A37F CALL draw_frame
A382 LD A,$01
A384 CALL delay_a
A387 CALL draw_cafe_bg
A38A RET
Prev: A222 Up: Map Next: A38B