mist: make spaceship walkway longer

This commit is contained in:
Vince Weaver 2020-05-28 16:14:17 -04:00
parent 91b603ec29
commit 07dd842e44
5 changed files with 26 additions and 7 deletions

View File

@ -222,6 +222,7 @@ SELENA_CRYSTAL_STEPS = 22
SELENA_CRYSTAL_PATH = 23
SELENA_CRYSTALS = 24
SELENA_CRYSTAL_CLOSE = 25
SELENA_SPACESHIP_PATH = 26
; Viewer Room

View File

@ -35,7 +35,8 @@ selena_graphics.inc: \
crystal_steps_s.lzsa \
crystal_path_n.lzsa \
crystals_s.lzsa crystals_n.lzsa \
crystals_note_e.lzsa
crystals_note_e.lzsa \
spaceship_path_n.lzsa spaceship_path_s.lzsa
echo "controls_e_lzsa: .incbin \"controls_e.lzsa\"" > selena_graphics.inc
echo "organ_w_lzsa: .incbin \"organ_w.lzsa\"" >> selena_graphics.inc
echo "spaceship_inside_w_lzsa: .incbin \"spaceship_inside_w.lzsa\"" >> selena_graphics.inc
@ -89,9 +90,8 @@ selena_graphics.inc: \
echo "crystals_s_lzsa: .incbin \"crystals_s.lzsa\"" >> selena_graphics.inc
echo "crystals_n_lzsa: .incbin \"crystals_n.lzsa\"" >> selena_graphics.inc
echo "crystals_note_e_lzsa: .incbin \"crystals_note_e.lzsa\"" >> selena_graphics.inc
echo "spaceship_path_n_lzsa: .incbin \"spaceship_path_n.lzsa\"" >> selena_graphics.inc
echo "spaceship_path_s_lzsa: .incbin \"spaceship_path_s.lzsa\"" >> selena_graphics.inc
%.gr: %.png
$(PNG2GR) $< $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 1003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 911 B

View File

@ -10,7 +10,7 @@ locations:
.word location12,location13,location14,location15
.word location16,location17,location18,location19
.word location20,location21,location22,location23
.word location24,location25
.word location24,location25,location26
; SELENA_INSIDE_SHIP -- Inside Ship
@ -77,7 +77,7 @@ location2:
; SELENA_WALKWAY1 -- walkway1
location3:
.byte SELENA_WALKWAY4 ; north exit
.byte SELENA_SPACESHIP_PATH ; north exit
.byte SELENA_SPACESHIP_DOOR ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
@ -112,7 +112,7 @@ location4:
; SELENA_WALKWAY4 -- walkway4
location5:
.byte SELENA_BUNKER ; north exit
.byte SELENA_WALKWAY1 ; south exit
.byte SELENA_SPACESHIP_PATH ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte DIRECTION_N ; north exit_dir
@ -472,3 +472,21 @@ location25:
.byte BG_EAST
.byte $ff
; SELENA_SPACESHIP_PATH -- spaceship path/ walkway3?
location26:
.byte SELENA_WALKWAY4 ; north exit
.byte SELENA_WALKWAY1 ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte DIRECTION_N ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word spaceship_path_n_lzsa ; north bg
.word spaceship_path_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_NORTH|BG_SOUTH
.byte $ff