root_dart.sprite 410 B

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