Changeset 6413 for 2015/26


Ignore:
Timestamp:
2015-06-26 00:09:53 (8 years ago)
Author:
empaheik
Message:

Kuvia sienibossille.

Location:
2015/26/ohjaajat/HillbillyRun/HillbillyRun/HillbillyRun
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 2015/26/ohjaajat/HillbillyRun/HillbillyRun/HillbillyRun/HillbillyRun/HillbillyRun.cs

    r6412 r6413  
    322322    { 
    323323        MediaPlayer.Play("hillbilly_intro"); 
    324         ShowStoryText(new Queue<string>(new[] { "Innit just da warmest here, sis?", "Seems to me our establishment's a-burnin'.", "...Must've been 'em nasty witches!" })); 
     324        ShowStoryText(new Queue<string>(new[] { "Innit just da warmest here, sis?", "Seems to me our establishment's a-burnin'.", "...Musta been 'em nasty witches!" })); 
    325325    } 
    326326 
     
    973973        shroom.Tag = "burn"; 
    974974        shroom.Tag += "shroom"; 
    975         //shroom.AnimWalk = new Animation(); 
     975        shroom.AnimWalk = new Animation(tattiMageAnimation); 
    976976        shroom.CollisionIgnoreGroup = 3; 
    977977        Add(shroom, 1); 
     
    998998        castTimer.Timeout += delegate 
    999999        { 
    1000             //shroom.PlayAnimation(); 
     1000            shroom.PlayAnimation(tattiMageCastAnimation); 
    10011001 
    10021002            Timer.SingleShot(RandomGen.NextDouble(3, 5), delegate { shroom.Brain = attackBrain; }); 
     
    10071007                    for (int i = 0; i < matoja; i++) 
    10081008                    { 
    1009                         CreateWorm(shroom.Position + RandomGen.NextVector(-200, 0, 200, 0), TILE_SIZE, TILE_SIZE); 
     1009                        CreateWorm(shroom.Position + RandomGen.NextVector(-200, shroom.Height * 1.5, 200, shroom.Height * 2), TILE_SIZE, TILE_SIZE); 
    10101010                        shroom.Brain = brain; 
    10111011                    } 
     
    10251025        AddCollisionHandler(shroom, "pitchfork", delegate(PhysicsObject s, PhysicsObject f) 
    10261026        { 
    1027             matoja += RandomGen.NextInt(1, 5); 
     1027            matoja += RandomGen.NextInt(1, 2); 
    10281028            rahkeet--; 
    10291029            if (rahkeet < 1) 
     
    10311031                shroom.Destroy(); 
    10321032                castTimer.Stop(); 
    1033                 //Timer.SingleShot(6, NextLevel); 
     1033                Timer.SingleShot(6, NextLevel); 
    10341034            } 
    10351035        }); 
Note: See TracChangeset for help on using the changeset viewer.