smart-snowball.sprite 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. (supertux-sprite
  2. ;; Hue: +115
  3. (action
  4. (name "left")
  5. (hitbox 5 12 32 32)
  6. (fps 14)
  7. (images "smartball-0.png"
  8. "smartball-1.png"
  9. "smartball-2.png"
  10. "smartball-3.png"
  11. "smartball-4.png"
  12. "smartball-5.png"
  13. "smartball-6.png"
  14. "smartball-7.png")
  15. )
  16. (action
  17. (name "right")
  18. (hitbox 7 12 32 32)
  19. (fps 14)
  20. (mirror-action "left")
  21. )
  22. (action
  23. (name "squished-left")
  24. (hitbox 1 -19 31.8 31.8)
  25. (images "mrs-squished-left.png")
  26. )
  27. (action
  28. (name "squished-right")
  29. (hitbox 1 -19 31.8 31.8)
  30. (mirror-action "squished-left")
  31. )
  32. (action
  33. (name "melting-left")
  34. (hitbox 3 6 32 32)
  35. (images "melting-0.png"
  36. "melting-1.png"
  37. "melting-2.png"
  38. "melting-3.png"))
  39. (action
  40. (name "melting-right")
  41. (hitbox 3 6 32 32)
  42. (mirror-action "melting-left"))
  43. (action
  44. (name "ground-melting-left")
  45. (hitbox 19 6 32 32)
  46. (images "gmelting-0.png"
  47. "gmelting-1.png"
  48. "gmelting-2.png"
  49. "gmelting-3.png"
  50. "gmelting-4.png"))
  51. (action
  52. (name "ground-melting-right")
  53. (hitbox 19 6 32 32)
  54. (mirror-action "ground-melting-left"))
  55. )