mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-29 00:31:52 +00:00
mist: add in generator house switch
This commit is contained in:
parent
74de7c1d5e
commit
19bd8b8d56
@ -30,7 +30,7 @@ Marker Switches (8):
|
||||
+ * Spaceship
|
||||
+ Clock
|
||||
+ Cabin
|
||||
+ Generator
|
||||
+ * Generator
|
||||
|
||||
Fireplace:
|
||||
+ 8x6 grid
|
||||
@ -39,7 +39,7 @@ Fireplace:
|
||||
|
||||
16 more pictures?
|
||||
+ cabin switch
|
||||
+ generator switch
|
||||
+ * generator switch
|
||||
+ close-in clock
|
||||
+ clock with gears up
|
||||
+ clock switch
|
||||
|
@ -34,7 +34,8 @@ mist_graphics.inc: \
|
||||
gear_n.lzsa gear_w.lzsa gear_s.lzsa \
|
||||
gear_base_n.lzsa \
|
||||
dentist_door_n.lzsa dentist_door_s.lzsa \
|
||||
spaceship_switch_n.lzsa
|
||||
spaceship_switch_n.lzsa \
|
||||
tree4_n.lzsa tree4_s.lzsa tree4_w.lzsa
|
||||
echo "m_link_book_lzsa: .incbin \"m_link_book.lzsa\"" > mist_graphics.inc
|
||||
echo "dock_n_lzsa: .incbin \"dock_n.lzsa\"" >> mist_graphics.inc
|
||||
echo "dock_s_lzsa: .incbin \"dock_s.lzsa\"" >> mist_graphics.inc
|
||||
@ -86,6 +87,9 @@ mist_graphics.inc: \
|
||||
echo "dentist_door_n_lzsa: .incbin \"dentist_door_n.lzsa\"" >> mist_graphics.inc
|
||||
echo "dentist_door_s_lzsa: .incbin \"dentist_door_s.lzsa\"" >> mist_graphics.inc
|
||||
echo "spaceship_switch_n_lzsa: .incbin \"spaceship_switch_n.lzsa\"" >> mist_graphics.inc
|
||||
echo "tree4_n_lzsa: .incbin \"tree4_n.lzsa\"" >> mist_graphics.inc
|
||||
echo "tree4_s_lzsa: .incbin \"tree4_s.lzsa\"" >> mist_graphics.inc
|
||||
echo "tree4_w_lzsa: .incbin \"tree4_w.lzsa\"" >> mist_graphics.inc
|
||||
|
||||
|
||||
%.gr: %.png
|
||||
|
@ -49,3 +49,6 @@ gear_base_n_lzsa: .incbin "gear_base_n.lzsa"
|
||||
dentist_door_n_lzsa: .incbin "dentist_door_n.lzsa"
|
||||
dentist_door_s_lzsa: .incbin "dentist_door_s.lzsa"
|
||||
spaceship_switch_n_lzsa: .incbin "spaceship_switch_n.lzsa"
|
||||
tree4_n_lzsa: .incbin "tree4_n.lzsa"
|
||||
tree4_s_lzsa: .incbin "tree4_s.lzsa"
|
||||
tree4_w_lzsa: .incbin "tree4_w.lzsa"
|
||||
|
BIN
mist/graphics_island/tree4_n.png
Normal file
BIN
mist/graphics_island/tree4_n.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 617 B |
BIN
mist/graphics_island/tree4_s.png
Normal file
BIN
mist/graphics_island/tree4_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 525 B |
BIN
mist/graphics_island/tree4_w.png
Normal file
BIN
mist/graphics_island/tree4_w.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 583 B |
27
mist/mist.s
27
mist/mist.s
@ -816,7 +816,7 @@ locations:
|
||||
.word location8, location9, location10,location11
|
||||
.word location12,location13,location14,location15
|
||||
.word location16,location17,location18,location19
|
||||
.word location20,location21,location22
|
||||
.word location20,location21,location22,location23
|
||||
|
||||
; myst linking book
|
||||
location0:
|
||||
@ -1103,7 +1103,7 @@ location13:
|
||||
; pool
|
||||
location14:
|
||||
.byte $ff ; north exit
|
||||
.byte 15 ; south exit
|
||||
.byte 23 ; south exit
|
||||
.byte $ff ; east exit
|
||||
.byte $ff ; west exit
|
||||
.byte $ff ; north exit_dir
|
||||
@ -1185,7 +1185,7 @@ location17:
|
||||
|
||||
; tree corridor #5
|
||||
location18:
|
||||
.byte 17 ; north exit
|
||||
.byte 23 ; north exit
|
||||
.byte $ff ; south exit
|
||||
.byte $ff ; east exit
|
||||
.byte $ff ; west exit
|
||||
@ -1284,6 +1284,27 @@ location22:
|
||||
.byte BG_NORTH
|
||||
|
||||
|
||||
; tree corridor4 (with generator switch)
|
||||
location23:
|
||||
.byte 17 ; north exit
|
||||
.byte 15 ; 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
|
||||
.byte $ff ; special exit
|
||||
.word tree4_n_lzsa ; north bg
|
||||
.word tree4_s_lzsa ; south bg
|
||||
.word $0000 ; east bg
|
||||
.word tree4_w_lzsa ; west bg
|
||||
.byte $ff,$ff ; special x
|
||||
.byte $ff,$ff ; special y
|
||||
.word $0000 ; special function
|
||||
.byte BG_NORTH|BG_SOUTH|BG_WEST
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user