totem.sprite 802 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. (supertux-sprite
  2. (action
  3. (hitbox 0 2 48 49)
  4. (name "walking-left")
  5. (images "walking1.png" "walking2.png" "walking3.png" "walking4.png")
  6. )
  7. (action
  8. (hitbox 0 2 48 49)
  9. (name "walking-right")
  10. (mirror-action "walking-left")
  11. )
  12. (action
  13. (hitbox 0 2 48 43)
  14. (name "stacked-left")
  15. (images "stacked.png")
  16. )
  17. (action
  18. (hitbox 0 2 48 43)
  19. (name "stacked-right")
  20. (mirror-action "stacked-left")
  21. )
  22. (action
  23. (hitbox 0 2 48 45)
  24. (name "squished-left")
  25. (images "squished.png")
  26. )
  27. (action
  28. (hitbox 0 2 48 45)
  29. (name "squished-right")
  30. (mirror-action "squished-left")
  31. )
  32. (action
  33. (name "editor-left")
  34. (clone-action "walking-left")
  35. )
  36. (action
  37. (name "editor-right")
  38. (clone-action "walking-right")
  39. )
  40. )