1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- (supertux-sprite
- (action
- (name "walking-right")
- (fps 4.0)
- (hitbox 17 12 60 90)
- (images
- "y1.png"
- "y2.png"
- "y3.png"
- "y4.png"
- "y5.png"
- "y6.png"
- "y7.png"
- )
- )
- (action
- (name "walking-left")
- (mirror-action "walking-right")
- (fps 4.0)
- (hitbox 17 12 60 90)
- )
- (action
- (name "jump-right")
- (images
- "yeti_jump.png"
- )
- (hitbox 17 12 60 90)
- )
- (action
- (name "jump-left")
- (mirror-action "jump-right")
- (hitbox 17 12 60 90)
- )
- (action
- (name "stand-right")
- (images
- "y.png"
- )
- (hitbox 17 12 60 90)
- )
- (action
- (name "stand-left")
- (mirror-action "stand-right")
- (hitbox 17 12 60 90)
- )
- (action
- (name "stomp-right")
- (images
- "y-jump.png"
- )
- (hitbox 17 12 60 90)
- )
- (action
- (name "stomp-left")
- (mirror-action "stomp-right")
- (hitbox 17 12 60 90)
- )
- (action
- (name "dead")
- (fps 3)
- (images
- "busted1.png"
- "busted1.png"
- "busted2.png"
- "busted1.png"
- "busted2.png"
- )
- (hitbox 300 400 60 90)
- )
- )
|