diff --git a/another_myst/anothermist.s b/another_myst/anothermist.s index e8ac4de9..3c54ed0f 100644 --- a/another_myst/anothermist.s +++ b/another_myst/anothermist.s @@ -10,6 +10,11 @@ .include "zp.inc" .include "hardware.inc" + +another_mist: + + + ending: ;========================= @@ -89,73 +94,17 @@ repeat_ending: ;============================ - ;================== - ; bath - ;================== - -; lda #>(bath_rle) -; sta GBASH -; lda #<(bath_rle) -; sta GBASL -; lda #$c ; load image off-screen $c00 -; jsr load_rle_gr - - -; jsr gr_copy_to_current -; jsr page_flip - -; jsr wait_until_keypressed - - ;================== - ; battle - ;================== - -; lda #>(battle_rle) -; sta GBASH -; lda #<(battle_rle) -; sta GBASL -; lda #$c ; load image off-screen $c00 -; jsr load_rle_gr - - -; jsr gr_copy_to_current -; jsr page_flip - -; jsr wait_until_keypressed - - ;================== - ; grabbed - ;================== - -; lda #>(grabbed_rle) -; sta GBASH -; lda #<(grabbed_rle) -; sta GBASL -; lda #$c ; load image off-screen $c00 -; jsr load_rle_gr - - -; jsr gr_copy_to_current -; jsr page_flip - -; jsr wait_until_keypressed - ;=========================== ; ending sequence ;============================ - - - - - ;========================= - ; set up bg + ; set up myst bg ;========================= - lda #>(sky_bg_rle) + lda #>(east_top_w_rle) sta GBASH - lda #<(sky_bg_rle) + lda #<(east_top_w_rle) sta GBASL lda #$0c ; load image off-screen $c00 jsr load_rle_gr @@ -238,6 +187,18 @@ cli_smc: ldx #50 jsr long_wait + ;========================= + ; set up sky bg + ;========================= + + lda #>(sky_bg_rle) + sta GBASH + lda #<(sky_bg_rle) + sta GBASL + lda #$0c ; load image off-screen $c00 + jsr load_rle_gr + + ;=================== ; onboard @@ -583,9 +544,47 @@ cli_smc: ; jsr wait_until_keypressed + ;================================== + ; switch to mixed text mode + ; print message + + bit TEXTGR + + lda DRAW_PAGE + pha + + lda #0 + sta DRAW_PAGE + + jsr clear_bottom + + lda #written_message + sta OUTH + + lda #4 + sta DRAW_PAGE + + jsr clear_bottom + + lda #written_message + sta OUTH + + + jsr move_and_print + + pla + sta DRAW_PAGE + ldx #200 jsr long_wait + ; switch back to full graphics + bit FULLGR + ;=================== ; the end08 @@ -752,7 +751,7 @@ sei_smc: ; 0123456789012345678901234567890123456789 ; DESIGNED BY ..... ERIC CHAHI ; -; ARTWORK ......... ERIC CHAHI +; ..... CYAN INC ; ; MUSIC BY ........ JEAN-FRANCOIS FREITAS ; @@ -768,7 +767,7 @@ sei_smc: credits0:.byte "",0 credits1:.byte " DESIGNED BY ..... ERIC CHAHI",0 credits2:.byte "",0 -credits3:.byte " ARTWORK ......... ERIC CHAHI",0 +credits3:.byte " ..... CYAN INC",0 credits4:.byte "",0 credits5:.byte " MUSIC BY ........ JEAN-FRANCOIS FREITAS",0 credits6:.byte "",0 @@ -810,6 +809,9 @@ end_message: .byte 6,10,"NOW GO BACK TO ANOTHER EARTH",0 .byte 5,12,"ASSUMING ATRUS FIGURES OUT HOW",0 +written_message: +.byte 8,21,"HAS NOT YET BEEN WRITTEN",0 + ;============================ ; set BASL/BASH to offset w Y gotoy: diff --git a/another_myst/ootw_graphics/Makefile b/another_myst/ootw_graphics/Makefile new file mode 100644 index 00000000..46a390fc --- /dev/null +++ b/another_myst/ootw_graphics/Makefile @@ -0,0 +1,55 @@ +include ../../Makefile.inc + +PNG2RLE = ../../gr-utils/png2rle +PNG2LZ4 = ../../gr-utils/png2lz4 + +all: ootw_c16_end.inc + +##### + +ootw_c16_end.inc: $(PNG2RLE) \ + wing_bg.png \ + left_unfurl1.png left_unfurl2.png \ + right_unfurl1.png right_unfurl2.png \ + sky_bg.png \ + rooftop00.png rooftop01.png rooftop02.png rooftop03.png onboard.png \ + flying01.png flying03.png flying05.png flying07.png flying09.png \ + flying11.png \ + the_end01.png the_end02.png the_end03.png the_end04.png the_end05.png \ + the_end06.png the_end07.png the_end08.png the_end09.png the_end10.png \ + east_top_w.png + $(PNG2RLE) asm wing_bg.png wing_bg_rle > ootw_c16_end.inc + $(PNG2RLE) asm left_unfurl1.png left_unfurl1_rle >> ootw_c16_end.inc + $(PNG2RLE) asm left_unfurl2.png left_unfurl2_rle >> ootw_c16_end.inc + $(PNG2RLE) asm right_unfurl1.png right_unfurl1_rle >> ootw_c16_end.inc + $(PNG2RLE) asm right_unfurl2.png right_unfurl2_rle >> ootw_c16_end.inc + $(PNG2RLE) asm sky_bg.png sky_bg_rle >> ootw_c16_end.inc + $(PNG2RLE) asm rooftop00.png rooftop0_rle >> ootw_c16_end.inc + $(PNG2RLE) asm rooftop01.png rooftop1_rle >> ootw_c16_end.inc + $(PNG2RLE) asm rooftop02.png rooftop2_rle >> ootw_c16_end.inc + $(PNG2RLE) asm rooftop03.png rooftop3_rle >> ootw_c16_end.inc + $(PNG2RLE) asm onboard.png onboard_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying01.png flying01_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying03.png flying03_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying05.png flying05_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying07.png flying07_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying09.png flying09_rle >> ootw_c16_end.inc + $(PNG2RLE) asm flying11.png flying11_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end01.png the_end01_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end02.png the_end02_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end03.png the_end03_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end04.png the_end04_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end05.png the_end05_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end06.png the_end06_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end07.png the_end07_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end08.png the_end08_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end09.png the_end09_rle >> ootw_c16_end.inc + $(PNG2RLE) asm the_end10.png the_end10_rle >> ootw_c16_end.inc + $(PNG2RLE) asm east_top_w.png east_top_w_rle >> ootw_c16_end.inc + + +##### + +clean: + rm -f *~ *.o *.lst *.lzz *.inc + diff --git a/another_myst/ootw_graphics/east_top_e.png b/another_myst/ootw_graphics/east_top_e.png new file mode 100644 index 00000000..8a623dfe Binary files /dev/null and b/another_myst/ootw_graphics/east_top_e.png differ diff --git a/another_myst/ootw_graphics/east_top_w.png b/another_myst/ootw_graphics/east_top_w.png new file mode 100644 index 00000000..9cbd1f9d Binary files /dev/null and b/another_myst/ootw_graphics/east_top_w.png differ diff --git a/another_myst/ootw_graphics/flying01.png b/another_myst/ootw_graphics/flying01.png new file mode 100644 index 00000000..046558e0 Binary files /dev/null and b/another_myst/ootw_graphics/flying01.png differ diff --git a/another_myst/ootw_graphics/flying03.png b/another_myst/ootw_graphics/flying03.png new file mode 100644 index 00000000..c5a39d2d Binary files /dev/null and b/another_myst/ootw_graphics/flying03.png differ diff --git a/another_myst/ootw_graphics/flying05.png b/another_myst/ootw_graphics/flying05.png new file mode 100644 index 00000000..9d3eb095 Binary files /dev/null and b/another_myst/ootw_graphics/flying05.png differ diff --git a/another_myst/ootw_graphics/flying07.png b/another_myst/ootw_graphics/flying07.png new file mode 100644 index 00000000..ad7b45fd Binary files /dev/null and b/another_myst/ootw_graphics/flying07.png differ diff --git a/another_myst/ootw_graphics/flying09.png b/another_myst/ootw_graphics/flying09.png new file mode 100644 index 00000000..335c3843 Binary files /dev/null and b/another_myst/ootw_graphics/flying09.png differ diff --git a/another_myst/ootw_graphics/flying11.png b/another_myst/ootw_graphics/flying11.png new file mode 100644 index 00000000..c99568d8 Binary files /dev/null and b/another_myst/ootw_graphics/flying11.png differ diff --git a/another_myst/ootw_graphics/left_unfurl1.png b/another_myst/ootw_graphics/left_unfurl1.png new file mode 100644 index 00000000..31c169db Binary files /dev/null and b/another_myst/ootw_graphics/left_unfurl1.png differ diff --git a/another_myst/ootw_graphics/left_unfurl2.png b/another_myst/ootw_graphics/left_unfurl2.png new file mode 100644 index 00000000..11be8479 Binary files /dev/null and b/another_myst/ootw_graphics/left_unfurl2.png differ diff --git a/another_myst/ootw_graphics/onboard.png b/another_myst/ootw_graphics/onboard.png new file mode 100644 index 00000000..36ca562d Binary files /dev/null and b/another_myst/ootw_graphics/onboard.png differ diff --git a/another_myst/ootw_graphics/ootw_c16_end.inc b/another_myst/ootw_graphics/ootw_c16_end.inc index 450178e8..76d72e60 100644 --- a/another_myst/ootw_graphics/ootw_c16_end.inc +++ b/another_myst/ootw_graphics/ootw_c16_end.inc @@ -5,55 +5,56 @@ wing_bg_rle: .byte $28 ; ysize=48 .byte $77,$77, $57,$57, $A3,$77, $A3,$55, $AC,$66, $77, $57 .byte $A6,$55, $77, $A5,$66, $77, $A3,$55, $77, $A4,$55 .byte $77,$77, $55,$55, $77, $AD,$66, $75, $A3,$55, $75 - .byte $77,$77, $A6,$66, $77, $A3,$55, $57, $A4,$55, $77,$77 + .byte $A3,$77, $A5,$66, $77, $A3,$55, $57, $A4,$55, $77,$77 .byte $75, $77,$77, $AD,$66, $67, $75, $55, $75 - .byte $A3,$77, $A6,$66, $67,$67, $77, $A6,$55, $A5,$77, $AE,$66 + .byte $A4,$77, $A5,$66, $67,$67, $77, $A6,$55, $A5,$77, $AE,$66 .byte $67, $77, $55,$55, $75, $77, $A4,$66, $A4,$76 .byte $A7,$55, $57, $A4,$77, $AF,$66, $65, $67,$67, $57 .byte $A4,$66, $A5,$77, $A8,$55, $77, $55, $77,$77, $A0,$17,$66 .byte $A3,$77, $75, $55, $75, $A7,$55, $77, $75 - .byte $77,$77, $A0,$10,$66, $77, $A4,$57, $55, $76, $A4,$77 + .byte $77,$77, $A0,$10,$66, $77,$77, $A3,$57, $55, $76, $A4,$77 .byte $55, $77, $55,$55, $57, $75, $A3,$55, $77,$77 - .byte $57,$57, $A0,$10,$66, $77, $A6,$55, $77, $55, $57 + .byte $57,$57, $A0,$10,$66, $77,$77, $A5,$55, $77, $55, $57 .byte $77, $55, $57, $76, $67, $77, $55 .byte $57, $75, $55, $A3,$57, $55, $A3,$77, $75 - .byte $55, $AB,$66, $77, $A6,$55, $77,$77, $55, $77,$77 - .byte $55,$55, $77,$77, $A3,$55, $57, $55,$55, $75, $77 - .byte $A3,$55, $57, $55, $56, $A9,$66, $77,$77, $A6,$55 - .byte $77,$77, $75, $57, $77, $75, $55, $66 - .byte $77, $A5,$55, $67,$67, $66, $A3,$55, $75, $55 - .byte $AA,$66, $77,$77, $75, $A5,$55, $77, $55, $77 - .byte $55, $77,$77, $65, $66, $67, $75, $A4,$55 - .byte $A3,$66, $55,$55, $75, $57, $55,$55, $56, $A7,$66 - .byte $77,$77, $55, $77, $A5,$55, $77, $75, $77 - .byte $55,$55, $75, $56, $66,$66, $77, $A4,$55, $56 - .byte $57, $A3,$55, $57, $77, $55, $57, $77 - .byte $65, $A5,$66, $77, $57,$57, $75, $A6,$55, $A3,$77 - .byte $55,$55, $77, $55, $A3,$66, $77, $55,$55, $75 - .byte $77, $A5,$55, $57, $77, $55, $77, $56 - .byte $76, $A4,$66, $77, $55,$55, $57, $77, $A6,$55 - .byte $A3,$77, $65, $77, $75, $A3,$66, $67, $75 - .byte $55, $77, $A7,$55, $77, $55, $A3,$77, $75 - .byte $56,$56, $66, $77, $A3,$55, $75, $65, $67 - .byte $55, $75, $77, $A4,$67, $A7,$66, $57,$57, $77 - .byte $A4,$55, $77, $75, $55, $77,$77, $A3,$55, $77 - .byte $55, $77, $55, $67, $77, $75,$75, $77 - .byte $66,$66, $65, $A4,$66, $76, $A9,$66, $77,$77, $A4,$55 - .byte $77, $55,$55, $57, $77, $A3,$55, $77, $55 - .byte $57, $F5, $A6,$66, $76, $75,$75, $55, $56 - .byte $57, $55,$55, $A9,$66, $77, $A4,$55, $57, $A3,$55 - .byte $57, $55,$55, $77, $57, $A3,$55, $A6,$66, $77 - .byte $55, $57,$57, $A5,$55, $A8,$66, $67, $77, $A8,$55 - .byte $75,$75, $57, $55,$55, $77,$77, $66, $55, $A4,$66 - .byte $77, $A3,$55, $77,$77, $75, $55,$55, $A9,$66, $67,$67 - .byte $65, $A5,$55, $75, $77,$77, $75,$75, $55, $77,$77 - .byte $66, $55,$55, $66,$66, $77, $57, $A4,$55, $77,$77 - .byte $55, $77, $AC,$66, $A5,$55, $57, $A3,$77, $A3,$55 - .byte $57, $76, $65, $A3,$66, $77, $57, $75 - .byte $A3,$55, $A3,$77, $57, $AC,$66, $A6,$55, $57,$57, $77 - .byte $A4,$55, $77, $A4,$66, $77, $55, $57, $55,$55 - .byte $65,$65, $55, $77, $55, $AC,$66 + .byte $55, $AB,$66, $77, $57, $A5,$55, $77,$77, $55 + .byte $77,$77, $55,$55, $77,$77, $A3,$55, $57, $55,$55, $75 + .byte $77, $A3,$55, $57,$57, $56, $A9,$66, $77,$77, $A6,$55 + .byte $77,$77, $75, $57, $77,$77, $55, $66, $77 + .byte $A5,$55, $67,$67, $66, $A3,$55, $75, $55,$55, $A9,$66 + .byte $77,$77, $75, $A5,$55, $77, $55, $77, $55 + .byte $77,$77, $65, $66, $67, $75, $A4,$55, $A3,$66 + .byte $55,$55, $75, $57, $55,$55, $56, $A7,$66, $77,$77 + .byte $55, $77, $A5,$55, $77, $75, $77, $55,$55 + .byte $75, $56, $66,$66, $77, $A4,$55, $56, $57 + .byte $A3,$55, $57, $77, $55, $57, $77, $65 + .byte $A5,$66, $77, $57,$57, $75, $A6,$55, $A3,$77, $55,$55 + .byte $77, $55, $A3,$66, $77, $55,$55, $75, $77 + .byte $A6,$55, $77, $55, $77, $56, $76, $A4,$66 + .byte $77, $55,$55, $57, $77, $A6,$55, $A3,$77, $65 + .byte $77, $75, $A3,$66, $67, $75, $55, $77 + .byte $A7,$55, $77, $55, $A3,$77, $75, $56,$56, $66 + .byte $77, $A4,$55, $65, $67, $55, $75, $77 + .byte $A4,$67, $A7,$66, $57,$57, $77, $A4,$55, $77, $75 + .byte $55, $77,$77, $A3,$55, $77, $55, $77, $55 + .byte $67, $77, $75,$75, $77, $66,$66, $65, $A4,$66 + .byte $76, $A9,$66, $77,$77, $A4,$55, $77, $55,$55, $57 + .byte $77, $A3,$55, $77, $55, $57, $F5, $A6,$66 + .byte $76, $75,$75, $55, $56, $57, $55,$55, $A9,$66 + .byte $77, $A4,$55, $57, $A3,$55, $57, $55,$55, $77 + .byte $57, $A3,$55, $A6,$66, $77, $55, $57,$57, $A5,$55 + .byte $A8,$66, $67, $77, $A8,$55, $75,$75, $57, $55,$55 + .byte $77,$77, $66, $55, $A4,$66, $77, $A3,$55, $77,$77 + .byte $75, $55,$55, $A9,$66, $67,$67, $65, $A5,$55, $75 + .byte $77,$77, $75,$75, $55, $77,$77, $66, $55,$55, $66,$66 + .byte $77, $57, $A4,$55, $77,$77, $55, $77, $AC,$66 + .byte $A5,$55, $57, $A3,$77, $A3,$55, $57, $76, $65 + .byte $A3,$66, $77, $57, $75, $A3,$55, $A3,$77, $57 + .byte $AC,$66, $A6,$55, $57,$57, $77, $A4,$55, $77, $A4,$66 + .byte $77, $55, $57, $55,$55, $65,$65, $55, $77 + .byte $55, $AC,$66 .byte $A1 +; cycles=35716 left_unfurl1_rle: .byte $28 ; ysize=48 .byte $A0,$20,$AA, $0A,$0A, $A0,$26,$AA, $00,$00, $A0,$26,$AA, $00,$00, $0A .byte $A0,$25,$AA, $A3,$00, $A0,$24,$AA, $A4,$00, $A0,$24,$AA, $A4,$00, $A0,$24,$AA @@ -70,50 +71,52 @@ left_unfurl1_rle: .byte $28 ; ysize=48 .byte $00,$00, $11,$11, $A3,$00, $11,$11, $A0,$1F,$AA, $00,$00, $11,$11 .byte $A3,$00, $11,$11, $A0,$1F,$AA, $00,$00, $11,$11, $A3,$00, $11,$11, $A0,$01,$AA .byte $A1 +; cycles=1842 left_unfurl2_rle: .byte $28 ; ysize=48 .byte $AF,$AA, $0A, $A5,$00, $A0,$20,$AA, $0A, $A3,$00, $10,$10 .byte $00,$00, $A0,$1D,$AA, $0A,$0A, $00,$00, $10, $11, $00 .byte $11,$11, $10, $00,$00, $A0,$19,$AA, $0A,$0A, $00,$00, $10,$10 - .byte $11,$11, $01, $00, $A3,$11, $A3,$00, $A0,$16,$AA, $0A - .byte $A3,$00, $10, $A5,$11, $00, $A5,$11, $A3,$00, $A0,$13,$AA - .byte $0A, $A3,$00, $10, $A6,$11, $00, $10, $A6,$11 - .byte $00,$00, $0A, $A0,$10,$AA, $0A, $00,$00, $10,$10, $A8,$11 - .byte $00, $11,$11, $91, $A5,$11, $00,$00, $0A, $AE,$AA - .byte $00,$00, $10, $AA,$11, $00, $10, $A8,$11, $10 - .byte $00,$00, $0A, $AD,$AA, $10, $AB,$11, $01, $00 - .byte $A6,$11, $19, $A3,$11, $10, $00,$00, $0A, $AC,$AA - .byte $AC,$11, $00, $AB,$11, $99, $10, $00,$00, $0A - .byte $AB,$AA, $A3,$11, $99, $91, $A6,$11, $00, $10 - .byte $AB,$11, $19, $91, $A3,$00, $0A, $AA,$AA, $A4,$11 - .byte $99, $A5,$11, $01, $00, $AD,$11, $99, $11 - .byte $A3,$00, $0A, $A9,$AA, $A4,$11, $99, $A5,$11, $00 - .byte $A7,$11, $91, $A5,$11, $91, $99, $11, $99 - .byte $A3,$00, $A9,$AA, $A4,$11, $99, $11, $91, $11,$11 - .byte $00, $10, $A7,$11, $99, $A5,$11, $19, $11,$11 - .byte $19, $91, $A3,$00, $0A, $A7,$AA, $A6,$11, $99 - .byte $91, $01, $00, $A8,$11, $19,$19, $91, $A6,$11 - .byte $91, $99, $11, $A3,$00, $0A, $A6,$AA, $A6,$11 - .byte $19, $11, $00, $AB,$11, $99, $11,$11, $99 - .byte $A3,$11, $19, $99, $11, $10, $A3,$00, $A6,$AA - .byte $A4,$11, $99, $11,$11, $00, $10, $99, $11 - .byte $91, $A6,$11, $19, $11, $99, $AA,$11, $A4,$00 - .byte $0A, $A4,$AA, $11,$11, $99, $A3,$11, $01, $00 - .byte $11, $19, $99,$99, $A8,$11, $19, $A4,$11, $91 - .byte $A6,$11, $A4,$00, $0A, $A5,$AA, $19,$19, $11,$11, $00 - .byte $A3,$11, $A3,$99, $AC,$11, $99, $91, $A6,$11, $A4,$00 - .byte $A6,$AA, $11,$11, $01, $90, $A3,$11, $99, $11 - .byte $99, $AC,$11, $91, $19, $91, $A5,$11, $10 - .byte $A4,$00, $A5,$AA, $11,$11, $00, $19, $99, $A4,$11 - .byte $99, $11, $99, $A4,$11, $91, $A5,$11, $99 - .byte $11, $99, $A6,$11, $10, $A4,$00, $0A, $A4,$AA - .byte $00, $10, $11, $19, $91, $19, $91 - .byte $11, $99, $11, $99, $A4,$11, $99, $A4,$11 - .byte $91, $19, $91, $19, $A7,$11, $10, $A4,$00 - .byte $A4,$AA, $A0,$01,$A0, $A3,$A1, $A0,$01,$A9, $A0,$01,$A1, $A0,$01,$A9, $A0,$01,$A1 - .byte $99, $11, $99, $A4,$11, $19,$19, $91, $A5,$11 - .byte $99, $A8,$11, $A4,$00, $AC,$AA, $A0,$02,$A1, $A7,$11, $99 - .byte $A5,$11, $99, $A9,$11, $A3,$00 + .byte $11,$11, $01, $00, $A3,$11, $10, $00,$00, $A0,$16,$AA + .byte $0A, $A3,$00, $10, $A5,$11, $00, $A5,$11, $A3,$00 + .byte $A0,$13,$AA, $0A, $A3,$00, $10, $A6,$11, $00, $10 + .byte $A6,$11, $00,$00, $0A, $A0,$10,$AA, $0A, $00,$00, $10,$10 + .byte $A8,$11, $00, $11,$11, $91, $A5,$11, $00,$00, $0A + .byte $AE,$AA, $00,$00, $10, $AA,$11, $00, $10, $A8,$11 + .byte $10, $00,$00, $0A, $AD,$AA, $10, $AB,$11, $01 + .byte $00, $A6,$11, $19, $A3,$11, $10, $00,$00, $0A + .byte $AC,$AA, $AC,$11, $00, $AB,$11, $99, $10, $00,$00 + .byte $0A, $AB,$AA, $A3,$11, $99, $91, $A6,$11, $00 + .byte $10, $AB,$11, $19, $91, $A3,$00, $0A, $AA,$AA + .byte $A4,$11, $99, $A5,$11, $01, $00, $AD,$11, $99 + .byte $11, $A3,$00, $0A, $A9,$AA, $A4,$11, $99, $A5,$11 + .byte $00, $A7,$11, $91, $A5,$11, $91, $99, $11 + .byte $99, $A3,$00, $A9,$AA, $A4,$11, $99, $11, $91 + .byte $11,$11, $00, $10, $A7,$11, $99, $A5,$11, $19 + .byte $11,$11, $19, $91, $A3,$00, $0A, $A7,$AA, $A6,$11 + .byte $99, $91, $01, $00, $A8,$11, $19,$19, $91 + .byte $A6,$11, $91, $99, $11, $A3,$00, $0A, $A6,$AA + .byte $A6,$11, $19, $11, $00, $AB,$11, $99, $11,$11 + .byte $99, $A3,$11, $19, $99, $11, $10, $A3,$00 + .byte $A6,$AA, $A4,$11, $99, $11,$11, $00, $10, $99 + .byte $11, $91, $A6,$11, $19, $11, $99, $AA,$11 + .byte $A4,$00, $0A, $A4,$AA, $11,$11, $99, $A3,$11, $01 + .byte $00, $11, $19, $99,$99, $A8,$11, $19, $A4,$11 + .byte $91, $A6,$11, $A4,$00, $0A, $A5,$AA, $19,$19, $11,$11 + .byte $00, $A3,$11, $A3,$99, $AC,$11, $99, $91, $A6,$11 + .byte $A4,$00, $A6,$AA, $11,$11, $01, $90, $A3,$11, $99 + .byte $11, $99, $AC,$11, $91, $19, $91, $A5,$11 + .byte $10, $A4,$00, $A5,$AA, $11,$11, $00, $19, $99 + .byte $A4,$11, $99, $11, $99, $A4,$11, $91, $A5,$11 + .byte $99, $11, $99, $A6,$11, $10, $A4,$00, $0A + .byte $A4,$AA, $00, $10, $11, $19, $91, $19 + .byte $91, $11, $99, $11, $99, $A4,$11, $99 + .byte $A4,$11, $91, $19, $91, $19, $A7,$11, $10 + .byte $A4,$00, $A4,$AA, $A0,$01,$A0, $A3,$A1, $A0,$01,$A9, $A0,$01,$A1, $A0,$01,$A9 + .byte $A0,$01,$A1, $99, $11, $99, $A4,$11, $19,$19, $91 + .byte $A5,$11, $99, $A8,$11, $A4,$00, $AC,$AA, $A0,$02,$A1, $A7,$11 + .byte $99, $A5,$11, $99, $A9,$11, $A3,$00 .byte $A1 +; cycles=36174 right_unfurl1_rle: .byte $28 ; ysize=48 .byte $A6,$AA, $A3,$0A, $A0,$25,$AA, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA .byte $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$24,$AA, $A4,$00 @@ -130,6 +133,7 @@ right_unfurl1_rle: .byte $28 ; ysize=48 .byte $A0,$20,$AA, $11,$11, $00,$00, $11,$11, $00,$00, $A0,$1F,$AA, $A3,$11 .byte $00,$00, $11,$11, $00,$00, $A0,$1E,$AA .byte $A1 +; cycles=913 right_unfurl2_rle: .byte $28 ; ysize=48 .byte $AE,$AA, $00,$00, $0A, $A0,$25,$AA, $A4,$00, $0A, $A0,$23,$AA .byte $A3,$00, $10, $00,$00, $A0,$21,$AA, $11, $A3,$00, $01 @@ -177,6 +181,7 @@ right_unfurl2_rle: .byte $28 ; ysize=48 .byte $99, $A7,$11, $91, $99, $A4,$11, $10, $00 .byte $AC,$11 .byte $A1 +; cycles=29797 sky_bg_rle: .byte $28 ; ysize=48 .byte $AF,$77, $55, $AA,$77, $A8,$66, $A8,$77, $55, $A4,$77 .byte $55, $A7,$77, $55, $77,$77, $55, $A3,$77, $55 @@ -229,102 +234,100 @@ sky_bg_rle: .byte $28 ; ysize=48 .byte $F7, $A0,$15,$66, $65, $A8,$55, $57, $A4,$77, $55 .byte $77,$77, $55, $FF, $A0,$15,$66, $AA,$55 .byte $A1 +; cycles=1019 rooftop0_rle: .byte $28 ; ysize=48 - .byte $A0,$90,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00, $A3,$AA - .byte $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90, $A0,$22,$AA - .byte $10, $99, $A0,$02,$AA, $1A, $99, $9A, $A0,$21,$AA - .byte $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA, $11 - .byte $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA, $00 - .byte $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00, $A0,$1F,$AA - .byte $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00 + .byte $A0,$FF,$AA, $A0,$3A,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00 + .byte $A3,$AA, $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90 + .byte $A0,$22,$AA, $10, $99, $A0,$02,$AA, $1A, $99, $9A + .byte $A0,$21,$AA, $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA + .byte $11, $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA + .byte $00, $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00 .byte $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99 - .byte $00, $A0,$1F,$AA, $A0,$01,$A0, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA - .byte $99, $00, $A0,$20,$AA, $11, $A4,$00, $A0,$01,$AA, $99 - .byte $A0,$1E,$AA, $0A, $00,$00, $10, $A0,$01,$A0, $00,$00, $A0,$01,$A0 - .byte $A0,$01,$AA, $99, $A0,$10,$AA, $0A, $A0,$10,$AA, $01, $1A - .byte $00,$00, $A0,$01,$AA, $9A, $99, $AF,$AA, $A0,$01,$A0, $00 - .byte $A0,$01,$A0, $A0,$10,$AA, $A0,$01,$A0, $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0 - .byte $A0,$11,$AA, $00, $A0,$12,$AA, $00,$00, $0A, $AF,$AA, $0A - .byte $A3,$00, $70, $50,$50, $F0, $C0,$C0, $CB, $0B - .byte $00, $B9, $99, $A0,$12,$00, $0A, $A4,$AA, $0A - .byte $AE,$00, $A0,$16,$50, $5A, $A0,$02,$AA, $A0,$01,$A0, $A0,$24,$00, $A0,$01,$A0 - .byte $A3,$AA, $A0,$01,$A0, $A0,$22,$00, $A6,$AA, $A0,$22,$00, $A6,$AA, $A0,$22,$00 - .byte $A3,$AA + .byte $00, $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA + .byte $99, $00, $A0,$1F,$AA, $A0,$01,$A0, $11, $A0,$01,$AA, $A3,$00 + .byte $A0,$01,$AA, $99, $00, $A0,$20,$AA, $11, $A4,$00, $A0,$01,$AA + .byte $99, $A0,$1E,$AA, $0A, $00,$00, $10, $A0,$01,$A0, $00,$00 + .byte $A0,$01,$A0, $A0,$01,$AA, $99, $A0,$21,$AA, $01, $1A, $00,$00 + .byte $A0,$01,$AA, $9A, $99, $A0,$22,$AA, $A0,$01,$A0, $A0,$01,$AA, $00 + .byte $A0,$01,$AA, $A0,$01,$A0, $AB,$AA, $FA,$FA, $7A, $FA,$FA, $A0,$14,$AA + .byte $00,$00, $0A, $A3,$AA, $A7,$DD, $FD, $FF, $7F + .byte $F7, $FF, $F2, $DD,$DD, $7D, $5D,$5D, $FD + .byte $CD,$CD, $CB, $0B, $00, $B9, $99, $A0,$15,$DD + .byte $D4,$D4, $4F, $D4,$D4, $A0,$1C,$DD .byte $A1 +; cycles=859 rooftop1_rle: .byte $28 ; ysize=48 - .byte $A0,$90,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00, $A3,$AA - .byte $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90, $A0,$22,$AA - .byte $10, $99, $A0,$02,$AA, $1A, $99, $9A, $A0,$21,$AA - .byte $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA, $11 - .byte $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA, $00 - .byte $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00, $A0,$12,$AA - .byte $FA, $5A, $AB,$AA, $00, $11, $A0,$01,$AA, $A3,$00 - .byte $A0,$01,$AA, $99, $00, $A0,$11,$AA, $A3,$FF, $AB,$AA, $00 - .byte $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00, $A0,$11,$AA - .byte $F0, $00, $A0,$01,$AF, $AB,$AA, $A0,$01,$A0, $11, $A0,$01,$AA - .byte $A3,$00, $A0,$01,$AA, $99, $00, $A0,$11,$AA, $0F, $F0 - .byte $AD,$AA, $11, $A4,$00, $A0,$01,$AA, $99, $A0,$12,$AA, $00 - .byte $FF, $AA,$AA, $0A, $00,$00, $10, $A0,$01,$A0, $00,$00 - .byte $A0,$01,$A0, $A0,$01,$AA, $99, $A0,$10,$AA, $0A, $A0,$01,$AA, $F0,$F0 - .byte $AD,$AA, $01, $1A, $00,$00, $A0,$01,$AA, $9A, $99 - .byte $AF,$AA, $A0,$01,$A0, $00, $A0,$01,$A0, $FF,$FF, $AE,$AA, $A0,$01,$A0 - .byte $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0, $A0,$11,$AA, $00, $0F - .byte $A0,$01,$AA, $0F, $AF,$AA, $00,$00, $0A, $AF,$AA, $0A - .byte $A4,$00, $50, $00,$00, $C0,$C0, $CB, $0B, $00 - .byte $B9, $99, $A0,$12,$00, $0A, $A4,$AA, $0A, $AE,$00 - .byte $A0,$16,$50, $5A, $A0,$02,$AA, $A0,$01,$A0, $A0,$24,$00, $A0,$01,$A0, $A3,$AA - .byte $A0,$01,$A0, $A0,$22,$00, $A6,$AA, $A0,$22,$00, $A6,$AA, $A0,$22,$00, $A3,$AA + .byte $A0,$FF,$AA, $A0,$3A,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00 + .byte $A3,$AA, $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90 + .byte $A0,$22,$AA, $10, $99, $A0,$02,$AA, $1A, $99, $9A + .byte $A0,$21,$AA, $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA + .byte $11, $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA + .byte $00, $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00 + .byte $AE,$AA, $FA, $5A, $AF,$AA, $00, $11, $A0,$01,$AA + .byte $A3,$00, $A0,$01,$AA, $99, $00, $AD,$AA, $A3,$FF, $AF,$AA + .byte $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00 + .byte $AD,$AA, $F0, $00, $A0,$01,$AF, $AF,$AA, $A0,$01,$A0, $11 + .byte $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00, $AD,$AA, $0F + .byte $F0, $A0,$11,$AA, $11, $A4,$00, $A0,$01,$AA, $99, $AE,$AA + .byte $00, $FF, $AE,$AA, $0A, $00,$00, $10, $A0,$01,$A0 + .byte $00,$00, $A0,$01,$A0, $A0,$01,$AA, $99, $AE,$AA, $F0,$F0, $A0,$11,$AA + .byte $01, $1A, $00,$00, $A0,$01,$AA, $9A, $99, $AE,$AA + .byte $FF,$FF, $A0,$12,$AA, $A0,$01,$A0, $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0 + .byte $AB,$AA, $FA,$FA, $7A, $0F, $A0,$01,$AA, $0F, $A0,$13,$AA + .byte $00,$00, $0A, $A3,$AA, $A7,$DD, $FD, $FF, $7F + .byte $F7, $FF, $F0, $DD, $00, $0D, $5D,$5D + .byte $FD, $CD,$CD, $CB, $0B, $00, $B9, $99 + .byte $A0,$15,$DD, $D4,$D4, $4F, $D4,$D4, $A0,$1C,$DD .byte $A1 +; cycles=859 rooftop2_rle: .byte $28 ; ysize=48 - .byte $A0,$90,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00, $A3,$AA - .byte $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90, $A0,$22,$AA - .byte $10, $99, $A0,$02,$AA, $1A, $99, $9A, $A0,$21,$AA - .byte $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA, $11 - .byte $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA, $00 - .byte $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00, $A0,$1F,$AA - .byte $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00 + .byte $A0,$FF,$AA, $A0,$3A,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00 + .byte $A3,$AA, $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90 + .byte $A0,$22,$AA, $10, $99, $A0,$02,$AA, $1A, $99, $9A + .byte $A0,$21,$AA, $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA + .byte $11, $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA + .byte $00, $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00 .byte $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99 - .byte $00, $A0,$1F,$AA, $A0,$01,$A0, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA - .byte $99, $00, $A0,$20,$AA, $11, $A4,$00, $A0,$01,$AA, $99 - .byte $A0,$1A,$AA, $0A, $FA, $A0,$02,$AA, $0A, $00,$00, $10 - .byte $A0,$01,$A0, $00,$00, $A0,$01,$A0, $A0,$01,$AA, $99, $A0,$10,$AA, $0A - .byte $A6,$AA, $0A, $00,$00, $F0, $FF, $A0,$02,$AA, $0A - .byte $A0,$01,$A0, $A0,$01,$AA, $01, $1A, $00,$00, $A0,$01,$AA, $9A - .byte $99, $AF,$AA, $A0,$01,$A0, $00, $A0,$01,$A0, $A5,$AA, $FF,$FF - .byte $A0,$01,$A0, $FF, $A7,$AA, $A0,$01,$A0, $A0,$01,$AA, $00, $A0,$01,$AA - .byte $A0,$01,$A0, $A0,$11,$AA, $00, $A4,$AA, $0A, $00, $55 - .byte $0F, $A0,$02,$AA, $FF, $A7,$AA, $00,$00, $0A, $AF,$AA - .byte $0A, $A3,$00, $70, $A4,$50, $00, $70, $40 - .byte $4B, $00,$00, $BF, $99, $A0,$10,$00, $0A, $A4,$AA - .byte $0A, $AE,$00, $A0,$16,$50, $5A, $A0,$02,$AA, $A0,$01,$A0, $A0,$24,$00 - .byte $A0,$01,$A0, $A3,$AA, $A0,$01,$A0, $A0,$22,$00, $A6,$AA, $A0,$22,$00, $A6,$AA - .byte $A0,$22,$00, $A3,$AA + .byte $00, $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA + .byte $99, $00, $A0,$1F,$AA, $A0,$01,$A0, $11, $A0,$01,$AA, $A3,$00 + .byte $A0,$01,$AA, $99, $00, $A0,$20,$AA, $11, $A4,$00, $A0,$01,$AA + .byte $99, $A9,$AA, $5A,$5A, $AC,$AA, $0A, $FA, $A5,$AA + .byte $0A, $00,$00, $10, $A0,$01,$A0, $00,$00, $A0,$01,$A0, $A0,$01,$AA + .byte $99, $A0,$14,$AA, $0A, $00,$00, $F0, $FF, $A5,$AA + .byte $0A, $A0,$01,$A0, $A0,$01,$AA, $01, $1A, $00,$00, $A0,$01,$AA + .byte $9A, $99, $A0,$14,$AA, $FF,$FF, $A0,$01,$A0, $FF, $AA,$AA + .byte $A0,$01,$A0, $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0, $AB,$AA, $FA,$FA + .byte $7A, $FA,$FA, $A3,$AA, $0A, $00, $55, $0F + .byte $A0,$02,$AA, $FF, $AA,$AA, $00,$00, $0A, $A3,$AA, $A7,$DD + .byte $FD, $FF, $7F, $F7, $FF, $F2, $A3,$DD + .byte $D0,$D0, $00, $70, $40, $4B, $00,$00, $BF + .byte $99, $A0,$15,$DD, $D4,$D4, $4F, $D4,$D4, $A0,$1C,$DD .byte $A1 +; cycles=859 rooftop3_rle: .byte $28 ; ysize=48 - .byte $A0,$90,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00, $A3,$AA - .byte $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90, $A0,$22,$AA - .byte $10, $99, $A0,$02,$AA, $1A, $99, $9A, $A0,$21,$AA - .byte $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA, $11 - .byte $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA, $00 - .byte $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00, $A0,$1F,$AA - .byte $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00 + .byte $A0,$FF,$AA, $A0,$3A,$AA, $0A, $A3,$AA, $0A, $A0,$23,$AA, $00 + .byte $A3,$AA, $00, $A0,$22,$AA, $0A, $90, $A3,$AA, $90 + .byte $A0,$22,$AA, $10, $99, $A0,$02,$AA, $1A, $99, $9A + .byte $A0,$21,$AA, $11, $99, $A0,$02,$AA, $11, $99,$99, $A0,$21,$AA + .byte $11, $99, $00, $A0,$01,$AA, $11, $99,$99, $A0,$20,$AA + .byte $00, $11, $A0,$01,$A9, $00,$00, $01, $99,$99, $00 .byte $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99 - .byte $00, $A0,$17,$AA, $0A, $0F, $0A, $A5,$AA, $A0,$01,$A0 - .byte $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00, $A0,$17,$AA - .byte $F0, $00, $F0, $A6,$AA, $11, $A4,$00, $A0,$01,$AA - .byte $99, $A0,$18,$AA, $FF, $00, $FF, $A0,$01,$AA, $5A - .byte $A0,$01,$AA, $0A, $00,$00, $10, $A0,$01,$A0, $00,$00, $A0,$01,$A0 - .byte $A0,$01,$AA, $99, $A0,$10,$AA, $0A, $A5,$AA, $FA, $A0,$01,$AC - .byte $A0,$01,$AF, $00, $A0,$01,$AF, $99, $A5,$AA, $01, $1A - .byte $00,$00, $A0,$01,$AA, $9A, $99, $AF,$AA, $A0,$01,$A0, $00 - .byte $A0,$01,$A0, $A6,$AA, $FF, $A0,$01,$AA, $FF, $A7,$AA, $A0,$01,$A0 - .byte $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0, $A0,$11,$AA, $00, $A7,$AA - .byte $0F, $A0,$01,$AA, $0F, $A8,$AA, $00,$00, $0A, $AF,$AA - .byte $0A, $A3,$00, $70, $A5,$50, $A0,$17,$00, $0A, $A4,$AA - .byte $0A, $AE,$00, $A0,$16,$50, $5A, $A0,$02,$AA, $A0,$01,$A0, $A0,$24,$00 - .byte $A0,$01,$A0, $A3,$AA, $A0,$01,$A0, $A0,$22,$00, $A6,$AA, $A0,$22,$00, $A6,$AA - .byte $A0,$22,$00, $A3,$AA + .byte $00, $A0,$1F,$AA, $00, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA + .byte $99, $00, $A0,$17,$AA, $0A, $0F, $0A, $A5,$AA + .byte $A0,$01,$A0, $11, $A0,$01,$AA, $A3,$00, $A0,$01,$AA, $99, $00 + .byte $A0,$17,$AA, $F0, $00, $F0, $A6,$AA, $11, $A4,$00 + .byte $A0,$01,$AA, $99, $A0,$18,$AA, $FF, $00, $FF, $A0,$01,$AA + .byte $5A, $A0,$01,$AA, $0A, $00,$00, $10, $A0,$01,$A0, $00,$00 + .byte $A0,$01,$A0, $A0,$01,$AA, $99, $A0,$16,$AA, $FA, $A0,$01,$AC, $A0,$01,$AF + .byte $00, $A0,$01,$AF, $99, $A5,$AA, $01, $1A, $00,$00 + .byte $A0,$01,$AA, $9A, $99, $A0,$18,$AA, $FF, $A0,$01,$AA, $FF + .byte $A7,$AA, $A0,$01,$A0, $A0,$01,$AA, $00, $A0,$01,$AA, $A0,$01,$A0, $AB,$AA + .byte $FA,$FA, $7A, $FA,$FA, $A9,$AA, $0F, $A0,$01,$AA, $0F + .byte $A8,$AA, $00,$00, $0A, $A3,$AA, $A7,$DD, $FD, $FF + .byte $7F, $F7, $FF, $F2, $AA,$DD, $00, $5D + .byte $00, $A0,$15,$DD, $D4,$D4, $4F, $D4,$D4, $A0,$1C,$DD .byte $A1 +; cycles=859 onboard_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$2C,$AA, $0A, $A0,$26,$AA, $A3,$00, $A0,$24,$AA, $0A .byte $A3,$00, $A0,$1E,$AA, $FA, $A5,$AA, $A4,$00, $0A, $A0,$1B,$AA @@ -347,12 +350,13 @@ onboard_rle: .byte $28 ; ysize=48 .byte $10, $AC,$11, $10, $AF,$00, $0F, $A4,$FF, $A5,$00 .byte $10, $A7,$11 .byte $A1 +; cycles=2905 flying01_rle: .byte $28 ; ysize=48 .byte $A0,$D7,$AA, $0A, $A8,$AA, $0A, $00, $A0,$1C,$AA, $00,$00 .byte $0A, $A6,$AA, $0A, $A3,$00, $0A, $A0,$18,$AA, $00,$00 .byte $90, $99, $00, $0A, $A0,$01,$AA, $97, $07 - .byte $A0,$02,$AA, $00, $11,$11, $10, $00, $0A, $A0,$15,$AA - .byte $0A, $00, $11,$11, $99,$99, $11, $00, $0A + .byte $A0,$02,$AA, $00, $A3,$11, $00, $0A, $A0,$15,$AA, $0A + .byte $00, $10, $11, $99,$99, $11, $00, $0A .byte $B9, $0B, $A0,$01,$AA, $00,$00, $A4,$11, $10, $00 .byte $0A, $A0,$11,$AA, $0A, $00, $10, $A4,$11, $99 .byte $11, $90, $00, $0B, $00, $0A, $00 @@ -365,47 +369,62 @@ flying01_rle: .byte $28 ; ysize=48 .byte $A3,$00, $AA,$AA, $11, $00, $AC,$AA, $00, $11 .byte $A0,$01,$A1, $AA,$AA, $A3,$00, $AA,$AA, $A0,$01,$A1, $10, $0A .byte $AB,$AA, $00, $A0,$01,$A1, $AB,$AA, $00,$00, $AC,$AA, $A0,$01,$A1 - .byte $00, $AA,$AA, $0A, $A0,$01,$A0, $AC,$AA, $00,$00, $AD,$AA - .byte $A0,$01,$A0, $A9,$AA, $A0,$01,$A0, $00, $A0,$01,$A0, $AC,$AA, $A0,$01,$A0 - .byte $00, $A0,$17,$AA, $0A, $00, $0A, $AD,$AA, $A0,$01,$A0 - .byte $A0,$15,$AA, $0A, $A0,$20,$00, $0A,$0A, $A3,$AA, $0A, $A0,$25,$00 - .byte $0A, $A0,$01,$AA, $A0,$01,$A0, $A0,$25,$00, $A0,$01,$A0, $A0,$02,$AA, $A0,$01,$A0 - .byte $A0,$23,$00, $A0,$01,$A0, $A4,$AA, $A0,$23,$00, $A5,$AA, $A0,$23,$00, $A3,$AA + .byte $00, $A7,$AA, $8A,$8A, $FA, $4A, $A0,$01,$A0, $AC,$AA + .byte $00,$00, $AD,$AA, $A0,$01,$A0, $A5,$AA, $DA, $08, $A3,$88 + .byte $08, $00, $08, $AB,$AA, $A0,$01,$A0, $00, $A0,$13,$AA + .byte $77, $78, $80, $D0, $70, $DD,$DD, $A0,$01,$A7 + .byte $AC,$AA, $A0,$01,$A0, $A0,$14,$AA, $A0,$01,$A7, $08, $8D, $07 + .byte $00, $A0,$01,$A8, $A9,$AA, $DA, $A0,$17,$DD, $A0,$02,$AA, $A4,$88 + .byte $A8,$AA, $DA, $A0,$19,$DD, $A0,$02,$AA, $A4,$88, $0A, $A5,$AA + .byte $DA, $A0,$1B,$DD, $A0,$01,$AA, $A5,$88, $00, $88, $A3,$0A + .byte $A0,$1D,$DD, $D8, $8D, $08, $88, $08,$08, $80 + .byte $D8, $0D,$0D, $A3,$D0, $0D, $A0,$1B,$DD, $77, $88 + .byte $80, $88, $00, $78, $DD, $55, $85 + .byte $A0,$1E,$DD .byte $A1 +; cycles=913 flying03_rle: .byte $28 ; ysize=48 .byte $A0,$FD,$AA, $0A, $A5,$AA, $7A,$7A, $A4,$AA, $0A, $00 .byte $A0,$18,$AA, $0A,$0A, $10, $90, $0A, $A3,$AA, $97 .byte $07, $A3,$AA, $00, $11,$11, $10,$10, $A3,$0A, $A0,$11,$AA .byte $0A, $10,$10, $11,$11, $19, $90, $00, $0A - .byte $A0,$01,$AA, $B0, $00, $A0,$01,$AA, $0A, $00, $A7,$11 - .byte $10,$10, $00, $0A,$0A, $AA,$AA, $00, $10, $90 - .byte $99, $A5,$11, $99,$99, $90, $0A, $A4,$00, $10 - .byte $A3,$11, $91, $A6,$11, $99, $00, $A8,$AA, $0A - .byte $00, $11,$11, $19,$19, $A5,$A1, $19, $99,$99, $90 - .byte $A3,$00, $11, $A9,$A1, $11,$11, $99,$99, $00, $A6,$AA - .byte $0A, $11,$11, $A0,$02,$A1, $AA,$AA, $A0,$01,$A1, $A3,$00, $AB,$AA - .byte $A0,$01,$A1, $11, $99, $11, $00, $A4,$AA, $00 - .byte $A0,$02,$A1, $AE,$AA, $A3,$00, $AD,$AA, $A0,$02,$A1, $10, $A0,$15,$AA - .byte $00,$00, $A0,$01,$A0, $A0,$25,$AA, $00,$00, $0A, $A0,$26,$AA, $00 - .byte $A0,$15,$AA, $A0,$01,$A0, $00, $A0,$10,$AA, $00, $A0,$16,$AA, $00 - .byte $A0,$10,$AA, $00, $A0,$15,$AA, $0A,$0A, $A0,$24,$AA, $A0,$27,$00, $0A - .byte $A0,$A0,$00 + .byte $A0,$01,$AA, $B0, $00, $A0,$01,$AA, $0A, $00, $10 + .byte $A6,$11, $10,$10, $00, $0A,$0A, $AA,$AA, $00, $10 + .byte $90, $99, $A5,$11, $99,$99, $90, $0A, $A4,$00 + .byte $10, $A3,$11, $91, $A6,$11, $99, $00, $A8,$AA + .byte $0A, $00, $11,$11, $19,$19, $A5,$A1, $19, $99,$99 + .byte $90, $A3,$00, $11, $A9,$A1, $11,$11, $99,$99, $00 + .byte $A6,$AA, $0A, $11,$11, $A0,$02,$A1, $AA,$AA, $A0,$01,$A1, $A3,$00 + .byte $AB,$AA, $A0,$01,$A1, $11, $99, $11, $00, $A4,$AA + .byte $00, $A0,$02,$A1, $AE,$AA, $A3,$00, $AD,$AA, $A0,$02,$A1, $10 + .byte $A0,$15,$AA, $00,$00, $A0,$01,$A0, $A0,$25,$AA, $00,$00, $0A, $A0,$26,$AA + .byte $00, $A0,$27,$AA, $00, $A0,$13,$AA, $88,$88, $8F, $84 + .byte $0A, $8A, $AE,$AA, $00, $A0,$13,$AA, $A3,$08, $D0,$D0 + .byte $70, $A0,$22,$AA, $88, $DD, $77, $0D, $8D + .byte $AA,$AA, $DA, $A0,$18,$DD, $80, $88, $80,$80, $A9,$AA + .byte $DA, $A0,$1A,$DD, $A4,$88, $A7,$AA, $DA, $A0,$1C,$DD, $A4,$88 + .byte $00, $8A, $A3,$AA, $DA, $A0,$1E,$DD, $A4,$88, $00 + .byte $88, $D0,$D0, $00, $0D,$0D, $A0,$1D,$DD .byte $A1 +; cycles=886 flying05_rle: .byte $28 ; ysize=48 - .byte $A0,$27,$AA, $A0,$01,$AF, $A0,$52,$AA, $0A,$0A, $A0,$21,$AA, $0A, $A6,$AA - .byte $A0,$02,$A0, $10,$10, $0A,$0A, $A0,$14,$AA, $A4,$0A, $A3,$A0, $AB,$AA - .byte $A0,$01,$A1, $11, $10,$10, $90, $0A,$0A, $AA,$AA, $0A,$0A - .byte $A3,$10, $11, $A0,$02,$A1, $A0,$11,$AA, $A0,$01,$A1, $A3,$11, $10 - .byte $0A, $A8,$AA, $0A, $10, $11,$11, $A0,$02,$A1, $A0,$17,$AA - .byte $A0,$02,$A9, $99, $00, $A0,$02,$AA, $97, $07, $A0,$02,$AA - .byte $00, $10, $11, $A0,$01,$A1, $A0,$1C,$AA, $A0,$01,$A9, $99 - .byte $00, $0A, $B9, $00, $07, $00, $11 - .byte $A0,$01,$A1, $A0,$20,$AA, $A0,$01,$A9, $90, $0B, $00, $10 - .byte $11, $A0,$01,$A1, $A0,$22,$AA, $A0,$01,$A9, $A3,$00, $A0,$25,$AA, $A3,$00 - .byte $A0,$25,$AA, $A3,$00, $A0,$25,$AA, $00,$00, $A0,$01,$A0, $A0,$25,$AA, $00,$00 - .byte $0A, $A0,$26,$AA, $00, $A0,$27,$AA, $00, $A0,$27,$AA, $A0,$01,$A0 - .byte $A0,$63,$AA, $A0,$28,$0A, $A0,$78,$00 + .byte $A0,$7A,$AA, $0A,$0A, $A0,$21,$AA, $0A, $A6,$AA, $A0,$02,$A0, $10,$10 + .byte $0A,$0A, $A0,$14,$AA, $A4,$0A, $A3,$A0, $AB,$AA, $A0,$01,$A1, $11 + .byte $10,$10, $90, $0A,$0A, $AA,$AA, $0A,$0A, $A3,$10, $11 + .byte $A0,$02,$A1, $A0,$11,$AA, $A0,$01,$A1, $A3,$11, $10, $0A, $A8,$AA + .byte $0A, $10, $11,$11, $A0,$02,$A1, $A0,$17,$AA, $A0,$02,$A9, $99 + .byte $00, $A0,$02,$AA, $97, $07, $A0,$02,$AA, $00, $10 + .byte $11, $A0,$01,$A1, $A0,$1D,$AA, $99, $00, $0A, $B9 + .byte $00, $07, $00, $11, $A0,$01,$A1, $A0,$20,$AA, $A0,$01,$A9 + .byte $90, $0B, $00, $10, $11, $A0,$01,$A1, $A0,$22,$AA + .byte $A0,$01,$A9, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA + .byte $00,$00, $A0,$01,$A0, $A0,$25,$AA, $00,$00, $0A, $A0,$26,$AA, $00 + .byte $A0,$27,$AA, $00, $A0,$27,$AA, $A0,$01,$A0, $A0,$63,$AA, $8F, $84 + .byte $0A, $8A, $AA,$AA, $A0,$1A,$DA, $08, $D0,$D0, $70 + .byte $A6,$AA, $DA,$DA, $A0,$1C,$DD, $77, $0D, $8D, $A3,$AA + .byte $DA,$DA, $A0,$20,$DD, $80,$80, $A0,$01,$AA, $DA, $A0,$24,$DD .byte $A1 +; cycles=1075 flying07_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$2C,$AA, $97, $07, $A0,$19,$AA, $A7,$0A, $10,$10 .byte $0A, $A3,$AA, $B0, $00, $A4,$AA, $0A, $10,$10 @@ -415,8 +434,9 @@ flying07_rle: .byte $28 ; ysize=48 .byte $A0,$10,$AA, $A0,$02,$A1, $A0,$01,$A9, $10, $A3,$00, $10, $A0,$01,$A1 .byte $A0,$23,$AA, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA, $A3,$00, $A0,$25,$AA .byte $A3,$00, $A0,$26,$AA, $00, $A0,$27,$AA, $00, $A0,$27,$AA, $00 - .byte $A0,$B3,$AA, $A0,$28,$0A, $A0,$28,$00 + .byte $A0,$BE,$AA, $A0,$1D,$DA, $A5,$AA, $A3,$DA, $A0,$20,$DD .byte $A1 +; cycles=967 flying09_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$2C,$AA, $97, $07, $A0,$26,$AA, $B0, $00 .byte $A0,$26,$AA, $70, $00,$00, $A0,$25,$AA, $A3,$00, $A0,$1F,$AA, $0A,$0A @@ -433,6 +453,7 @@ flying09_rle: .byte $28 ; ysize=48 .byte $AE,$AA, $00, $AE,$AA, $10, $0A, $A6,$AA, $A0,$01,$A0 .byte $A0,$01,$A1, $A0,$1F,$AA, $A0,$01,$A0, $A0,$CB,$AA .byte $A1 +; cycles=5584 flying11_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$2D,$AA, $77, $A0,$26,$AA, $09, $00, $A0,$01,$A7 .byte $A0,$25,$AA, $0A, $00, $0A, $A0,$25,$AA, $A3,$00, $A0,$24,$AA @@ -452,15 +473,18 @@ flying11_rle: .byte $28 ; ysize=48 .byte $A0,$16,$AA, $A0,$01,$A0, $11, $AF,$AA, $A0,$01,$A0, $A0,$17,$AA, $A0,$01,$A0 .byte $A7,$AA .byte $A1 +; cycles=1098 the_end01_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$CA,$AA, $0A,$0A, $A0,$01,$AA, $A3,$0A, $A0,$22,$AA, $00,$00 .byte $A0,$01,$A0, $A3,$00, $A0,$FF,$AA, $A0,$CA,$AA .byte $A1 +; cycles=5557 the_end02_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$A2,$AA, $1A, $A4,$AA, $1A, $A0,$21,$AA, $0A,$0A .byte $A4,$01, $0A, $A0,$21,$AA, $A3,$00, $A0,$01,$AA, $A3,$00, $A0,$FF,$AA .byte $A0,$CA,$AA .byte $A1 +; cycles=5557 the_end03_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$C7,$AA, $A0,$01,$A0, $00,$00, $A0,$01,$AA, $00, $A0,$01,$A0 .byte $00, $A0,$01,$A0, $00, $0A, $00, $0A, $A0,$1D,$AA @@ -468,6 +492,7 @@ the_end03_rle: .byte $28 ; ysize=48 .byte $A0,$1D,$AA, $A0,$02,$A0, $A0,$01,$AA, $A5,$A0, $A0,$01,$AA, $A0,$01,$A0, $A0,$FF,$AA .byte $A0,$A0,$AA .byte $A1 +; cycles=4423 the_end04_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$9B,$AA, $A0,$01,$A0, $00, $A0,$01,$A0, $00, $A0,$01,$AA .byte $00,$00, $A0,$01,$A0, $A3,$AA, $A4,$00, $A0,$01,$AA, $00, $A0,$01,$A0 @@ -480,6 +505,7 @@ the_end04_rle: .byte $28 ; ysize=48 .byte $00, $0A, $00, $A0,$02,$AA, $00, $0A, $A0,$01,$A0 .byte $A0,$FF,$AA, $A0,$9C,$AA .byte $A1 +; cycles=4315 the_end05_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$6F,$AA, $A3,$00, $A0,$01,$AA, $00, $A0,$01,$AA, $00 .byte $A0,$01,$AA, $A3,$00, $A6,$AA, $A3,$00, $A0,$01,$AA, $00, $A0,$02,$AA @@ -501,6 +527,7 @@ the_end05_rle: .byte $28 ; ysize=48 .byte $A3,$A0, $A6,$AA, $A3,$A0, $A0,$01,$AA, $A0,$01,$A0, $A0,$02,$AA, $A0,$01,$A0 .byte $A0,$01,$AA, $A3,$A0, $A0,$FF,$AA, $A0,$46,$AA .byte $A1 +; cycles=1993 the_end06_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$43,$AA, $A6,$00, $A0,$01,$AA, $00, $A0,$02,$AA, $00 .byte $A0,$01,$AA, $A4,$00, $A5,$AA, $A4,$00, $A0,$01,$AA, $00, $0A @@ -528,6 +555,7 @@ the_end06_rle: .byte $28 ; ysize=48 .byte $A0,$01,$A0, $A0,$01,$AA, $A3,$A0, $A6,$AA, $A3,$A0, $A0,$02,$AA, $A0,$02,$A0 .byte $A0,$02,$AA, $A0,$02,$A0, $A0,$01,$AA, $A3,$A0, $A0,$FF,$AA, $A0,$1B,$AA .byte $A1 +; cycles=832 the_end07_rle: .byte $28 ; ysize=48 .byte $A0,$FF,$AA, $A0,$19,$AA, $A5,$00, $A0,$01,$AA, $00,$00, $A0,$02,$AA, $00,$00 .byte $A0,$01,$AA, $A5,$00, $A5,$AA, $A5,$00, $A0,$01,$AA, $00,$00, $A3,$AA @@ -554,6 +582,7 @@ the_end07_rle: .byte $28 ; ysize=48 .byte $A4,$00, $A0,$01,$A0, $A0,$01,$AA, $00,$00, $A3,$AA, $00,$00, $A0,$01,$AA .byte $A3,$00, $A0,$FF,$AA, $A0,$19,$AA .byte $A1 +; cycles=778 the_end08_rle: .byte $28 ; ysize=48 .byte $A0,$C9,$AA, $0A,$0A, $A4,$AA, $0A,$0A, $A0,$01,$AA, $A7,$0A, $A8,$AA .byte $A6,$0A, $A0,$01,$AA, $0A,$0A, $A4,$AA, $0A,$0A, $A0,$01,$AA, $00,$00 @@ -581,6 +610,7 @@ the_end08_rle: .byte $28 ; ysize=48 .byte $A4,$AA, $A0,$02,$A0, $A0,$01,$AA, $A6,$A0, $A9,$AA, $A5,$A0, $A0,$02,$AA .byte $A0,$02,$A0, $A4,$AA, $A0,$02,$A0, $A0,$C8,$AA .byte $A1 +; cycles=5503 the_end09_rle: .byte $28 ; ysize=48 .byte $A0,$A4,$AA, $A3,$00, $A0,$01,$AA, $A8,$00, $AA,$AA, $A8,$00, $A0,$01,$AA .byte $A3,$00, $A6,$AA, $A3,$00, $A0,$01,$AA, $A7,$00, $A0,$01,$A0, $AA,$AA @@ -603,6 +633,7 @@ the_end09_rle: .byte $28 ; ysize=48 .byte $AA,$AA, $A8,$00, $A0,$01,$AA, $A3,$00, $A6,$AA, $A3,$00, $A0,$01,$AA .byte $A7,$00, $AB,$AA, $A7,$00, $A0,$02,$AA, $A3,$00, $A0,$A2,$AA .byte $A1 +; cycles=4477 the_end10_rle: .byte $28 ; ysize=48 .byte $AF,$55, $00, $AA,$55, $A8,$22, $A7,$55, $05, $00 .byte $05,$05, $55, $05, $00, $A7,$05, $00, $55,$55 @@ -649,3 +680,39 @@ the_end10_rle: .byte $28 ; ysize=48 .byte $05, $A4,$55, $00, $55,$55, $00, $77, $A0,$15,$22 .byte $AA,$00 .byte $A1 +; cycles=1019 +east_top_w_rle: .byte $28 ; ysize=48 + .byte $A0,$50,$66, $A0,$13,$76, $96, $56, $96, $A0,$12,$76, $A0,$14,$F7 + .byte $55, $A0,$13,$F7, $A0,$14,$FF, $95, $A0,$25,$FF, $4F, $A3,$45 + .byte $4F, $A0,$23,$FF, $A5,$94, $A0,$21,$FF, $A9,$99, $A0,$1D,$FF, $4F,$4F + .byte $A9,$44, $4F,$4F, $A0,$14,$FF, $5F,$5F, $A4,$FF, $F4, $74 + .byte $A4,$54, $A5,$04, $A3,$54, $F4, $A0,$13,$FF, $77,$77, $A5,$FF + .byte $77, $A6,$55, $56, $A5,$55, $AD,$FF, $55,$55, $5F + .byte $A3,$FF, $5F, $55, $FA, $A5,$FF, $77, $A5,$55 + .byte $85, $58, $85, $A4,$55, $AD,$FF, $55,$55, $85 + .byte $80, $8F, $EF, $57,$57, $A3,$EF, $5F,$5F, $44 + .byte $47, $45, $A4,$55, $88, $55, $88, $A4,$55 + .byte $5F,$5F, $AB,$FF, $55,$55, $88, $5E, $88, $EE + .byte $55, $77, $EE, $5E, $E5, $85, $EE + .byte $88, $6E, $E4, $A3,$44, $45, $A6,$44, $E4 + .byte $EE, $88, $E5,$E5, $55, $5E, $A7,$EE, $55,$55 + .byte $88, $55, $88, $EE, $65, $E7, $55 + .byte $85, $EE, $E8, $E6, $A3,$EE, $02,$02, $22,$22 + .byte $08, $A3,$8D, $85, $A3,$EE, $E8, $E6, $A0,$01,$AA + .byte $88, $E5, $55, $5E, $A5,$EE, $55,$55, $88 + .byte $65, $88, $A3,$EE, $55, $58, $E6, $A5,$EE + .byte $66, $A3,$50, $88, $A3,$80, $88, $A5,$EE, $EA + .byte $E8, $E6, $88, $55, $A5,$EE, $55, $65 + .byte $E6, $EE, $E6, $A3,$EE, $88, $85, $55 + .byte $5E, $A5,$EE, $66, $65,$65, $A5,$88, $A8,$EE, $E8 + .byte $55, $8E, $A4,$EE, $E6, $A7,$EE, $E8, $88 + .byte $EE, $85, $E5, $A8,$DD, $A4,$88, $4E, $A6,$EE + .byte $5E, $55, $85, $88, $AD,$EE, $66, $88,$88 + .byte $DE, $A9,$DD, $A3,$88, $44, $4E, $5E, $A3,$55 + .byte $85,$85, $EE, $E8,$E8, $AD,$EE, $E6, $88,$88, $AA,$DD + .byte $A3,$88, $44,$44, $4E, $A3,$EE, $88,$88, $A0,$12,$EE, $AB,$DD + .byte $A3,$88, $EE, $E4,$E4, $A3,$EE, $88,$88, $A0,$12,$EE, $AC,$DD + .byte $88,$88, $A0,$19,$EE, $DE, $AC,$DD, $D8, $88, $A0,$19,$EE + .byte $AE,$DD, $88, $AF,$EE + .byte $A1 +; cycles=1789 diff --git a/another_myst/ootw_graphics/right_unfurl1.png b/another_myst/ootw_graphics/right_unfurl1.png new file mode 100644 index 00000000..c6783bc5 Binary files /dev/null and b/another_myst/ootw_graphics/right_unfurl1.png differ diff --git a/another_myst/ootw_graphics/right_unfurl2.png b/another_myst/ootw_graphics/right_unfurl2.png new file mode 100644 index 00000000..21e185bb Binary files /dev/null and b/another_myst/ootw_graphics/right_unfurl2.png differ diff --git a/another_myst/ootw_graphics/rooftop00.png b/another_myst/ootw_graphics/rooftop00.png new file mode 100644 index 00000000..967c318a Binary files /dev/null and b/another_myst/ootw_graphics/rooftop00.png differ diff --git a/another_myst/ootw_graphics/rooftop01.png b/another_myst/ootw_graphics/rooftop01.png new file mode 100644 index 00000000..90c76554 Binary files /dev/null and b/another_myst/ootw_graphics/rooftop01.png differ diff --git a/another_myst/ootw_graphics/rooftop02.png b/another_myst/ootw_graphics/rooftop02.png new file mode 100644 index 00000000..dd1d0f1e Binary files /dev/null and b/another_myst/ootw_graphics/rooftop02.png differ diff --git a/another_myst/ootw_graphics/rooftop03.png b/another_myst/ootw_graphics/rooftop03.png new file mode 100644 index 00000000..8769a9a5 Binary files /dev/null and b/another_myst/ootw_graphics/rooftop03.png differ diff --git a/another_myst/ootw_graphics/sky_bg.png b/another_myst/ootw_graphics/sky_bg.png new file mode 100644 index 00000000..311829ec Binary files /dev/null and b/another_myst/ootw_graphics/sky_bg.png differ diff --git a/another_myst/ootw_graphics/the_end01.png b/another_myst/ootw_graphics/the_end01.png new file mode 100644 index 00000000..7bb9e0ad Binary files /dev/null and b/another_myst/ootw_graphics/the_end01.png differ diff --git a/another_myst/ootw_graphics/the_end02.png b/another_myst/ootw_graphics/the_end02.png new file mode 100644 index 00000000..4b20a64b Binary files /dev/null and b/another_myst/ootw_graphics/the_end02.png differ diff --git a/another_myst/ootw_graphics/the_end03.png b/another_myst/ootw_graphics/the_end03.png new file mode 100644 index 00000000..240a0669 Binary files /dev/null and b/another_myst/ootw_graphics/the_end03.png differ diff --git a/another_myst/ootw_graphics/the_end04.png b/another_myst/ootw_graphics/the_end04.png new file mode 100644 index 00000000..ee84f4ce Binary files /dev/null and b/another_myst/ootw_graphics/the_end04.png differ diff --git a/another_myst/ootw_graphics/the_end05.png b/another_myst/ootw_graphics/the_end05.png new file mode 100644 index 00000000..5bc5009c Binary files /dev/null and b/another_myst/ootw_graphics/the_end05.png differ diff --git a/another_myst/ootw_graphics/the_end06.png b/another_myst/ootw_graphics/the_end06.png new file mode 100644 index 00000000..c8668508 Binary files /dev/null and b/another_myst/ootw_graphics/the_end06.png differ diff --git a/another_myst/ootw_graphics/the_end07.png b/another_myst/ootw_graphics/the_end07.png new file mode 100644 index 00000000..7bbfe4f8 Binary files /dev/null and b/another_myst/ootw_graphics/the_end07.png differ diff --git a/another_myst/ootw_graphics/the_end08.png b/another_myst/ootw_graphics/the_end08.png new file mode 100644 index 00000000..f73456b9 Binary files /dev/null and b/another_myst/ootw_graphics/the_end08.png differ diff --git a/another_myst/ootw_graphics/the_end09.png b/another_myst/ootw_graphics/the_end09.png new file mode 100644 index 00000000..667df294 Binary files /dev/null and b/another_myst/ootw_graphics/the_end09.png differ diff --git a/another_myst/ootw_graphics/the_end10.png b/another_myst/ootw_graphics/the_end10.png new file mode 100644 index 00000000..4aa7dfaf Binary files /dev/null and b/another_myst/ootw_graphics/the_end10.png differ diff --git a/another_myst/ootw_graphics/wing_bg.png b/another_myst/ootw_graphics/wing_bg.png new file mode 100644 index 00000000..de0a2d18 Binary files /dev/null and b/another_myst/ootw_graphics/wing_bg.png differ