dispenser.sprite 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. (supertux-sprite
  2. (action
  3. (name "dropper")
  4. (hitbox 0 0 64 24)
  5. (images "dropper.png"))
  6. (action
  7. (name "dropper-iced")
  8. (hitbox 0 0 64 24)
  9. (images "dropper-frozen.png"))
  10. (action
  11. (name "working")
  12. (hitbox 3 5 32 60)
  13. (images "canon.png"))
  14. (action
  15. (name "iced")
  16. (hitbox 3 5 32 60)
  17. (images "canon-frozen.png"))
  18. (action
  19. (name "working-left")
  20. (hitbox 5 12 55 40)
  21. (images "working.png"))
  22. (action
  23. (name "broken-left")
  24. (hitbox 5 12 55 40)
  25. (images "broken.png"))
  26. (action
  27. (name "iced-left")
  28. (hitbox 5 12 55 40)
  29. (images "frozen.png"))
  30. (action
  31. (name "working-right")
  32. (hitbox 4 12 55 40)
  33. (mirror-action "working-left"))
  34. (action
  35. (name "broken-right")
  36. (hitbox 4 12 55 40)
  37. (mirror-action "broken-left"))
  38. (action
  39. (name "iced-right")
  40. (hitbox 4 12 55 40)
  41. (mirror-action "iced-left"))
  42. (action
  43. (name "swivel-left")
  44. (hitbox 5 12 55 40)
  45. (images "swivel-right.png"
  46. "swivel-left.png"
  47. "working.png"))
  48. (action
  49. (name "swivel-right")
  50. (hitbox 4 12 55 40)
  51. (mirror-action "swivel-left"))
  52. (action
  53. (name "invisible")
  54. (hitbox 0 0 32 32)
  55. (images "invisible.png"))
  56. )