mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-17 14:12:58 +00:00
mist: make spaceship walkway longer
This commit is contained in:
parent
91b603ec29
commit
07dd842e44
@ -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
|
||||
|
||||
|
@ -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) $< $@
|
||||
|
BIN
mist/graphics_selena/spaceship_path_n.png
Normal file
BIN
mist/graphics_selena/spaceship_path_n.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1003 B |
BIN
mist/graphics_selena/spaceship_path_s.png
Normal file
BIN
mist/graphics_selena/spaceship_path_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 911 B |
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user