skullyhop.sprite 1.7 KB

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