root_sapling.sprite 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. (supertux-sprite
  2. (action
  3. (name "idle")
  4. (hitbox 24 22 32 32)
  5. (fps 8)
  6. (images "root_sapling-0.png"
  7. "root_sapling-1.png"
  8. "root_sapling-2.png"
  9. "root_sapling-3.png"
  10. "root_sapling-4.png"
  11. "root_sapling-5.png"
  12. "root_sapling-6.png"
  13. "root_sapling-7.png"
  14. "root_sapling-8.png"
  15. "root_sapling-9.png"
  16. "root_sapling-10.png"
  17. "root_sapling-11.png"
  18. )
  19. )
  20. (action
  21. (name "idle-up")
  22. (fps 8)
  23. (hitbox 24 22 32 32)
  24. (clone-action "idle")
  25. )
  26. (action
  27. (name "squished-up")
  28. (fps 15)
  29. (loops 1)
  30. (hitbox 24 22 32 32)
  31. (images "corrupted_hill-0.png"
  32. "corrupted_hill-1.png"
  33. "corrupted_hill-2.png"
  34. "corrupted_hill-3.png"
  35. "corrupted_hill-3.png"
  36. "corrupted_hill-4.png"
  37. )
  38. )
  39. (action
  40. (name "idle-down")
  41. (fps 8)
  42. (hitbox 24 70 32 32)
  43. (flip-action "idle-up")
  44. )
  45. (action
  46. (name "squished-down")
  47. (fps 15)
  48. (loops 1)
  49. (hitbox 24 70 32 32)
  50. (flip-action "squished-up")
  51. )
  52. (action
  53. (name "idle-left")
  54. (hitbox 18 24 32 32)
  55. (fps 8)
  56. (images "root_sapling-0_left.png"
  57. "root_sapling-1_left.png"
  58. "root_sapling-2_left.png"
  59. "root_sapling-3_left.png"
  60. "root_sapling-4_left.png"
  61. "root_sapling-5_left.png"
  62. "root_sapling-6_left.png"
  63. "root_sapling-7_left.png"
  64. "root_sapling-8_left.png"
  65. "root_sapling-9_left.png"
  66. "root_sapling-10_left.png"
  67. "root_sapling-11_left.png"
  68. )
  69. )
  70. (action
  71. (name "squished-left")
  72. (fps 15)
  73. (loops 1)
  74. (hitbox 18 24 32 32)
  75. (images "corrupted_hill-0_left.png"
  76. "corrupted_hill-1_left.png"
  77. "corrupted_hill-2_left.png"
  78. "corrupted_hill-3_left.png"
  79. "corrupted_hill-3_left.png"
  80. "corrupted_hill-4_left.png"
  81. )
  82. )
  83. (action
  84. (name "idle-right")
  85. (hitbox 70 24 32 32)
  86. (fps 8)
  87. (mirror-action "idle-left")
  88. )
  89. (action
  90. (name "squished-right")
  91. (fps 15)
  92. (loops 1)
  93. (hitbox 70 24 32 32)
  94. (mirror-action "squished-left")
  95. )
  96. )