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

11
gfx/pics/250/anim0.asm Normal file
View File

@@ -0,0 +1,11 @@
frame 0, 04
frame 1, 08
frame 2, 12
setrepeat 5
frame 0, 05
frame 3, 05
dorepeat 4
frame 0, 06
frame 4, 12
endanim
; 0xd1679

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

@@ -0,0 +1,6 @@
setrepeat 3
frame 0, 06
frame 4, 06
dorepeat 1
endanim
; 0xd2215

33
gfx/pics/250/bitmask.asm Normal file
View File

@@ -0,0 +1,33 @@
; 0
db %01111000
db %00111100
db %00011110
db %00000111
db %00000000
db %00000000
db %00000000
; 1
db %01111000
db %00111100
db %00011110
db %10001111
db %10000111
db %00000000
db %00000000
; 2
db %00000000
db %11000000
db %01110000
db %00111100
db %00000110
db %11000011
db %00000000
; 3
db %00000000
db %00011000
db %00000000
db %00000000
db %00000000
db %00000000
db %00000000
; 0xd3ab3

20
gfx/pics/250/frames.asm Normal file
View File

@@ -0,0 +1,20 @@
dw .frame1
dw .frame2
dw .frame3
dw .frame4
.frame1
db $00 ; bitmask
db $31, $32, $33, $30, $34, $35, $36, $37, $38, $39, $3a, $3b
db $3c, $3d, $3e
.frame2
db $01 ; bitmask
db $31, $32, $33, $30, $3f, $40, $41, $42, $43, $44, $45, $46
db $47, $48, $49, $4a, $4b, $4c, $4d, $4e, $4f
.frame3
db $02 ; bitmask
db $50, $51, $52, $53, $54, $55, $56, $57, $58, $59, $5a, $5b
db $5c, $5d, $5e
.frame4
db $03 ; bitmask
db $5f, $60
; 0xd9907