mist: selena: add another location along chasm path

This commit is contained in:
Vince Weaver 2020-07-30 20:53:13 -04:00
parent 70580ebe8c
commit bd0d1b418a
5 changed files with 24 additions and 4 deletions

View File

@ -253,6 +253,7 @@ SELENA_BUNKER_KEYPAD = 41
SELENA_WALKWAY2 = 42
SELENA_WATER_PATH2 = 43
SELENA_WATER_PATH3 = 44
SELENA_CHASM_PATH2 = 45
; Submarine on Selena
SUB_BUNKER_ENTRY = 0

View File

@ -25,6 +25,7 @@ selena_graphics.inc: \
water_note_n.lzsa water_note_e.lzsa water_note_w.lzsa water_note_s.lzsa \
tower_view_n.lzsa tower_view_s.lzsa tower_view_e.lzsa tower_view_w.lzsa \
chasm_path_e.lzsa chasm_path_w.lzsa \
chasm_path2_e.lzsa chasm_path2_w.lzsa \
chasm_e.lzsa chasm_w.lzsa chasm_s.lzsa chasm_n.lzsa \
clock_path_e.lzsa clock_path_w.lzsa \
clock_n.lzsa clock_s.lzsa clock_e.lzsa clock_w.lzsa \
@ -83,6 +84,8 @@ selena_graphics.inc: \
echo "tower_view_w_lzsa: .incbin \"tower_view_w.lzsa\"" >> selena_graphics.inc
echo "chasm_path_e_lzsa: .incbin \"chasm_path_e.lzsa\"" >> selena_graphics.inc
echo "chasm_path_w_lzsa: .incbin \"chasm_path_w.lzsa\"" >> selena_graphics.inc
echo "chasm_path2_e_lzsa: .incbin \"chasm_path2_e.lzsa\"" >> selena_graphics.inc
echo "chasm_path2_w_lzsa: .incbin \"chasm_path2_w.lzsa\"" >> selena_graphics.inc
echo "chasm_e_lzsa: .incbin \"chasm_e.lzsa\"" >> selena_graphics.inc
echo "chasm_w_lzsa: .incbin \"chasm_w.lzsa\"" >> selena_graphics.inc
echo "chasm_n_lzsa: .incbin \"chasm_n.lzsa\"" >> selena_graphics.inc

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 952 B

View File

@ -15,7 +15,7 @@ locations:
.word location32,location33,location34,location35
.word location36,location37,location38,location39
.word location40,location41,location42,location43
.word location44
.word location44,location45
; SELENA_INSIDE_SHIP -- Inside Ship
location0:
@ -223,11 +223,11 @@ location11:
.byte $ff ; north exit
.byte $ff ; south exit
.byte SELENA_TOWER_VIEW ; east exit
.byte SELENA_CHASM ; west exit
.byte SELENA_CHASM_PATH2 ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_S ; west exit_dir
.byte DIRECTION_W ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
.word chasm_path_e_lzsa ; east bg
@ -237,7 +237,7 @@ location11:
; SELENA_CHASM -- chasm
location12:
.byte SELENA_CHASM_PATH ; north exit
.byte SELENA_CHASM_PATH2 ; north exit
.byte $ff ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
@ -837,3 +837,19 @@ location44:
.byte BG_EAST|BG_WEST
.byte $ff
; SELENA_CHASM_PATH2 -- another path to chasm
location45:
.byte $ff ; north exit
.byte $ff ; south exit
.byte SELENA_CHASM_PATH ; east exit
.byte SELENA_CHASM ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_S ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
.word chasm_path2_e_lzsa ; east bg
.word chasm_path2_w_lzsa ; west bg
.byte BG_EAST|BG_WEST
.byte $ff