walkingleaf.sprite 1.4 KB

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