zeekling.sprite 1.0 KB

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