mr_rocket.sprite 616 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. (supertux-sprite
  2. (action
  3. (name "left")
  4. (fps 15.0)
  5. (hitbox 12 21 42 19)
  6. (images "flying-0.png"
  7. "flying-1.png"
  8. "flying-2.png"
  9. "flying-1.png")
  10. )
  11. (action
  12. (name "right")
  13. (fps 10.0)
  14. (hitbox 10 21 42 19)
  15. (mirror-action "left")
  16. )
  17. (action
  18. (name "squished-left")
  19. (hitbox 12 11 42 19)
  20. (images "squished.png")
  21. )
  22. (action
  23. (name "squished-right")
  24. (hitbox 10 0 42 19)
  25. (mirror-action "squished-left"))
  26. (action
  27. (name "collision-left")
  28. (hitbox 6 21 42 19)
  29. (images "collision.png"))
  30. (action
  31. (name "collision-right")
  32. (hitbox 9 21 42 19)
  33. (mirror-action "squished-left")
  34. )
  35. )