toad.sprite 1.2 KB

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