bumpkin.sprite 1.3 KB

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