mist: meche: finish adding to the arch path

This commit is contained in:
Vince Weaver 2020-08-27 17:46:24 -04:00
parent d37549f7b5
commit b01fc0805b
7 changed files with 47 additions and 8 deletions

View File

@ -206,7 +206,8 @@ MECHE_RED_SECRET_ROOM = 41
MECHE_TOP_FLOOR_UP = 42
MECHE_ACHENAR_LETTER = 43
MECHE_EAST_PATH = 44
MECHE_EAST_STEPS = 45
MECHE_EAST_LANDING = 46
; Selena Age

View File

@ -61,7 +61,9 @@ meche_graphics.inc: \
red_secret_door_s.lzsa \
red_secret_room_n.lzsa red_secret_room_s.lzsa red_secret_room_e.lzsa red_secret_room_w.lzsa \
achenar_letter.lzsa \
east_path_e.lzsa east_path_w.lzsa
east_path_e.lzsa east_path_w.lzsa \
east_steps_s.lzsa east_steps_n.lzsa \
east_landing_e.lzsa east_landing_w.lzsa
echo "departure_e_lzsa: .incbin \"departure_e.lzsa\"" > meche_graphics.inc
echo "arrival_w_lzsa: .incbin \"arrival_w.lzsa\"" >> meche_graphics.inc
echo "entrance_e_lzsa: .incbin \"entrance_e.lzsa\"" >> meche_graphics.inc
@ -167,6 +169,10 @@ meche_graphics.inc: \
echo "achenar_letter_lzsa: .incbin \"achenar_letter.lzsa\"" >> meche_graphics.inc
echo "east_path_e_lzsa: .incbin \"east_path_e.lzsa\"" >> meche_graphics.inc
echo "east_path_w_lzsa: .incbin \"east_path_w.lzsa\"" >> meche_graphics.inc
echo "east_steps_s_lzsa: .incbin \"east_steps_s.lzsa\"" >> meche_graphics.inc
echo "east_steps_n_lzsa: .incbin \"east_steps_n.lzsa\"" >> meche_graphics.inc
echo "east_landing_e_lzsa: .incbin \"east_landing_e.lzsa\"" >> meche_graphics.inc
echo "east_landing_w_lzsa: .incbin \"east_landing_w.lzsa\"" >> meche_graphics.inc
%.gr: %.png
$(PNG2GR) $< $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 778 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1013 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 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,location46
; MECHE_INSIDE_GEAR -- Inside gear on Mist
location0:
@ -566,11 +566,11 @@ location29:
; MECHE EAST_ARCH -- cool archway
location30:
.byte $ff ; north exit
.byte MECHE_EAST_TOP ; south exit
.byte MECHE_EAST_STEPS ; south exit
.byte $ff ; east exit
.byte MECHE_EAST_PATH ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_E ; south exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte DIRECTION_W ; west exit_dir
.word $0000 ; north bg
@ -580,12 +580,12 @@ location30:
.byte BG_SOUTH|BG_WEST
.byte $ff ; special exit
; MECHE EAST_TOP -- top of the world
; MECHE_EAST_TOP -- top of the world
location31:
.byte $ff ; north exit
.byte $ff ; south exit
.byte MECHE_EAST_HINT ; east exit
.byte MECHE_EAST_ARCH ; west exit
.byte MECHE_EAST_LANDING ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_E ; east exit_dir
@ -605,7 +605,7 @@ location32:
.byte $ff ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_W ; east exit_dir
.byte DIRECTION_E ; east exit_dir
.byte $ff ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
@ -830,4 +830,36 @@ location44:
.byte BG_EAST|BG_WEST
.byte $ff ; special exit
; MECHE_EAST_STEPS -- steps to east hint
location45:
.byte MECHE_EAST_ARCH ; north exit
.byte MECHE_EAST_LANDING ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte DIRECTION_W ; north exit_dir
.byte DIRECTION_E ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word east_steps_n_lzsa ; north bg
.word east_steps_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_SOUTH|BG_NORTH
.byte $ff ; special exit
; MECHE_EAST_LANDING -- steps to east hint
location46:
.byte $ff ; north exit
.byte $ff ; south exit
.byte MECHE_EAST_TOP ; east exit
.byte MECHE_EAST_STEPS ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_N ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
.word east_landing_e_lzsa ; east bg
.word east_landing_w_lzsa ; west bg
.byte BG_EAST|BG_WEST
.byte $ff ; special exit