wooden.sprite 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. (supertux-sprite
  2. (action
  3. (name "left-up")
  4. (hitbox 9 8 32 45)
  5. (images "wooden-up.png"))
  6. (action
  7. (name "right-up")
  8. (hitbox 3 8 32 45)
  9. (mirror-action "left-up"))
  10. (action
  11. (name "left-down")
  12. (hitbox 9 8 32 45)
  13. (images "wooden-down.png"))
  14. (action
  15. (name "right-down")
  16. (hitbox 3 8 32 45)
  17. (mirror-action "left-down"))
  18. (action
  19. (name "left-middle")
  20. (hitbox 9 8 32 45)
  21. (images "wooden-middle.png"))
  22. (action
  23. (name "right-middle")
  24. (hitbox 3 8 32 45)
  25. (mirror-action "left-middle"))
  26. (action
  27. (name "iced-left")
  28. (hitbox 9 8 32 45)
  29. (images "wooden-iced.png"))
  30. (action
  31. (name "iced-right")
  32. (hitbox 3 8 32 45)
  33. (mirror-action "iced-left"))
  34. (action
  35. (name "burning-left")
  36. (fps 15)
  37. (hitbox 9 38 32 45)
  38. (images "wooden-burning-0.png"
  39. "wooden-burning-1.png"
  40. "wooden-burning-2.png"
  41. "wooden-burning-3.png"
  42. "wooden-burning-4.png"
  43. "wooden-burning-5.png"
  44. "wooden-burning-6.png"
  45. "wooden-burning-7.png"
  46. "wooden-burning-8.png"
  47. "wooden-burning-9.png"
  48. "wooden-burning-10.png"))
  49. (action
  50. (name "burning-right")
  51. (hitbox 3 38 32 45)
  52. (mirror-action "burning-left"))
  53. )