cherry.sprite 566 B

123456789101112131415161718192021222324252627282930
  1. (supertux-sprite
  2. (action
  3. (name "ticking-left")
  4. (fps 4.0)
  5. (hitbox 3 26 36 40)
  6. (images "cherrybomb_hit_1.png"
  7. "cherrybomb_hit_2.png"
  8. "cherrybomb_hit_3.png"
  9. "cherrybomb_hit_4.png"
  10. "cherrybomb_hit_5.png"
  11. ))
  12. (action
  13. (name "ticking-right")
  14. (fps 4.0)
  15. (hitbox 3 26 36 40)
  16. (mirror-action "ticking-left"))
  17. (action
  18. (name "explosion")
  19. (fps 5.0)
  20. (hitbox 3 26 36 40)
  21. (images "sparkle-1.png"
  22. "sparkle-2.png"
  23. "sparkle-3.png"
  24. "sparkle-4.png"
  25. "sparkle-5.png"))
  26. )