1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- (supertux-sprite
- (action
- (name "standing-left")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (images "jump-1.png"
- "land-0.png"
- "land-1.png"
- "stand-0.png"))
-
- (action
- (name "standing-right")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (mirror-action "standing-left"))
-
- (action
- (name "charging-left")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (images "stand-0.png"
- "jump-0.png"))
- (action
- (name "charging-right")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (mirror-action "charging-left"))
-
- (action
- (name "jumping-left")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (images "jump-1.png"
- "jump-2.png"))
-
- (action
- (name "jumping-right")
- (hitbox 9 8 32 38)
- (loops 1)
- (fps 20)
- (mirror-action "jumping-left"))
-
- (action
- (name "iced-left")
- (hitbox 9 8 32 38)
- (images "stand-0.png"))
-
- (action
- (name "iced-right")
- (hitbox 9 8 32 38)
- (mirror-action "iced-left"))
-
- (action
- (name "squished-left")
- (hitbox 9 8 32 38)
- (images "squished.png"))
-
- (action
- (name "squished-right")
- (hitbox 9 8 32 38)
- (mirror-action "squished-left"))
-
- (action
- (name "burning-left")
- (fps 20)
- (hitbox 9 8 32 38)
- (images "burning-0.png"
- "burning-1.png"
- "burning-2.png"
- "burning-3.png"
- "burning-4.png"
- "burning-5.png"
- "burning-6.png"
- "burning-7.png"
- "burning-8.png"
- "burning-9.png"))
- (action
- (name "burning-right")
- (fps 20)
- (hitbox 9 8 32 38)
- (mirror-action "burning-left"))
- )
|