bag.sprite 1.1 KB

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