dummyguy.sprite 491 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. (supertux-sprite
  2. (action
  3. (name "left")
  4. (fps 6)
  5. (hitbox 0 40 0 0)
  6. (images "walk-1.png" "walk-2.png")
  7. )
  8. (action
  9. (name "right")
  10. (fps 6)
  11. (hitbox 0 40 0 0)
  12. (mirror-action "left")
  13. )
  14. (action
  15. (name "stand")
  16. (hitbox 0 40 0 0)
  17. (images "stand.png"))
  18. (action
  19. (name "throw")
  20. (fps 6)
  21. (hitbox 0 40 0 0)
  22. (images "throw.png"))
  23. (action
  24. (name "jump")
  25. (hitbox 0 40 0 0)
  26. (images "jump.png"))
  27. (action
  28. (name "dead")
  29. (hitbox 0 0 0 0)
  30. (images "dead.png")
  31. )
  32. )