123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- (supertux-sprite
- (action
- (name "left")
- (fps 20)
- (hitbox 16 7 32 32)
- (images "fly-0.png"
- "fly-1.png"
- "fly-2.png"
- "fly-3.png"
- )
- )
- (action
- (name "right")
- (fps 20)
- (hitbox 16 7 32 32)
- (mirror-action "left")
- )
- (action
- (name "squished")
- (hitbox 0 0 32 32)
- (images "squished.png")
- )
- (action
- (name "burning-left")
- (fps 15)
- (hitbox 6 39 32 32)
- (images "burn-0.png"
- "burn-1.png"
- "burn-2.png"
- "burn-3.png"
- "burn-4.png"
- "burn-5.png"
- "burn-6.png"
- "burn-7.png"
- "burn-8.png"
- "burn-9.png"
- "burn-10.png"
- )
- )
- (action
- (name "burning-right")
- (fps 15)
- (hitbox 6 39 32 32)
- (mirror-action "burning-left")
- )
- )
|