mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-08-08 23:25:05 +00:00
26 lines
611 B
PHP
26 lines
611 B
PHP
;===============================================
|
|
; level data for inside the room
|
|
;===============================================
|
|
|
|
locations:
|
|
.word location0
|
|
|
|
; RIVEN_INSIDE -- part way across the bridge
|
|
|
|
location0:
|
|
.byte $ff ; north exit
|
|
.byte $ff ; south exit
|
|
.byte $ff ; east exit
|
|
.byte $ff ; west exit
|
|
.byte $FF ; north exit_dir
|
|
.byte $FF ; south exit_dir
|
|
.byte DIRECTION_E ; east exit_dir
|
|
.byte DIRECTION_W ; west exit_dir
|
|
.word $0000 ; north bg
|
|
.word $0000 ; south bg
|
|
.word entrance_e_zx02 ; east bg
|
|
.word entrance_w_zx02 ; west bg
|
|
.byte BG_EAST|BG_WEST
|
|
.byte $ff ; special exit
|
|
|