bumper.sprite 562 B

12345678910111213141516171819202122232425262728293031
  1. (supertux-sprite
  2. (action
  3. (name "normal-right")
  4. (hitbox 0 2 18 27)
  5. (images "right-0.png")
  6. )
  7. (action
  8. (name "swinging-right")
  9. (fps 24)
  10. (hitbox 0 2 18 27)
  11. (images "right-0.png"
  12. "right-1.png"
  13. "right-2.png"
  14. "right-3.png"
  15. "right-4.png"
  16. "right-5.png"
  17. )
  18. )
  19. (action
  20. (name "normal-left")
  21. (hitbox 14 2 18 27)
  22. (mirror-action "normal-right")
  23. )
  24. (action
  25. (name "swinging-left")
  26. (fps 24)
  27. (hitbox 14 2 18 27)
  28. (mirror-action "swinging-right")
  29. )
  30. )