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/130/anim0.asm Normal file
View File

@@ -0,0 +1,6 @@
setrepeat 2
frame 1, 11
frame 2, 11
dorepeat 1
endanim
; 0xd100b

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

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

17
gfx/pics/130/bitmask.asm Normal file
View File

@@ -0,0 +1,17 @@
; 0
db %00000000
db %00000000
db %00100000
db %11110000
db %11110111
db %11110011
db %00000001
; 1
db %00000000
db %00000100
db %00000001
db %00000000
db %00000000
db %00000000
db %00000000
; 0xd3155

15
gfx/pics/130/frames.asm Normal file
View File

@@ -0,0 +1,15 @@
dw .frame1
dw .frame2
dw .frame3
.frame1
db $00 ; bitmask
db $31, $32, $33, $34, $35, $36, $37, $38, $39, $3a, $3b, $3c
db $3d, $3e, $00, $3f, $40, $41, $42
.frame2
db $00 ; bitmask
db $31, $32, $33, $34, $35, $36, $37, $38, $39, $3a, $3b, $43
db $44, $3e, $00, $45, $46, $47, $42
.frame3
db $01 ; bitmask
db $48, $49
; 0xd5d58