skull_dart.sprite 401 B

12345678910111213141516171819202122
  1. (supertux-sprite
  2. (action
  3. (name "flying-left")
  4. (hitbox 6 12 22 9)
  5. (images "skull_dart_left.png")
  6. )
  7. (action
  8. (name "flying-right")
  9. (hitbox 4 12 22 9)
  10. (mirror-action "flying-left")
  11. )
  12. (action
  13. (name "flying-down")
  14. (hitbox 12 4 9 22)
  15. (images "skull_dart_down.png")
  16. )
  17. (action
  18. (name "flying-up")
  19. (hitbox 12 6 9 22)
  20. (flip-action "flying-down")
  21. )
  22. )