jumpy.sprite 843 B

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