igel.sprite 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. (supertux-sprite
  2. (action
  3. (name "left")
  4. (hitbox 9 10 48 32)
  5. (fps 15)
  6. (images "walk-0.png"
  7. "walk-1.png"
  8. "walk-2.png"
  9. "walk-3.png"
  10. "walk-4.png"
  11. "walk-5.png"
  12. "walk-6.png"
  13. "walk-7.png"
  14. )
  15. )
  16. (action
  17. (name "right")
  18. (hitbox 11 10 48 32)
  19. (fps 15)
  20. (mirror-action "left")
  21. )
  22. (action
  23. (name "roll-left")
  24. (hitbox 10 10 32 32)
  25. (fps 20)
  26. (images "roll-0.png"
  27. "roll-1.png"
  28. "roll-2.png"
  29. "roll-3.png"
  30. "roll-4.png"
  31. "roll-5.png")
  32. )
  33. (action
  34. (name "roll-right")
  35. (hitbox 10 10 32 32)
  36. (fps 20)
  37. (mirror-action "roll-left")
  38. )
  39. (action
  40. (name "iced-left")
  41. (hitbox -7 -8 45.8 25.8)
  42. (images "walk-0.png")
  43. )
  44. (action
  45. (name "iced-right")
  46. (hitbox -7 -9 45.8 25.8)
  47. (mirror-action "iced-left")
  48. )
  49. (action
  50. (name "burning-left")
  51. (hitbox 2.1 38.1 45.8 25.8)
  52. (fps 15)
  53. (images
  54. "burning-0.png"
  55. "burning-1.png"
  56. "burning-2.png"
  57. "burning-3.png"
  58. "burning-4.png"
  59. "burning-5.png"
  60. "burning-6.png"
  61. "burning-7.png"
  62. "burning-8.png"
  63. "burning-9.png"
  64. )
  65. )
  66. (action
  67. (name "burning-right")
  68. (fps 15)
  69. (hitbox 2.1 38.1 45.8 25.8)
  70. (mirror-action "burning-left")
  71. )
  72. )