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

5
gfx/pics/223/anim0.asm Normal file
View File

@@ -0,0 +1,5 @@
frame 1, 05
frame 2, 10
frame 3, 10
endanim
; 0xd1508

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

@@ -0,0 +1,6 @@
setrepeat 2
frame 1, 07
frame 4, 07
dorepeat 1
endanim
; 0xd2114

16
gfx/pics/223/bitmask.asm Normal file
View File

@@ -0,0 +1,16 @@
; 0
db %00000111
db %00000000
db %00000000
db %00000000
; 1
db %00000111
db %00001000
db %10001100
db %00000001
; 2
db %00000111
db %00001000
db %00000000
db %00000000
; 0xd3823

17
gfx/pics/223/frames.asm Normal file
View File

@@ -0,0 +1,17 @@
dw .frame1
dw .frame2
dw .frame3
dw .frame4
.frame1
db $00 ; bitmask
db $19, $1a, $1b
.frame2
db $01 ; bitmask
db $19, $1a, $1b, $1c, $1d, $1e, $03, $03
.frame3
db $01 ; bitmask
db $19, $1a, $1b, $1c, $1f, $03, $20, $21
.frame4
db $02 ; bitmask
db $19, $1a, $1b, $1c
; 0xd9262