1234567891011121314151617181920212223 |
- (supertux-sprite
- (action
- (name "flying-left")
- (hitbox 6 13 20 8)
- (images "root_dart_left.png")
- )
- (action
- (name "flying-right")
- (hitbox 6 13 20 8)
- (mirror-action "flying-left")
- )
- (action
- (name "flying-down")
- (hitbox 13 6 8 20)
- (images "root_dart_down.png")
- )
- (action
- (name "flying-up")
- (hitbox 13 6 8 20)
- (flip-action "flying-down")
- )
- )
|