mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 17:29:49 +00:00
ootw: c5: add level5 (this is probably a mistake)
This commit is contained in:
parent
5450e1d92e
commit
6e823f3862
13
ootw/door.s
13
ootw/door.s
@ -138,3 +138,16 @@ door_closing_sprite2:
|
||||
.byte $00
|
||||
.byte $00
|
||||
|
||||
|
||||
door_exploded_sprite:
|
||||
.byte 1,10
|
||||
.byte $00
|
||||
.byte $A5
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $AA
|
||||
.byte $A5
|
||||
|
@ -18,9 +18,10 @@
|
||||
130 PRINT "2). START AT CHECKPOINT 2 (RAGE)"
|
||||
135 PRINT "3). START AT CHECKPOINT 3 (VENT)"
|
||||
135 PRINT "4). START AT CHECKPOINT 4 (RCHG)"
|
||||
135 PRINT "5). START AT CHECKPOINT 5 (CAVE)"
|
||||
140 INPUT A
|
||||
150 IF A < 0 OR A > 4 THEN 5
|
||||
155 IF A=1 OR A=2 OR A=3 OR A=4 THEN GOSUB 300
|
||||
150 IF A < 0 OR A > 5 THEN 5
|
||||
155 IF A=1 OR A=2 OR A=3 OR A=4 OR A=5 THEN GOSUB 300
|
||||
160 POKE 5,A
|
||||
200 PRINT CHR$ (4)"BRUN LOADER"
|
||||
300 HOME
|
||||
|
@ -99,6 +99,7 @@ filenames_low:
|
||||
.byte <ootw_c2_filename
|
||||
.byte <ootw_c3_filename
|
||||
.byte <ootw_c4_filename
|
||||
.byte <ootw_c5_filename
|
||||
|
||||
filenames_high:
|
||||
.byte >intro_filename
|
||||
@ -106,6 +107,7 @@ filenames_high:
|
||||
.byte >ootw_c2_filename
|
||||
.byte >ootw_c3_filename
|
||||
.byte >ootw_c4_filename
|
||||
.byte >ootw_c5_filename
|
||||
|
||||
intro_filename:
|
||||
.byte "INTRO",0
|
||||
@ -122,6 +124,9 @@ ootw_c3_filename:
|
||||
ootw_c4_filename:
|
||||
.byte "OOTW_C4",0
|
||||
|
||||
ootw_c5_filename:
|
||||
.byte "OOTW_C5",0
|
||||
|
||||
|
||||
|
||||
;unhook DOS and build nibble table
|
||||
|
18
ootw/ootw_graphics/l5cave/Makefile
Normal file
18
ootw/ootw_graphics/l5cave/Makefile
Normal file
@ -0,0 +1,18 @@
|
||||
include ../../../Makefile.inc
|
||||
|
||||
PNG2RLE = ../../../gr-utils/png2rle
|
||||
PNG2LZ4 = ../../../gr-utils/png2lz4
|
||||
|
||||
all: ootw_c5_cave.inc
|
||||
|
||||
#####
|
||||
|
||||
ootw_c5_cave.inc: $(PNG2RLE) \
|
||||
entrance_cave.png
|
||||
$(PNG2RLE) asm entrance_cave.png entrance_rle > ootw_c5_cave.inc
|
||||
|
||||
#####
|
||||
|
||||
clean:
|
||||
rm -f *~ *.o *.lst *.lzz *.inc
|
||||
|
BIN
ootw/ootw_graphics/l5cave/entrance_cave.png
Normal file
BIN
ootw/ootw_graphics/l5cave/entrance_cave.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 345 B |
Loading…
Reference in New Issue
Block a user