mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-14 13:33:48 +00:00
mist: generator: add another step on path
not sure it helps much
This commit is contained in:
parent
8fd0e549c7
commit
2024e6edc2
@ -115,6 +115,7 @@ GEN_TOWER1_TRAIL = 5
|
|||||||
GEN_TOWER1_TRAIL2 = 6
|
GEN_TOWER1_TRAIL2 = 6
|
||||||
GEN_TOWER1_BOTTOM = 7
|
GEN_TOWER1_BOTTOM = 7
|
||||||
GEN_TOWER1_TOP = 8
|
GEN_TOWER1_TOP = 8
|
||||||
|
GEN_GREEN_STEPS3 = 9
|
||||||
|
|
||||||
|
|
||||||
; Mist Octagon Building
|
; Mist Octagon Building
|
||||||
|
@ -13,6 +13,7 @@ generator_graphics.inc: \
|
|||||||
generator_n.lzsa generator_s.lzsa \
|
generator_n.lzsa generator_s.lzsa \
|
||||||
green_house_w.lzsa green_house_e.lzsa \
|
green_house_w.lzsa green_house_e.lzsa \
|
||||||
green_steps1_n.lzsa green_steps1_s.lzsa \
|
green_steps1_n.lzsa green_steps1_s.lzsa \
|
||||||
|
green_steps3_n.lzsa green_steps3_s.lzsa \
|
||||||
gen_door_closed_n.lzsa gen_door_open_n.lzsa gen_door_s.lzsa \
|
gen_door_closed_n.lzsa gen_door_open_n.lzsa gen_door_s.lzsa \
|
||||||
green_steps6_n.lzsa green_steps6_w.lzsa \
|
green_steps6_n.lzsa green_steps6_w.lzsa \
|
||||||
tower1_trail_w.lzsa tower1_trail_e.lzsa \
|
tower1_trail_w.lzsa tower1_trail_e.lzsa \
|
||||||
@ -25,6 +26,8 @@ generator_graphics.inc: \
|
|||||||
echo "green_house_e_lzsa: .incbin \"green_house_e.lzsa\"" >> generator_graphics.inc
|
echo "green_house_e_lzsa: .incbin \"green_house_e.lzsa\"" >> generator_graphics.inc
|
||||||
echo "green_steps1_n_lzsa: .incbin \"green_steps1_n.lzsa\"" >> generator_graphics.inc
|
echo "green_steps1_n_lzsa: .incbin \"green_steps1_n.lzsa\"" >> generator_graphics.inc
|
||||||
echo "green_steps1_s_lzsa: .incbin \"green_steps1_s.lzsa\"" >> generator_graphics.inc
|
echo "green_steps1_s_lzsa: .incbin \"green_steps1_s.lzsa\"" >> generator_graphics.inc
|
||||||
|
echo "green_steps3_n_lzsa: .incbin \"green_steps3_n.lzsa\"" >> generator_graphics.inc
|
||||||
|
echo "green_steps3_s_lzsa: .incbin \"green_steps3_s.lzsa\"" >> generator_graphics.inc
|
||||||
echo "gen_door_closed_n_lzsa: .incbin \"gen_door_closed_n.lzsa\"" >> generator_graphics.inc
|
echo "gen_door_closed_n_lzsa: .incbin \"gen_door_closed_n.lzsa\"" >> generator_graphics.inc
|
||||||
echo "gen_door_open_n_lzsa: .incbin \"gen_door_open_n.lzsa\"" >> generator_graphics.inc
|
echo "gen_door_open_n_lzsa: .incbin \"gen_door_open_n.lzsa\"" >> generator_graphics.inc
|
||||||
echo "gen_door_s_lzsa: .incbin \"gen_door_s.lzsa\"" >> generator_graphics.inc
|
echo "gen_door_s_lzsa: .incbin \"gen_door_s.lzsa\"" >> generator_graphics.inc
|
||||||
|
BIN
mist/graphics_generator/green_steps3_n.png
Normal file
BIN
mist/graphics_generator/green_steps3_n.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 834 B |
BIN
mist/graphics_generator/green_steps3_s.png
Normal file
BIN
mist/graphics_generator/green_steps3_s.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
@ -6,7 +6,7 @@
|
|||||||
locations:
|
locations:
|
||||||
.word location0, location1, location2, location3
|
.word location0, location1, location2, location3
|
||||||
.word location4, location5, location6, location7
|
.word location4, location5, location6, location7
|
||||||
.word location8
|
.word location8, location9
|
||||||
|
|
||||||
; GEN_GREEN_SHACK
|
; GEN_GREEN_SHACK
|
||||||
location0:
|
location0:
|
||||||
@ -31,8 +31,8 @@ location0:
|
|||||||
|
|
||||||
; GEN_GREEN_STEPS1 -- green shack steps 1
|
; GEN_GREEN_STEPS1 -- green shack steps 1
|
||||||
location1:
|
location1:
|
||||||
.byte GEN_GREEN_STEPS6 ; north exit
|
.byte GEN_GREEN_STEPS3 ; north exit
|
||||||
.byte GEN_GREEN_SHACK ; south exit
|
.byte GEN_GREEN_SHACK ; south exit
|
||||||
.byte $ff ; east exit
|
.byte $ff ; east exit
|
||||||
.byte $ff ; west exit
|
.byte $ff ; west exit
|
||||||
.byte DIRECTION_N ; north exit_dir
|
.byte DIRECTION_N ; north exit_dir
|
||||||
@ -49,18 +49,18 @@ location1:
|
|||||||
; GEN_GREEN_STEPS6 -- green shack steps 6
|
; GEN_GREEN_STEPS6 -- green shack steps 6
|
||||||
location2:
|
location2:
|
||||||
.byte GEN_GENERATOR_DOOR ; north exit
|
.byte GEN_GENERATOR_DOOR ; north exit
|
||||||
.byte $ff ; south exit
|
.byte GEN_GREEN_STEPS3 ; south exit
|
||||||
.byte $ff ; east exit
|
.byte $ff ; east exit
|
||||||
.byte GEN_GREEN_STEPS1 ; west exit
|
.byte $ff ; west exit
|
||||||
.byte DIRECTION_N ; north exit_dir
|
.byte DIRECTION_N ; north exit_dir
|
||||||
.byte $ff ; south exit_dir
|
.byte DIRECTION_S ; south exit_dir
|
||||||
.byte $ff ; east exit_dir
|
.byte $ff ; east exit_dir
|
||||||
.byte DIRECTION_S ; west exit_dir
|
.byte $ff ; west exit_dir
|
||||||
.word green_steps6_n_lzsa ; north bg
|
.word green_steps6_n_lzsa ; north bg
|
||||||
.word $0000 ; south bg
|
.word green_steps6_w_lzsa ; south bg
|
||||||
.word $0000 ; east bg
|
.word $0000 ; east bg
|
||||||
.word green_steps6_w_lzsa ; west bg
|
.word $0000 ; west bg
|
||||||
.byte BG_NORTH | BG_WEST
|
.byte BG_NORTH | BG_SOUTH
|
||||||
.byte $ff
|
.byte $ff
|
||||||
|
|
||||||
; GEN_GENERATOR_DOOR -- generator room door
|
; GEN_GENERATOR_DOOR -- generator room door
|
||||||
@ -70,7 +70,7 @@ location3:
|
|||||||
.byte $ff ; east exit
|
.byte $ff ; east exit
|
||||||
.byte $ff ; west exit
|
.byte $ff ; west exit
|
||||||
.byte $ff ; north exit_dir
|
.byte $ff ; north exit_dir
|
||||||
.byte DIRECTION_W ; south exit_dir
|
.byte DIRECTION_S ; south exit_dir
|
||||||
.byte $ff ; east exit_dir
|
.byte $ff ; east exit_dir
|
||||||
.byte $ff ; west exit_dir
|
.byte $ff ; west exit_dir
|
||||||
.word gen_door_closed_n_lzsa ; north bg
|
.word gen_door_closed_n_lzsa ; north bg
|
||||||
@ -181,3 +181,19 @@ location8:
|
|||||||
.byte 10,18 ; special y
|
.byte 10,18 ; special y
|
||||||
.word circuit_breaker-1 ; special function
|
.word circuit_breaker-1 ; special function
|
||||||
|
|
||||||
|
; GEN_GREEN_STEPS3 -- green shack steps 3
|
||||||
|
location9:
|
||||||
|
.byte GEN_GREEN_STEPS6 ; north exit
|
||||||
|
.byte GEN_GREEN_STEPS1 ; 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 green_steps3_n_lzsa ; north bg
|
||||||
|
.word green_steps3_s_lzsa ; south bg
|
||||||
|
.word $0000 ; east bg
|
||||||
|
.word $0000 ; west bg
|
||||||
|
.byte BG_NORTH | BG_SOUTH
|
||||||
|
.byte $ff
|
||||||
|
Loading…
x
Reference in New Issue
Block a user