dump pic animations

This commit is contained in:
yenatch
2013-01-23 15:25:49 -05:00
parent cd0f717305
commit 3ba86a82eb
1120 changed files with 17240 additions and 0 deletions

9
gfx/pics/061/anim0.asm Normal file
View File

@@ -0,0 +1,9 @@
frame 1, 07
frame 2, 05
setrepeat 2
frame 3, 10
frame 4, 10
dorepeat 3
frame 2, 16
endanim
; 0xd0c42

6
gfx/pics/061/anim1.asm Normal file
View File

@@ -0,0 +1,6 @@
setrepeat 2
frame 0, 05
frame 5, 05
dorepeat 1
endanim
; 0xd1b26

31
gfx/pics/061/bitmask.asm Normal file
View File

@@ -0,0 +1,31 @@
; 0
db %11001111
db %00110011
db %00000000
db %00000000
db %00000000
; 1
db %11001111
db %00110011
db %00001000
db %10000010
db %00000000
; 2
db %11001111
db %00110011
db %00001000
db %10000010
db %00000010
; 3
db %11001111
db %11110011
db %01101001
db %10011110
db %00000010
; 4
db %00000000
db %00100000
db %00001000
db %10000110
db %00000001
; 0xd2b57

24
gfx/pics/061/frames.asm Normal file
View File

@@ -0,0 +1,24 @@
dw .frame1
dw .frame2
dw .frame3
dw .frame4
dw .frame5
.frame1
db $00 ; bitmask
db $03, $03, $24, $25, $03, $26, $27, $28, $29, $2a
.frame2
db $01 ; bitmask
db $03, $03, $24, $25, $03, $26, $27, $28, $29, $2a, $2b, $2c
db $2d
.frame3
db $02 ; bitmask
db $03, $03, $24, $25, $03, $2e, $27, $28, $29, $2a, $2b, $2c
db $2d, $2f
.frame4
db $03 ; bitmask
db $03, $03, $24, $25, $03, $2e, $27, $28, $29, $2a, $30, $31
db $32, $2b, $33, $34, $2c, $35, $36, $37, $2d, $2f
.frame5
db $04 ; bitmask
db $38, $39, $3a, $3b, $3c, $3d
; 0xd4eb1