root.sprite 798 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. (supertux-sprite
  2. (action
  3. (name "root")
  4. (hitbox 20 7 16 80)
  5. (images "root_attack.png"))
  6. (action
  7. (name "root-up")
  8. (hitbox 20 7 16 80)
  9. (clone-action "root"))
  10. (action
  11. (name "base-up")
  12. (hitbox 20 7 16 80)
  13. (images "root_base.png"))
  14. (action
  15. (name "root-down")
  16. (hitbox 20 9 16 80)
  17. (flip-action "root-up"))
  18. (action
  19. (name "base-down")
  20. (hitbox 20 9 16 80)
  21. (flip-action "base-up"))
  22. (action
  23. (name "root-left")
  24. (hitbox 7 22 80 16)
  25. (images "root_attack_left.png"))
  26. (action
  27. (name "base-left")
  28. (hitbox 7 22 80 16)
  29. (images "root_base_left.png"))
  30. (action
  31. (name "root-right")
  32. (hitbox 9 22 80 16)
  33. (mirror-action "root-left"))
  34. (action
  35. (name "base-right")
  36. (hitbox 9 22 80 16)
  37. (mirror-action "base-left"))
  38. )