juicebox.sprite 598 B

1234567891011121314151617181920212223242526272829303132
  1. (supertux-sprite
  2. (action
  3. (name "ticking-left")
  4. (fps 4.0)
  5. (hitbox 3 26 36 40)
  6. (images "juicebox_hit_1.png"
  7. "juicebox_hit_2.png"
  8. "juicebox_hit_3.png"
  9. "juicebox_hit_4.png"
  10. "juicebox_hit_5.png"
  11. "juicebox_hit_6.png"
  12. ))
  13. (action
  14. (name "ticking-right")
  15. (fps 4.0)
  16. (hitbox 3 26 36 40)
  17. (mirror-action "ticking-left"))
  18. (action
  19. (name "explosion")
  20. (fps 5.0)
  21. (hitbox 3 26 36 40)
  22. (images "sparkle-1.png"
  23. "sparkle-2.png"
  24. "sparkle-3.png"
  25. "sparkle-4.png"
  26. "sparkle-5.png"
  27. ))
  28. )