haywire.sprite 762 B

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