Prev: BB03 Up: Map Next: BB2E
BB11: Thief exits door (2-frame animation)
Sets CHARS=$CEB9 (thief exit tileset) via direct $5C36/$5C37 write.
Draws half-body frame (frame_thief_exit_1), short delay, then full-body frame
(frame_thief_exit_2), short delay. Returns.
thief_exit_door BB11 LD HL,$5C36 Set CHARS=$CEB9 (thief exit tileset)
BB14 LD A,$B9
BB16 LD (HL),A
BB17 INC HL
BB18 LD A,$CE
BB1A LD (HL),A
BB1B LD HL,$BB38 Draw frame frame_thief_exit_1
BB1E CALL draw_frame
BB21 CALL thief_delay Short delay (thief_delay)
BB24 LD HL,$BBA1 Draw frame frame_thief_exit_2
BB27 CALL draw_frame
BB2A CALL thief_delay Short delay (thief_delay)
BB2D RET
Prev: BB03 Up: Map Next: BB2E