greenfish.sprite 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. (supertux-sprite
  2. (action
  3. (name "swim-left")
  4. (hitbox 8 10 46 46)
  5. (fps 12)
  6. (images "swim_green-0.png"
  7. "swim_green-1.png"
  8. "swim_green-2.png"
  9. "swim_green-3.png"
  10. "swim_green-4.png"
  11. "swim_green-5.png"
  12. "swim_green-6.png"
  13. "swim_green-7.png"))
  14. (action
  15. (name "swim-right")
  16. (hitbox 10 10 46 46)
  17. (fps 12)
  18. (mirror-action "swim-left"))
  19. (action
  20. (name "notice-left")
  21. (hitbox 8 10 46 46)
  22. (loops 1)
  23. (fps 12)
  24. (images "swim_green-0.png"
  25. "notice_green-0.png"
  26. "notice_green-1.png"
  27. "notice_green-2.png"))
  28. (action
  29. (name "notice-right")
  30. (hitbox 10 10 46 46)
  31. (loops 1)
  32. (fps 12)
  33. (mirror-action "notice-left"))
  34. (action
  35. (name "chase-left")
  36. (hitbox 5 10 46 46)
  37. (fps 20)
  38. (images "chase_green-0.png"
  39. "chase_green-1.png"
  40. "chase_green-2.png"
  41. "chase_green-3.png"
  42. "chase_green-4.png"
  43. "chase_green-5.png"))
  44. (action
  45. (name "chase-right")
  46. (hitbox 10 10 46 46)
  47. (fps 20)
  48. (mirror-action "chase-left"))
  49. (action
  50. (name "iced-left")
  51. (hitbox 0 0 64 64)
  52. (images "swim_green-0.png"))
  53. (action
  54. (name "iced-right")
  55. (hitbox 0 0 64 64)
  56. (mirror-action "iced-left"))
  57. )