12345678910111213141516171819202122232425262728293031 |
- (supertux-sprite
- (action
- (name "normal-right")
- (hitbox 0 2 18 27)
- (images "right-0.png")
- )
- (action
- (name "swinging-right")
- (fps 24)
- (hitbox 0 2 18 27)
- (images "right-0.png"
- "right-1.png"
- "right-2.png"
- "right-3.png"
- "right-4.png"
- "right-5.png"
- )
- )
- (action
- (name "normal-left")
- (hitbox 14 2 18 27)
- (mirror-action "normal-right")
- )
- (action
- (name "swinging-left")
- (fps 24)
- (hitbox 14 2 18 27)
- (mirror-action "swinging-right")
- )
- )
|