metaljumpy.sprite 1.1 KB

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