[Super-tux-commit] supertux/data/images supertux.strf,1.25,1.26
Brought to you by:
wkendrick
From: Marek M. <wa...@us...> - 2004-11-25 11:16:12
|
Update of /cvsroot/super-tux/supertux/data/images In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29929/data/images Modified Files: supertux.strf Log Message: added badguy Nolok_01, as he may appear as the boss of world 1 (still very basic). added sprite "Dummyguy" which can be used for badguys that don't have sprites yet (i.e. nolok and dispenser). added new test level "noloktest.stl", moved dispenser and secretarea tests to that level. Bugs: Nolok can only be killed when he's jumping; no idea why, probably set the offsets wrong. Also, currently there's no limit on how many snowballs he can throw, so kill him quickly :-) This is the last thing I'll add before fixing all my other stuff. :-) Index: supertux.strf =================================================================== RCS file: /cvsroot/super-tux/supertux/data/images/supertux.strf,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- supertux.strf 25 Nov 2004 00:49:32 -0000 1.25 +++ supertux.strf 25 Nov 2004 11:16:01 -0000 1.26 @@ -1107,7 +1107,48 @@ (x-offset 0) (y-offset 0) (images "shared/walkingtree-left-small-1.png"))) + + ; Dummyguy + (sprite (name "dummyguy") + (action + (name "left") + (x-offset 0) + (y-offset 32) + (images "shared/dummyguy-walk-1.png" + "shared/dummyguy-walk-2.png")) + (action + (name "right") + (x-offset 0) + (y-offset 32) + (mirror-action "left")) + + (action + (name "stand") + (x-offset 0) + (y-offset 32) + (images "shared/dummyguy-stand.png")) + + (action + (name "throw") + (x-offset 0) + (y-offset 32) + (images "shared/dummyguy-throw.png")) + + (action + (name "jump") + (x-offset 0) + (y-offset 32) + (images "shared/dummyguy-jump.png")) + + (action + (name "dead") + (x-offset 0) + (y-offset 32) + (images "shared/dummyguy-dead.png"))) + + + ;; Game elements follow (sprite (name "egg") |