1234567891011121314151617181920212223242526272829303132 |
- (supertux-sprite
- (action
- (name "ticking-left")
- (fps 4.0)
- (hitbox 3 26 36 40)
- (images "juicebox_hit_1.png"
- "juicebox_hit_2.png"
- "juicebox_hit_3.png"
- "juicebox_hit_4.png"
- "juicebox_hit_5.png"
- "juicebox_hit_6.png"
- ))
- (action
- (name "ticking-right")
- (fps 4.0)
- (hitbox 3 26 36 40)
- (mirror-action "ticking-left"))
- (action
- (name "explosion")
- (fps 5.0)
- (hitbox 3 26 36 40)
- (images "sparkle-1.png"
- "sparkle-2.png"
- "sparkle-3.png"
- "sparkle-4.png"
- "sparkle-5.png"
- ))
- )
|