123456789101112131415161718192021222324252627282930 |
- (supertux-sprite
- (action
- (name "ticking-left")
- (fps 4.0)
- (hitbox 3 26 36 40)
- (images "cherrybomb_hit_1.png"
- "cherrybomb_hit_2.png"
- "cherrybomb_hit_3.png"
- "cherrybomb_hit_4.png"
- "cherrybomb_hit_5.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"))
- )
|