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

6
gfx/pics/072/anim0.asm Normal file
View File

@@ -0,0 +1,6 @@
frame 1, 09
frame 2, 05
frame 4, 10
frame 5, 16
endanim
; 0xd0cd3

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

@@ -0,0 +1,6 @@
setrepeat 2
frame 0, 08
frame 3, 08
dorepeat 1
endanim
; 0xd1b95

26
gfx/pics/072/bitmask.asm Normal file
View File

@@ -0,0 +1,26 @@
; 0
db %00011000
db %01000011
db %10001100
db %00000001
; 1
db %00000000
db %00000000
db %10001000
db %00000001
; 2
db %10000000
db %00010000
db %00000010
db %00000000
; 3
db %10011000
db %01010011
db %10001110
db %00000001
; 4
db %10000000
db %00010000
db %10001010
db %00000001
; 0xd2c56

21
gfx/pics/072/frames.asm Normal file
View File

@@ -0,0 +1,21 @@
dw .frame1
dw .frame2
dw .frame3
dw .frame4
dw .frame5
.frame1
db $00 ; bitmask
db $19, $1a, $1b, $1c, $14, $1d, $1e, $1f, $20
.frame2
db $01 ; bitmask
db $21, $22, $23
.frame3
db $02 ; bitmask
db $24, $25, $26
.frame4
db $03 ; bitmask
db $19, $1a, $24, $1b, $1c, $25, $14, $26, $1d, $1e, $1f, $20
.frame5
db $04 ; bitmask
db $24, $25, $26, $21, $22, $23
; 0xd5127