12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- (supertux-sprite
- (action
- (name "dropper")
- (hitbox 0 0 64 24)
- (images "dropper.png"))
- (action
- (name "dropper-iced")
- (hitbox 0 0 64 24)
- (images "dropper-frozen.png"))
-
- (action
- (name "working")
- (hitbox 3 5 32 60)
- (images "canon.png"))
- (action
- (name "iced")
- (hitbox 3 5 32 60)
- (images "canon-frozen.png"))
-
- (action
- (name "working-left")
- (hitbox 5 12 55 40)
- (images "working.png"))
-
- (action
- (name "broken-left")
- (hitbox 5 12 55 40)
- (images "broken.png"))
- (action
- (name "iced-left")
- (hitbox 5 12 55 40)
- (images "frozen.png"))
-
- (action
- (name "working-right")
- (hitbox 4 12 55 40)
- (mirror-action "working-left"))
-
- (action
- (name "broken-right")
- (hitbox 4 12 55 40)
- (mirror-action "broken-left"))
- (action
- (name "iced-right")
- (hitbox 4 12 55 40)
- (mirror-action "iced-left"))
- (action
- (name "swivel-left")
- (hitbox 5 12 55 40)
- (images "swivel-right.png"
- "swivel-left.png"
- "working.png"))
- (action
- (name "swivel-right")
- (hitbox 4 12 55 40)
- (mirror-action "swivel-left"))
- (action
- (name "invisible")
- (hitbox 0 0 32 32)
- (images "invisible.png"))
- )
|