smart-snowball.sprite 487 B

123456789101112131415161718192021222324252627
  1. (supertux-sprite
  2. ;; Hue: +115
  3. (action
  4. (name "left")
  5. (hitbox 3 6 32 32)
  6. (images "left-0.png"
  7. "left-1.png"
  8. "left-2.png"
  9. "left-1.png")
  10. )
  11. (action
  12. (name "right")
  13. (hitbox 3 6 32 32)
  14. (mirror-action "left")
  15. )
  16. (action
  17. (name "squished-left")
  18. (hitbox 1 -19 31.8 31.8)
  19. (images "mrs-squished-left.png")
  20. )
  21. (action
  22. (name "squished-right")
  23. (hitbox 1 -19 31.8 31.8)
  24. (mirror-action "squished-left")
  25. )
  26. )