mist: can fully explore tower

This commit is contained in:
Vince Weaver 2020-04-05 01:07:47 -04:00
parent b19343df44
commit 6959fd36c5
9 changed files with 41 additions and 2 deletions

View File

@ -38,7 +38,9 @@ octagon_graphics.inc: \
tower_book_view_blank_s.lzsa tower_book_view_ship_s.lzsa \
tower_key_n.lzsa tower_key_s.lzsa tower_key_e.lzsa tower_key_w.lzsa \
tower_left_n.lzsa tower_left_s.lzsa \
tower_right_n.lzsa tower_right_s.lzsa
tower_right_n.lzsa tower_right_s.lzsa \
tower_key_ladder_n.lzsa tower_key_ladder_s.lzsa \
tower_key_view_blank_n.lzsa tower_key_view_s.lzsa
echo "temple_door_n_lzsa: .incbin \"temple_door_n.lzsa\"" > octagon_graphics.inc
echo "temple_door_s_lzsa: .incbin \"temple_door_s.lzsa\"" >> octagon_graphics.inc
echo "temple_door_closed_s_lzsa: .incbin \"temple_door_closed_s.lzsa\"" >> octagon_graphics.inc
@ -93,6 +95,11 @@ octagon_graphics.inc: \
echo "tower_left_s_lzsa: .incbin \"tower_left_s.lzsa\"" >> octagon_graphics.inc
echo "tower_right_n_lzsa: .incbin \"tower_right_n.lzsa\"" >> octagon_graphics.inc
echo "tower_right_s_lzsa: .incbin \"tower_right_s.lzsa\"" >> octagon_graphics.inc
echo "tower_key_ladder_n_lzsa: .incbin \"tower_key_ladder_n.lzsa\"" >> octagon_graphics.inc
echo "tower_key_ladder_s_lzsa: .incbin \"tower_key_ladder_s.lzsa\"" >> octagon_graphics.inc
echo "tower_key_view_blank_n_lzsa: .incbin \"tower_key_view_blank_n.lzsa\"" >> octagon_graphics.inc
echo "tower_key_view_s_lzsa: .incbin \"tower_key_view_s.lzsa\"" >> octagon_graphics.inc
%.gr: %.png
$(PNG2GR) $< $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 710 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 719 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -10,7 +10,7 @@ locations:
.word location12,location13,location14,location15
.word location16,location17,location18,location19
.word location20,location21,location22,location23
.word location24
.word location24,location25,location26
; OCTAGON_TEMPLE_DOORWAY -- temple doorway
location0:
@ -459,5 +459,37 @@ location24:
.byte BG_SOUTH|BG_NORTH
.byte $ff
; OCTAGON_KEY_LADDER -- ladder, key side
location25:
.byte OCTAGON_KEY_VIEW ; north exit
.byte OCTAGON_TOWER_KEY ; 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 tower_key_ladder_n_lzsa ; north bg
.word tower_key_ladder_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_SOUTH|BG_NORTH
.byte $ff
; OCTAGON_KEY_VIEW -- key ladder, view hint
location26:
.byte $ff ; north exit
.byte OCTAGON_KEY_LADDER ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word tower_key_view_blank_n_lzsa ; north bg
.word tower_key_view_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_SOUTH|BG_NORTH
.byte $ff