ootw: c1: actually put together the beast slash cutscene
this also reduces the c1 level by a few kb
@ -31,10 +31,10 @@ ootw_c1.o: ootw_c1.s \
|
||||
gr_putsprite.s gr_putsprite_flipped.s gr_putsprite_crop.s \
|
||||
gr_make_quake.s gr_overlay.s zp.inc keyboard.s \
|
||||
collision.s \
|
||||
ootw_sluggy.s ootw_beast.s \
|
||||
ootw_sluggy.s ootw_c1_beast.s \
|
||||
ootw_c1_arrival.s ootw_c1_rope.s earthquake.s ootw_c1_mesa.s \
|
||||
ootw_c1_pool.s ootw_c1_cavern.s physicist.s random16.s \
|
||||
ootw_cut_slug.s ootw_cut_beast.s \
|
||||
ootw_cut_slug.s \
|
||||
ootw_graphics/l1pool/ootw_pool.inc \
|
||||
ootw_graphics/l1underwater/ootw_underwater.inc \
|
||||
ootw_graphics/l1caves/ootw_cavern.inc \
|
||||
|
@ -8,11 +8,11 @@ Before release:
|
||||
|
||||
door explosions should be cropped
|
||||
|
||||
after teleport, re-run room boundary calcs
|
||||
when calculating room calcs, take Y position into account
|
||||
|
||||
L1 -- fix run/jumping
|
||||
L1 -- fix beast ending
|
||||
L1 -- have beast death scene
|
||||
L1 -- have beast collapse
|
||||
L1 -- fix slugs
|
||||
|
||||
L2 -- add doors
|
||||
@ -76,8 +76,6 @@ General:
|
||||
|
||||
* Movement:
|
||||
+ running: Missing one running frame (?)
|
||||
+ ability to run+jump
|
||||
+ running then crouch, you slide a bit
|
||||
|
||||
* sprites_to_draw:
|
||||
+ physicist run+jumping
|
||||
|
@ -1,261 +0,0 @@
|
||||
;=======================================
|
||||
; Setup Beast
|
||||
|
||||
; FIXME: distance for count should be related
|
||||
; to X distance behind on previous screen
|
||||
|
||||
setup_beast:
|
||||
lda BEAST_OUT
|
||||
beq setup_no_beast
|
||||
|
||||
lda #30
|
||||
sta BEAST_COUNT
|
||||
lda #B_STANDING
|
||||
sta BEAST_STATE
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq setup_beast_left
|
||||
|
||||
setup_beast_right:
|
||||
lda #248 ; -8 = 248
|
||||
sta BEAST_X
|
||||
jmp setup_no_beast
|
||||
|
||||
setup_beast_left:
|
||||
lda #41
|
||||
sta BEAST_X
|
||||
|
||||
setup_no_beast:
|
||||
rts
|
||||
|
||||
;=======================================
|
||||
; Move Beast
|
||||
;
|
||||
; FIXME: stop at edge of screen, or at physicist
|
||||
|
||||
move_beast:
|
||||
lda BEAST_STATE
|
||||
cmp #B_RUNNING
|
||||
beq move_beast_running
|
||||
cmp #B_STANDING
|
||||
beq move_beast_standing
|
||||
rts
|
||||
|
||||
;======================
|
||||
; running
|
||||
move_beast_running:
|
||||
|
||||
;=======================
|
||||
; stop at edge or at physicist
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq check_beast_left
|
||||
|
||||
check_beast_right:
|
||||
|
||||
clc
|
||||
lda BEAST_X
|
||||
adc #$80
|
||||
|
||||
cmp RIGHT_LIMIT
|
||||
bcc beast_no_stop ; (blt==bcc)
|
||||
bcs stop_beast
|
||||
|
||||
check_beast_left:
|
||||
|
||||
clc
|
||||
lda BEAST_X
|
||||
adc #$80
|
||||
|
||||
cmp LEFT_LIMIT
|
||||
bcs beast_no_stop ; (bge==bcs)
|
||||
|
||||
stop_beast:
|
||||
lda #B_STANDING
|
||||
sta BEAST_STATE
|
||||
rts
|
||||
|
||||
|
||||
|
||||
beast_no_stop:
|
||||
inc BEAST_GAIT ; cycle through animation
|
||||
|
||||
lda BEAST_GAIT
|
||||
and #$3
|
||||
cmp #$2 ; only run roughly 1/4 of time
|
||||
bne b_no_move_run
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq b_run_left
|
||||
|
||||
inc BEAST_X ; run right
|
||||
rts
|
||||
b_run_left:
|
||||
dec BEAST_X ; run left
|
||||
b_no_move_run:
|
||||
rts
|
||||
|
||||
;======================
|
||||
; standing
|
||||
|
||||
move_beast_standing:
|
||||
lda BEAST_COUNT
|
||||
beq beast_stand_done ; if 0, perma-stand
|
||||
|
||||
dec BEAST_COUNT
|
||||
bne beast_stand_done
|
||||
|
||||
lda #B_RUNNING
|
||||
sta BEAST_STATE
|
||||
|
||||
beast_stand_done:
|
||||
rts
|
||||
|
||||
;======================================
|
||||
; draw beast
|
||||
;======================================
|
||||
|
||||
draw_beast:
|
||||
|
||||
lda BEAST_STATE
|
||||
cmp #B_STANDING
|
||||
beq b_standing
|
||||
cmp #B_RUNNING
|
||||
beq b_running
|
||||
|
||||
rts
|
||||
|
||||
|
||||
;==================================
|
||||
; STANDING
|
||||
;==================================
|
||||
|
||||
b_standing:
|
||||
|
||||
lda #<beast_standing
|
||||
sta INL
|
||||
|
||||
lda #>beast_standing
|
||||
sta INH
|
||||
|
||||
jmp finally_draw_beast
|
||||
|
||||
;===============================
|
||||
; Running
|
||||
;================================
|
||||
|
||||
b_running:
|
||||
lda BEAST_GAIT
|
||||
cmp #18
|
||||
bcc brun_gait_fine ; blt
|
||||
|
||||
lda #0
|
||||
sta BEAST_GAIT
|
||||
|
||||
brun_gait_fine:
|
||||
; lsr
|
||||
and #$fe
|
||||
|
||||
tax
|
||||
|
||||
lda beast_run_progression,X
|
||||
sta INL
|
||||
|
||||
lda beast_run_progression+1,X
|
||||
sta INH
|
||||
|
||||
jmp finally_draw_beast
|
||||
|
||||
;==================================
|
||||
; COLLAPSING
|
||||
;==================================
|
||||
|
||||
;physicist_collapsing:
|
||||
|
||||
; lda GAIT
|
||||
; cmp #18
|
||||
; bne collapse_not_done
|
||||
|
||||
;really_dead:
|
||||
; lda #$ff
|
||||
; sta GAME_OVER
|
||||
; jmp finally_draw_him
|
||||
|
||||
;collapse_not_done:
|
||||
|
||||
; ldx GAIT
|
||||
|
||||
; lda collapse_progression,X
|
||||
; sta INL
|
||||
; lda collapse_progression+1,X
|
||||
; sta INH
|
||||
|
||||
; lda FRAMEL
|
||||
; and #$1f
|
||||
; bne no_collapse_progress
|
||||
|
||||
; inc GAIT
|
||||
; inc GAIT
|
||||
|
||||
;no_collapse_progress:
|
||||
|
||||
|
||||
; jmp finally_draw_him
|
||||
|
||||
|
||||
;=============================
|
||||
; Actually Draw Beast
|
||||
;=============================
|
||||
|
||||
|
||||
finally_draw_beast:
|
||||
lda BEAST_X
|
||||
sta XPOS
|
||||
|
||||
lda #26
|
||||
sec
|
||||
sbc EARTH_OFFSET ; adjust for earthquakes
|
||||
sta YPOS
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
bne b_facing_right
|
||||
|
||||
b_facing_left:
|
||||
jmp put_sprite_crop
|
||||
|
||||
b_facing_right:
|
||||
jmp put_sprite_flipped_crop
|
||||
|
||||
|
||||
|
||||
;======================================
|
||||
; Check beast limit
|
||||
;======================================
|
||||
|
||||
check_beast_limit:
|
||||
|
||||
; clc
|
||||
; lda PHYSICIST_X
|
||||
; adc #$80
|
||||
; cmp LEFT_LIMIT
|
||||
; bcs just_fine_left ; (bge==bcs)
|
||||
|
||||
;too_far_left:
|
||||
; lda #1
|
||||
; sta GAME_OVER
|
||||
; rts
|
||||
|
||||
;just_fine_left:
|
||||
|
||||
; Check right edge of screen
|
||||
|
||||
; cmp RIGHT_LIMIT
|
||||
; bcc just_fine_right ; blt
|
||||
|
||||
;too_far_right:
|
||||
; lda #2
|
||||
; sta GAME_OVER
|
||||
|
||||
;just_fine_right:
|
||||
|
||||
; rts
|
@ -34,7 +34,7 @@ ootw:
|
||||
; Exit the Pool
|
||||
;==========================
|
||||
|
||||
jsr exit_pool
|
||||
; jsr exit_pool
|
||||
|
||||
|
||||
; Initialize some variables
|
||||
@ -73,7 +73,9 @@ ootw:
|
||||
; Enter the game
|
||||
;=======================
|
||||
|
||||
jsr ootw_pool
|
||||
; jsr ootw_pool
|
||||
|
||||
jsr ootw_mesa
|
||||
|
||||
;===========================
|
||||
; quit_level
|
||||
@ -132,7 +134,7 @@ end_message:
|
||||
; movement
|
||||
.include "physicist.s"
|
||||
.include "ootw_sluggy.s"
|
||||
.include "ootw_beast.s"
|
||||
.include "ootw_c1_beast.s"
|
||||
.include "earthquake.s"
|
||||
.include "text_print.s"
|
||||
.include "gr_pageflip.s"
|
||||
@ -150,7 +152,6 @@ end_message:
|
||||
|
||||
; cutscenes
|
||||
.include "ootw_cut_slug.s"
|
||||
.include "ootw_cut_beast.s"
|
||||
|
||||
; room backgrounds
|
||||
.include "ootw_graphics/l1pool/ootw_pool.inc"
|
||||
|
380
ootw/ootw_c1_beast.s
Normal file
@ -0,0 +1,380 @@
|
||||
;=======================================
|
||||
; Setup Beast Running -- for each room
|
||||
;
|
||||
|
||||
; FIXME: distance for count should be related
|
||||
; to X distance behind on previous screen
|
||||
|
||||
setup_beast:
|
||||
lda BEAST_OUT
|
||||
beq setup_no_beast
|
||||
|
||||
lda #30
|
||||
sta BEAST_COUNT
|
||||
lda #B_STANDING
|
||||
sta BEAST_STATE
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq setup_beast_left
|
||||
|
||||
setup_beast_right:
|
||||
lda #248 ; -8 = 248
|
||||
sta BEAST_X
|
||||
jmp setup_no_beast
|
||||
|
||||
setup_beast_left:
|
||||
lda #41
|
||||
sta BEAST_X
|
||||
|
||||
setup_no_beast:
|
||||
rts
|
||||
|
||||
;=======================================
|
||||
; Move Beast
|
||||
;
|
||||
; FIXME: stop at edge of screen, or at physicist
|
||||
|
||||
move_beast:
|
||||
lda BEAST_STATE
|
||||
cmp #B_RUNNING
|
||||
beq move_beast_running
|
||||
cmp #B_STANDING
|
||||
beq move_beast_standing
|
||||
rts
|
||||
|
||||
;======================
|
||||
; running
|
||||
move_beast_running:
|
||||
|
||||
;=======================
|
||||
; stop at edge or at physicist
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq check_beast_left
|
||||
|
||||
check_beast_right:
|
||||
|
||||
clc
|
||||
lda BEAST_X
|
||||
adc #$80
|
||||
|
||||
cmp RIGHT_LIMIT
|
||||
bcc beast_no_stop ; (blt==bcc)
|
||||
bcs stop_beast
|
||||
|
||||
check_beast_left:
|
||||
|
||||
clc
|
||||
lda BEAST_X
|
||||
adc #$80
|
||||
|
||||
cmp LEFT_LIMIT
|
||||
bcs beast_no_stop ; (bge==bcs)
|
||||
|
||||
stop_beast:
|
||||
lda #B_STANDING
|
||||
sta BEAST_STATE
|
||||
rts
|
||||
|
||||
|
||||
|
||||
beast_no_stop:
|
||||
inc BEAST_GAIT ; cycle through animation
|
||||
|
||||
lda BEAST_GAIT
|
||||
and #$3
|
||||
cmp #$2 ; only run roughly 1/4 of time
|
||||
bne b_no_move_run
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
beq b_run_left
|
||||
|
||||
inc BEAST_X ; run right
|
||||
rts
|
||||
b_run_left:
|
||||
dec BEAST_X ; run left
|
||||
b_no_move_run:
|
||||
rts
|
||||
|
||||
;======================
|
||||
; standing
|
||||
|
||||
move_beast_standing:
|
||||
lda BEAST_COUNT
|
||||
beq beast_stand_done ; if 0, perma-stand
|
||||
|
||||
dec BEAST_COUNT
|
||||
bne beast_stand_done
|
||||
|
||||
lda #B_RUNNING
|
||||
sta BEAST_STATE
|
||||
|
||||
beast_stand_done:
|
||||
rts
|
||||
|
||||
;======================================
|
||||
;======================================
|
||||
; draw beast
|
||||
;======================================
|
||||
;======================================
|
||||
|
||||
draw_beast:
|
||||
|
||||
lda BEAST_STATE
|
||||
cmp #B_STANDING
|
||||
beq b_standing
|
||||
cmp #B_RUNNING
|
||||
beq b_running
|
||||
rts
|
||||
|
||||
|
||||
;==================================
|
||||
; STANDING
|
||||
;==================================
|
||||
|
||||
b_standing:
|
||||
|
||||
lda #<beast_standing
|
||||
sta INL
|
||||
|
||||
lda #>beast_standing
|
||||
sta INH
|
||||
|
||||
jmp finally_draw_beast
|
||||
|
||||
;===============================
|
||||
; Running
|
||||
;================================
|
||||
|
||||
b_running:
|
||||
lda BEAST_GAIT
|
||||
cmp #18
|
||||
bcc brun_gait_fine ; blt
|
||||
|
||||
lda #0
|
||||
sta BEAST_GAIT
|
||||
|
||||
brun_gait_fine:
|
||||
; lsr
|
||||
and #$fe
|
||||
|
||||
tax
|
||||
|
||||
lda beast_run_progression,X
|
||||
sta INL
|
||||
|
||||
lda beast_run_progression+1,X
|
||||
sta INH
|
||||
|
||||
jmp finally_draw_beast
|
||||
|
||||
|
||||
;=============================
|
||||
; Actually Draw Beast
|
||||
;=============================
|
||||
|
||||
finally_draw_beast:
|
||||
lda BEAST_X
|
||||
sta XPOS
|
||||
|
||||
lda #26
|
||||
sec
|
||||
sbc EARTH_OFFSET ; adjust for earthquakes
|
||||
sta YPOS
|
||||
|
||||
lda BEAST_DIRECTION
|
||||
bne b_facing_right
|
||||
|
||||
b_facing_left:
|
||||
jmp put_sprite_crop
|
||||
|
||||
b_facing_right:
|
||||
jmp put_sprite_flipped_crop
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
;========================
|
||||
;========================
|
||||
; beast arrival cutscene
|
||||
;========================
|
||||
;========================
|
||||
beast_arrival_cutscene:
|
||||
|
||||
;====================
|
||||
; beast dropping in
|
||||
|
||||
lda #$8
|
||||
sta DRAW_PAGE
|
||||
jsr clear_top
|
||||
|
||||
lda #<beast_background
|
||||
sta INL
|
||||
lda #>beast_background
|
||||
sta INH
|
||||
|
||||
lda #15
|
||||
sta XPOS
|
||||
|
||||
lda #10
|
||||
sta YPOS
|
||||
|
||||
jsr put_sprite
|
||||
|
||||
lda #$0
|
||||
sta DRAW_PAGE
|
||||
|
||||
jsr gr_copy_to_current
|
||||
jsr page_flip
|
||||
jsr gr_copy_to_current
|
||||
jsr page_flip
|
||||
|
||||
ldx #0
|
||||
stx CUTFRAME
|
||||
beast_loop:
|
||||
jsr gr_copy_to_current
|
||||
|
||||
ldx CUTFRAME
|
||||
|
||||
lda beast_frames,X
|
||||
sta INL
|
||||
lda beast_frames+1,X
|
||||
sta INH
|
||||
|
||||
lda #15
|
||||
sta XPOS
|
||||
|
||||
lda #10
|
||||
sta YPOS
|
||||
|
||||
jsr put_sprite
|
||||
|
||||
jsr page_flip
|
||||
|
||||
ldx #2
|
||||
beast_long_delay:
|
||||
lda #250
|
||||
jsr WAIT
|
||||
dex
|
||||
bne beast_long_delay
|
||||
|
||||
|
||||
ldx CUTFRAME
|
||||
inx
|
||||
inx
|
||||
stx CUTFRAME
|
||||
|
||||
cpx #28
|
||||
beq beast_end
|
||||
|
||||
jmp beast_loop
|
||||
|
||||
beast_end:
|
||||
|
||||
;=============================
|
||||
; Restore background to $c00
|
||||
|
||||
lda #>(cavern3_rle)
|
||||
sta GBASH
|
||||
lda #<(cavern3_rle)
|
||||
sta GBASL
|
||||
lda #$c ; load image off-screen $c00
|
||||
jmp load_rle_gr
|
||||
|
||||
beast_frames:
|
||||
.word beast_frame1 ; 0
|
||||
.word beast_frame2 ; 1
|
||||
.word beast_frame3 ; 2
|
||||
.word beast_frame4 ; 3
|
||||
.word beast_frame5 ; 4
|
||||
.word beast_frame6 ; 5
|
||||
.word beast_frame7 ; 6
|
||||
.word beast_frame8 ; 7
|
||||
.word beast_frame9 ; 8
|
||||
.word beast_frame10 ; 9
|
||||
.word beast_frame11 ; 10
|
||||
.word beast_frame12 ; 11
|
||||
.word beast_frame8 ; 12
|
||||
.word beast_frame8 ; 13
|
||||
|
||||
|
||||
|
||||
|
||||
;========================
|
||||
;========================
|
||||
; beast slash cutscene
|
||||
;========================
|
||||
;========================
|
||||
beast_slash_cutscene:
|
||||
|
||||
lda #<beast_bg_rle
|
||||
sta GBASL
|
||||
lda #>beast_bg_rle
|
||||
sta GBASH
|
||||
|
||||
lda #$c
|
||||
jsr load_rle_gr
|
||||
|
||||
ldx #0
|
||||
|
||||
beast_slash_loop:
|
||||
lda beast_slash_frames,X
|
||||
sta GBASL
|
||||
lda beast_slash_frames+1,X
|
||||
sta GBASH
|
||||
|
||||
txa
|
||||
pha
|
||||
|
||||
lda #$10
|
||||
jsr load_rle_gr
|
||||
|
||||
jsr gr_overlay
|
||||
|
||||
lda #200
|
||||
jsr WAIT
|
||||
|
||||
jsr page_flip
|
||||
|
||||
|
||||
|
||||
pla
|
||||
tax
|
||||
|
||||
inx
|
||||
inx
|
||||
cmp #40
|
||||
bne beast_slash_loop
|
||||
|
||||
beast_slash_end:
|
||||
|
||||
lda #$ff
|
||||
sta GAME_OVER
|
||||
|
||||
rts
|
||||
|
||||
|
||||
beast_slash_frames:
|
||||
.word beast_slash07_rle ; 0
|
||||
.word beast_slash08_rle ; 1
|
||||
.word beast_slash09_rle ; 2
|
||||
.word beast_slash10_rle ; 3
|
||||
.word beast_slash11_rle ; 4
|
||||
.word beast_slash12_rle ; 5
|
||||
.word beast_slash13_rle ; 6
|
||||
.word beast_slash14_rle ; 7
|
||||
.word beast_slash15_rle ; 8
|
||||
.word beast_slash16_rle ; 9
|
||||
.word beast_slash17_rle ; 10
|
||||
.word beast_slash18_rle ; 11
|
||||
.word beast_slash19_rle ; 12
|
||||
.word beast_slash20_rle ; 13
|
||||
.word beast_slash20_rle ; 14
|
||||
.word beast_slash20_rle ; 15
|
||||
.word beast_slash20_rle ; 16
|
||||
.word beast_slash20_rle ; 17
|
||||
.word beast_slash20_rle ; 18
|
||||
.word beast_slash20_rle ; 19
|
||||
.word beast_slash20_rle ; 20
|
||||
|
@ -238,7 +238,8 @@ trigger_beast:
|
||||
sta RIGHT_LIMIT ; this is mostly for testing
|
||||
sta RIGHT_WALK_LIMIT
|
||||
|
||||
jsr beast_cutscene
|
||||
; show cutscene of arrival
|
||||
jsr beast_arrival_cutscene
|
||||
|
||||
jmp not_done_mesa
|
||||
|
||||
|
@ -1,100 +0,0 @@
|
||||
|
||||
beast_cutscene:
|
||||
|
||||
;====================
|
||||
; beast dropping in
|
||||
|
||||
lda #$8
|
||||
sta DRAW_PAGE
|
||||
jsr clear_top
|
||||
|
||||
lda #<beast_background
|
||||
sta INL
|
||||
lda #>beast_background
|
||||
sta INH
|
||||
|
||||
lda #15
|
||||
sta XPOS
|
||||
|
||||
lda #10
|
||||
sta YPOS
|
||||
|
||||
jsr put_sprite
|
||||
|
||||
lda #$0
|
||||
sta DRAW_PAGE
|
||||
|
||||
jsr gr_copy_to_current
|
||||
jsr page_flip
|
||||
jsr gr_copy_to_current
|
||||
jsr page_flip
|
||||
|
||||
ldx #0
|
||||
stx CUTFRAME
|
||||
beast_loop:
|
||||
jsr gr_copy_to_current
|
||||
|
||||
ldx CUTFRAME
|
||||
|
||||
lda beast_frames,X
|
||||
sta INL
|
||||
lda beast_frames+1,X
|
||||
sta INH
|
||||
|
||||
lda #15
|
||||
sta XPOS
|
||||
|
||||
lda #10
|
||||
sta YPOS
|
||||
|
||||
jsr put_sprite
|
||||
|
||||
jsr page_flip
|
||||
|
||||
ldx #2
|
||||
beast_long_delay:
|
||||
lda #250
|
||||
jsr WAIT
|
||||
dex
|
||||
bne beast_long_delay
|
||||
|
||||
|
||||
ldx CUTFRAME
|
||||
inx
|
||||
inx
|
||||
stx CUTFRAME
|
||||
|
||||
cpx #28
|
||||
beq beast_end
|
||||
|
||||
jmp beast_loop
|
||||
|
||||
beast_end:
|
||||
|
||||
;=============================
|
||||
; Restore background to $c00
|
||||
|
||||
lda #>(cavern3_rle)
|
||||
sta GBASH
|
||||
lda #<(cavern3_rle)
|
||||
sta GBASL
|
||||
lda #$c ; load image off-screen $c00
|
||||
jmp load_rle_gr
|
||||
|
||||
beast_frames:
|
||||
.word beast_frame1 ; 0
|
||||
.word beast_frame2 ; 1
|
||||
.word beast_frame3 ; 2
|
||||
.word beast_frame4 ; 3
|
||||
.word beast_frame5 ; 4
|
||||
.word beast_frame6 ; 5
|
||||
.word beast_frame7 ; 6
|
||||
.word beast_frame8 ; 7
|
||||
.word beast_frame9 ; 8
|
||||
.word beast_frame10 ; 9
|
||||
.word beast_frame11 ; 10
|
||||
.word beast_frame12 ; 11
|
||||
.word beast_frame8 ; 12
|
||||
.word beast_frame8 ; 13
|
||||
|
||||
|
@ -8,24 +8,27 @@ all: ootw_beast_end.inc
|
||||
#####
|
||||
|
||||
ootw_beast_end.inc: $(PNG2RLE) \
|
||||
beast_bg.png \
|
||||
beast_slash07.png beast_slash08.png beast_slash09.png \
|
||||
beast_slash10.png beast_slash11.png beast_slash12.png \
|
||||
beast_slash13.png beast_slash14.png beast_slash15.png \
|
||||
beast_slash16.png beast_slash17.png beast_slash18.png \
|
||||
beast_slash19.png
|
||||
$(PNG2RLE) asm beast_slash07.png beast_slash07_rle > ootw_beast_end.inc
|
||||
beast_slash19.png beast_slash20.png
|
||||
$(PNG2RLE) asm beast_bg.png beast_bg_rle > ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash07.png beast_slash07_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash08_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash09_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash10_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash11_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash12_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash13_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash14_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash15_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash16_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash17_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash18_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash08.png beast_slash19_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash09.png beast_slash09_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash10.png beast_slash10_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash11.png beast_slash11_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash12.png beast_slash12_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash13.png beast_slash13_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash14.png beast_slash14_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash15.png beast_slash15_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash16.png beast_slash16_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash17.png beast_slash17_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash18.png beast_slash18_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash19.png beast_slash19_rle >> ootw_beast_end.inc
|
||||
$(PNG2RLE) asm beast_slash20.png beast_slash20_rle >> ootw_beast_end.inc
|
||||
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 483 B After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 500 B After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 530 B After Width: | Height: | Size: 3.2 KiB |
Before Width: | Height: | Size: 546 B After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 529 B After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 379 B After Width: | Height: | Size: 2.4 KiB |
Before Width: | Height: | Size: 308 B After Width: | Height: | Size: 2.3 KiB |
BIN
ootw/ootw_graphics/l1end_scenes/beast_slash20.png
Normal file
After Width: | Height: | Size: 1013 B |
@ -1,4 +1,4 @@
|
||||
beast_slash07_rle: .byte $28 ; ysize=48
|
||||
beast_bg_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
@ -13,457 +13,152 @@ beast_slash07_rle: .byte $28 ; ysize=48
|
||||
.byte $55, $A8,$22, $55,$55, $88, $A0,$19,$66, $68, $86
|
||||
.byte $68, $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88
|
||||
.byte $66, $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88
|
||||
.byte $66, $55, $A8,$22, $55,$55, $88, $AC,$66, $A4,$00
|
||||
.byte $AA,$66, $88, $66, $55,$55, $A7,$22, $55,$55, $88,$88
|
||||
.byte $86, $A9,$66, $06, $A5,$00, $A8,$66, $86, $88
|
||||
.byte $86, $55,$55, $A7,$22, $A3,$55, $88,$88, $86, $A7,$66
|
||||
.byte $06, $A6,$00, $06, $A6,$66, $86, $88, $66
|
||||
.byte $88, $55,$55, $A7,$22, $25, $A3,$55, $A3,$88, $86
|
||||
.byte $A4,$66, $06, $A3,$00, $10, $A4,$00, $06, $A4,$66
|
||||
.byte $A3,$88, $66, $88, $55, $A9,$22, $A3,$55, $28
|
||||
.byte $A4,$88, $66,$66, $06, $00, $60,$60, $A3,$00, $01
|
||||
.byte $A3,$00, $06, $66, $86, $A4,$88, $86, $55,$55
|
||||
.byte $AA,$22, $55,$55, $22, $58, $A4,$88, $06, $00
|
||||
.byte $60, $66,$66, $A4,$00, $60, $66, $60, $00,$00
|
||||
.byte $A6,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $88,$88, $80,$80, $A4,$86, $A3,$00, $86,$86, $88
|
||||
.byte $80, $20, $A4,$58, $A3,$55, $AB,$22, $72, $25
|
||||
.byte $22, $A4,$55, $A7,$58, $A3,$00, $58, $A3,$55, $22
|
||||
.byte $A5,$55, $25, $A4,$22, $72,$72, $77, $A5,$22, $77
|
||||
.byte $A3,$22, $AA,$55, $50, $20,$20, $A3,$25, $AC,$22, $A3,$77
|
||||
.byte $A3,$22, $72, $A3,$77, $A3,$22, $A5,$25, $72, $A0,$13,$22
|
||||
.byte $72, $A4,$77, $72,$72, $A5,$77, $A8,$72, $77, $A0,$12,$72
|
||||
.byte $A0,$56,$77
|
||||
.byte $66, $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A0,$17,$66
|
||||
.byte $86, $88, $86, $55,$55, $A7,$22, $A3,$55, $88,$88
|
||||
.byte $86, $A0,$15,$66, $86, $88, $66, $88, $55,$55
|
||||
.byte $A7,$22, $25, $A3,$55, $A3,$88, $86, $A0,$12,$66, $A3,$88
|
||||
.byte $66, $88, $55, $A9,$22, $A3,$55, $28, $A4,$88
|
||||
.byte $AF,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $AC,$66, $A7,$88, $55
|
||||
.byte $AB,$22, $25, $55, $22, $55,$55, $58, $A4,$88
|
||||
.byte $A9,$86, $88,$88, $28, $A4,$58, $A3,$55, $AB,$22, $72
|
||||
.byte $25, $22, $A4,$55, $AB,$58, $A3,$55, $22, $A5,$55
|
||||
.byte $25, $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22
|
||||
.byte $AB,$55, $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77
|
||||
.byte $A3,$22, $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72
|
||||
.byte $A5,$77, $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A1
|
||||
beast_slash07_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$FF,$AA, $A0,$CB,$AA, $A4,$00, $A0,$23,$AA, $0A, $A5,$00, $A0,$21,$AA
|
||||
.byte $0A, $A6,$00, $0A, $A0,$1F,$AA, $0A, $A3,$00, $10
|
||||
.byte $A4,$00, $0A, $A0,$1D,$AA, $0A, $00, $A0,$02,$A0, $A3,$00
|
||||
.byte $01, $A3,$00, $0A, $A0,$1B,$AA, $0A, $00, $A0,$01,$A0
|
||||
.byte $A0,$02,$AA, $A4,$00, $A0,$01,$A0, $A0,$01,$AA, $A0,$01,$A0, $00,$00, $A0,$1A,$AA
|
||||
.byte $A0,$02,$A0, $A4,$AA, $A3,$00, $A3,$AA, $A0,$02,$A0, $A0,$20,$AA, $A3,$00
|
||||
.byte $A0,$25,$AA, $A3,$A0, $A0,$B2,$AA
|
||||
.byte $A1
|
||||
beast_slash08_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$FF,$AA, $A0,$2A,$AA, $A5,$0A, $A0,$22,$AA, $A7,$00, $A0,$20,$AA, $0A
|
||||
.byte $A7,$00, $0A, $A0,$1D,$AA, $0A, $AB,$00, $A0,$1B,$AA, $0A
|
||||
.byte $AE,$00, $A0,$18,$AA, $0A, $A0,$10,$00, $A0,$16,$AA, $0A, $00,$00
|
||||
.byte $A0,$01,$A0, $A0,$02,$AA, $A7,$00, $A0,$01,$A0, $A0,$01,$AA, $A0,$01,$A0, $A3,$00
|
||||
.byte $0A, $A0,$14,$AA, $00,$00, $A0,$01,$A0, $A4,$AA, $A5,$00, $A0,$01,$A0
|
||||
.byte $A4,$AA, $A0,$01,$A0, $00,$00, $A0,$1C,$AA, $A4,$00, $A0,$24,$AA, $A4,$A0
|
||||
.byte $A0,$FF,$AA, $A0,$2B,$AA
|
||||
.byte $A1
|
||||
beast_slash09_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$B1,$AA, $A6,$0A, $A0,$21,$AA, $A8,$00, $A0,$1F,$AA, $0A, $A8,$00
|
||||
.byte $0A, $A0,$1D,$AA, $AB,$00, $0A, $A0,$1A,$AA, $0A, $AE,$00
|
||||
.byte $A0,$18,$AA, $0A, $A0,$10,$00, $0A, $A0,$15,$AA, $0A, $A0,$12,$00
|
||||
.byte $0A, $A0,$13,$AA, $0A, $A4,$00, $A0,$01,$A0, $A0,$10,$00, $A0,$11,$AA
|
||||
.byte $A4,$00, $A0,$01,$A0, $A3,$AA, $A8,$00, $A0,$01,$A0, $A0,$02,$AA, $A0,$02,$A0
|
||||
.byte $A4,$00, $AF,$AA, $00,$00, $A0,$02,$A0, $A5,$AA, $A0,$01,$A0, $A5,$00
|
||||
.byte $A0,$01,$A0, $A5,$AA, $A0,$02,$A0, $00,$00, $A0,$19,$AA, $A4,$00, $A0,$26,$AA
|
||||
.byte $A0,$02,$A0, $A0,$FF,$AA, $A0,$53,$AA
|
||||
.byte $A1
|
||||
beast_slash10_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$12,$AA, $A5,$0A, $A0,$21,$AA, $A8,$00, $0A, $A0,$1E,$AA, $AA,$00
|
||||
.byte $A0,$1D,$AA, $AC,$00, $A0,$1A,$AA, $0A, $AE,$00, $0A, $A0,$17,$AA
|
||||
.byte $0A, $A0,$10,$00, $0A, $A0,$14,$AA, $0A, $A0,$14,$00, $0A
|
||||
.byte $A0,$12,$AA, $A0,$17,$00, $AF,$AA, $0A, $A0,$19,$00, $AD,$AA, $0A
|
||||
.byte $A5,$00, $A0,$01,$A0, $A0,$15,$00, $AB,$AA, $A6,$00, $A0,$01,$A0, $A3,$AA
|
||||
.byte $AB,$00, $A0,$01,$A0, $A0,$02,$AA, $A0,$01,$A0, $A5,$00, $0A, $A9,$AA
|
||||
.byte $A3,$00, $A0,$01,$A0, $F0, $A5,$AA, $A0,$01,$A0, $A8,$00, $A0,$01,$A0
|
||||
.byte $A6,$AA, $FA, $A0,$01,$A0, $A3,$00, $A9,$AA, $F0, $A0,$01,$A0
|
||||
.byte $A0,$01,$AF, $A9,$AA, $A0,$01,$A0, $00,$00, $A0,$01,$A0, $00,$00, $AA,$AA
|
||||
.byte $A0,$01,$AF, $A0,$01,$A0, $F0, $A0,$FF,$AA, $A0,$BD,$AA
|
||||
.byte $A1
|
||||
beast_slash11_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $AD,$AA, $0A, $AC,$00, $0A, $A0,$19,$AA, $0A, $AE,$00
|
||||
.byte $0A, $A0,$16,$AA, $0A, $A0,$12,$00, $0A, $A0,$13,$AA, $0A
|
||||
.byte $A0,$15,$00, $0A, $AF,$AA, $0A, $A0,$19,$00, $0A, $AC,$AA
|
||||
.byte $A0,$1C,$00, $0A, $AA,$AA, $0A, $A0,$1E,$00, $0A, $A7,$AA
|
||||
.byte $A0,$21,$00, $0A, $A4,$AA, $0A, $A0,$24,$00, $A0,$02,$AA, $0A
|
||||
.byte $A7,$00, $A3,$AA, $A0,$02,$A0, $AE,$00, $A0,$01,$A0, $A0,$02,$AA, $A0,$01,$A0
|
||||
.byte $A8,$00, $A0,$01,$AA, $A7,$00, $A0,$01,$A0, $A5,$AA, $AD,$00, $A0,$01,$A0
|
||||
.byte $A4,$AA, $A0,$01,$A0, $00,$00, $FF, $00, $F0, $00,$00
|
||||
.byte $A0,$01,$AA, $A0,$01,$A0, $00,$00, $FF, $A0,$01,$A0, $FF, $A8,$AA
|
||||
.byte $A0,$01,$A0, $A9,$00, $A0,$02,$A0, $A7,$AA, $FA, $A0,$01,$AF, $A0,$01,$AA
|
||||
.byte $FF, $F0, $00, $A0,$02,$AA, $FF, $A0,$01,$AA, $A0,$01,$AF
|
||||
.byte $FA, $A0,$01,$AA, $A0,$01,$AF, $A9,$AA, $A4,$00, $A3,$A0, $AC,$AA
|
||||
.byte $A0,$01,$AF, $A0,$01,$AA, $FF, $A4,$AA, $A0,$01,$AF, $A0,$21,$AA, $A0,$01,$AF
|
||||
.byte $A0,$FF,$AA, $A0,$93,$AA
|
||||
.byte $A1
|
||||
beast_slash12_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A8,$AA, $0A, $A0,$15,$00, $0A, $A0,$10,$AA, $0A, $A0,$18,$00
|
||||
.byte $AE,$AA, $0A, $A0,$1A,$00, $0A, $AA,$AA, $0A, $A0,$1E,$00
|
||||
.byte $0A, $A7,$AA, $A0,$22,$00, $0A, $A4,$AA, $A0,$24,$00, $0A
|
||||
.byte $A0,$02,$AA, $AF,$00, $11, $A0,$16,$00, $0A, $A0,$14,$00, $11
|
||||
.byte $A0,$41,$00, $A0,$02,$A0, $A0,$01,$AA, $A0,$02,$A0, $A0,$13,$00, $A0,$01,$A0, $A0,$01,$AA
|
||||
.byte $A0,$02,$A0, $A5,$00, $F0, $00, $F0, $A3,$00, $A0,$01,$A0
|
||||
.byte $A6,$AA, $A0,$11,$00, $A6,$AA, $00,$00, $F0,$F0, $0F, $00
|
||||
.byte $0F, $F0, $A0,$02,$A0, $A8,$AA, $AF,$00, $A8,$AA, $A0,$01,$A0
|
||||
.byte $A3,$00, $FF, $A0,$01,$A0, $A0,$01,$AA, $A0,$01,$AF, $AA,$AA, $A0,$01,$A0
|
||||
.byte $A9,$00, $A0,$02,$A0, $AC,$AA, $FA, $A0,$01,$AF, $A0,$01,$A0, $A0,$01,$AF
|
||||
.byte $FA, $AD,$AA, $A7,$A0, $A0,$11,$AA, $FA, $A0,$25,$AA, $FA
|
||||
.byte $A0,$01,$AF, $A0,$01,$AA, $A0,$01,$AF, $A0,$FF,$AA, $A0,$67,$AA
|
||||
.byte $A1
|
||||
beast_slash13_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$26,$00, $A0,$02,$AA, $A0,$27,$00, $A0,$01,$AA, $A0,$D5,$00, $11, $A0,$57,$00
|
||||
.byte $11, $A0,$62,$00, $A0,$01,$A0, $A0,$01,$AA, $A0,$02,$A0, $A0,$21,$00, $A0,$02,$A0
|
||||
.byte $00, $A6,$AA, $A0,$01,$A0, $A0,$1B,$00, $A0,$01,$A0, $AC,$AA, $A0,$01,$A0
|
||||
.byte $A0,$19,$00, $A0,$01,$A0, $AE,$AA, $A0,$18,$00, $A0,$01,$A0, $A0,$10,$AA, $A0,$01,$A0
|
||||
.byte $A0,$13,$00, $A0,$02,$A0, $A0,$14,$AA, $A0,$01,$A0, $AE,$00, $A0,$02,$A0, $A0,$19,$AA
|
||||
.byte $A0,$01,$A0, $AA,$00, $A0,$01,$A0, $A0,$D7,$AA
|
||||
.byte $A1
|
||||
beast_slash14_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$FF,$00, $A0,$4C,$00, $10, $A0,$27,$00, $11, $A0,$31,$00, $10
|
||||
.byte $A0,$27,$00, $11, $A0,$B2,$00, $A0,$01,$A0, $A0,$27,$00, $A0,$02,$AA, $A0,$01,$A0
|
||||
.byte $A0,$23,$00, $A0,$01,$A0, $A4,$AA, $A0,$22,$00, $A7,$AA, $A0,$20,$00, $A0,$01,$A0
|
||||
.byte $A9,$AA, $A0,$01,$A0, $A0,$1C,$00, $A0,$01,$A0, $AC,$AA, $A0,$01,$A0, $A0,$15,$00
|
||||
.byte $A0,$02,$A0, $A0,$12,$AA, $A0,$01,$A0, $A0,$11,$00, $A0,$01,$A0, $A0,$16,$AA, $A0,$01,$A0
|
||||
.byte $AE,$00, $A0,$01,$A0, $AD,$AA
|
||||
.byte $A1
|
||||
beast_slash15_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$FF,$00, $A0,$99,$00, $01, $11, $A0,$27,$00, $01, $A0,$5C,$00
|
||||
.byte $11, $01, $A0,$26,$00, $01, $A0,$FF,$00, $A0,$7A,$00
|
||||
.byte $A1
|
||||
beast_slash16_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A6,$22, $52,$52, $A0,$15,$66, $88, $A3,$55, $52, $AB,$22
|
||||
.byte $55,$55, $65, $A0,$15,$66, $88,$88, $A3,$55, $AB,$22, $55,$55
|
||||
.byte $A0,$16,$66, $68, $88, $A3,$55, $AA,$22, $55,$55, $65
|
||||
.byte $A0,$17,$66, $68, $85, $55,$55, $52, $22,$22, $02
|
||||
.byte $00, $20, $A4,$22, $55,$55, $A0,$17,$66, $88, $66
|
||||
.byte $88, $A3,$55, $A9,$22, $55,$55, $A0,$17,$66, $68, $88
|
||||
.byte $66, $88, $55,$55, $A8,$22, $52, $55, $88
|
||||
.byte $A0,$18,$66, $88, $86, $68, $88, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A0,$19,$66, $88, $66, $88, $55
|
||||
.byte $A8,$22, $55,$55, $88, $A0,$19,$66, $68, $86, $68
|
||||
.byte $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88, $66
|
||||
.byte $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88, $66
|
||||
.byte $55, $A8,$22, $55,$55, $88, $A0,$1A,$66, $88, $66
|
||||
.byte $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A0,$17,$66, $86
|
||||
.byte $88, $86, $55,$55, $A7,$22, $A3,$55, $88,$88, $86
|
||||
.byte $A0,$15,$66, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $86, $A0,$12,$66, $A3,$88, $66
|
||||
.byte $88, $55, $A3,$22, $20,$20, $A4,$22, $A3,$55, $28
|
||||
.byte $A4,$88, $AF,$66, $86, $A4,$88, $86, $55,$55, $AA,$22
|
||||
.byte $55,$55, $22, $58, $A4,$88, $86, $AC,$66, $A7,$88
|
||||
.byte $55, $AB,$22, $25, $55, $22, $55,$55, $58
|
||||
.byte $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AC,$22, $25
|
||||
.byte $22, $A4,$55, $AB,$58, $A9,$55, $25, $A0,$10,$22, $AB,$55
|
||||
.byte $A5,$25, $A0,$19,$22, $A5,$25, $A0,$91,$22
|
||||
.byte $A1
|
||||
beast_slash17_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$6F,$00, $A9,$01, $A0,$FF,$00, $A0,$AE,$00, $AB,$10, $A0,$FF,$00, $A0,$60,$00
|
||||
.byte $A9,$10, $A0,$28,$00
|
||||
.byte $A1
|
||||
beast_slash18_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$63,$00, $A3,$11, $A9,$00, $A9,$10, $A0,$FF,$00, $A0,$82,$00, $A4,$10
|
||||
.byte $A0,$2C,$00, $A4,$01, $A3,$11, $A0,$FF,$00, $A0,$30,$00, $AD,$10, $11
|
||||
.byte $A3,$01, $A0,$50,$00
|
||||
.byte $A1
|
||||
beast_slash19_rle: .byte $28 ; ysize=48
|
||||
.byte $A4,$77, $27, $22, $52,$52, $A0,$15,$66, $88, $A3,$55
|
||||
.byte $52, $22, $A3,$27, $A3,$77, $27,$27, $22,$22, $55,$55
|
||||
.byte $65, $A0,$15,$66, $88,$88, $A3,$55, $A5,$22, $77,$77, $A4,$22
|
||||
.byte $55,$55, $A0,$16,$66, $68, $88, $A3,$55, $A5,$22, $77
|
||||
.byte $27, $A3,$22, $55,$55, $65, $A0,$17,$66, $68, $85
|
||||
.byte $55,$55, $52, $A4,$22, $77, $A4,$22, $55,$55, $A0,$17,$66
|
||||
.byte $88, $66, $88, $A3,$55, $A4,$22, $77, $A4,$22
|
||||
.byte $55,$55, $A0,$17,$66, $68, $88, $66, $88, $55,$55
|
||||
.byte $A4,$22, $77, $A3,$22, $52, $55, $88, $A0,$18,$66
|
||||
.byte $88, $86, $68, $88, $55, $A4,$22, $27
|
||||
.byte $A3,$22, $55,$55, $88, $AB,$66, $A5,$06, $A9,$66, $88
|
||||
.byte $66, $88, $55, $A8,$22, $55,$55, $88, $AA,$66
|
||||
.byte $A7,$00, $A8,$66, $68, $86, $68, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A9,$66, $06, $A7,$00, $06, $A8,$66
|
||||
.byte $88, $66, $55, $A8,$22, $55,$55, $88, $A7,$66
|
||||
.byte $06, $AB,$00, $A7,$66, $88, $66, $55, $A8,$22
|
||||
.byte $55,$55, $88, $A6,$66, $06, $AE,$00, $A5,$66, $88
|
||||
.byte $66, $55,$55, $A7,$22, $55,$55, $88,$88, $86, $A3,$66
|
||||
.byte $06, $A0,$10,$00, $A3,$66, $86, $88, $86, $55,$55
|
||||
.byte $A7,$22, $A3,$55, $88,$88, $86, $66, $06, $00,$00
|
||||
.byte $60, $66,$66, $A7,$00, $60, $66, $60, $A3,$00
|
||||
.byte $06, $86, $88, $66, $88, $55,$55, $A7,$22
|
||||
.byte $25, $A3,$55, $A3,$88, $00,$00, $60, $A4,$66, $A5,$00
|
||||
.byte $60, $A4,$66, $60, $00,$00, $88,$88, $66, $88
|
||||
.byte $55, $A9,$22, $A3,$55, $28, $A4,$88, $A6,$66, $A4,$00
|
||||
.byte $A5,$66, $86, $A4,$88, $86, $55,$55, $AA,$22, $55,$55
|
||||
.byte $22, $58, $A4,$88, $86, $A4,$66, $A4,$60, $A4,$66
|
||||
.byte $A7,$88, $55, $AB,$22, $25, $55, $22, $55,$55
|
||||
.byte $58, $A4,$88, $A9,$86, $88,$88, $A5,$58, $A3,$55, $AB,$22
|
||||
.byte $72, $25, $22, $A4,$55, $AB,$58, $A9,$55, $25
|
||||
.byte $A4,$22, $72,$72, $77, $A5,$22, $77, $A3,$22, $AB,$55
|
||||
.byte $A5,$25, $AC,$22, $A3,$77, $A3,$22, $72, $A3,$77, $A3,$22
|
||||
.byte $A5,$25, $72, $A0,$13,$22, $72, $A4,$77, $72,$72, $A5,$77
|
||||
.byte $A8,$72, $77, $A0,$12,$72, $A0,$56,$77
|
||||
.byte $A0,$5A,$00, $A3,$01, $00,$00, $01,$01, $00, $01,$01, $A0,$FF,$00
|
||||
.byte $A0,$AF,$00, $A4,$01, $A3,$00, $01,$01, $A0,$FF,$00, $A0,$35,$00, $11,$11
|
||||
.byte $A3,$00, $A4,$01, $AC,$00, $11, $A0,$5B,$00
|
||||
.byte $A1
|
||||
beast_slash20_rle: .byte $28 ; ysize=48
|
||||
.byte $A0,$FF,$00, $A0,$FF,$00, $A0,$FF,$00, $A0,$C3,$00
|
||||
.byte $A1
|
||||
|