Icy Bubble II released!

I am pleased to introduce you Icy Bubble II, a game made by Abhilash.

It’s the sequel of Icy Bubble, and it has some new interesting features.

Icy Bubble 2

Abhilash said: “hi!
after more than two months my second game is ready ‘Icy Bubble II’.
Its graphics are better than the previous one.I hope people will enjoy playing it as i enjoyed it making…..

The first interesting thing is the style used to draw stages: it reminds the one of a game called “Bubble soap” (and the “ball” too now is a bubble soap) but I like more the color scheme used in Icy Bubble II.

The second one is a level code system that allows you to begin from a specific level if you know its code.

The game provides an interesting challenge as you guide your icy bubble through the levels

Rate this post: 1 Star2 Stars3 Stars4 Stars5 Stars (1 votes, average: 5.00 out of 5)
Loading ... Loading ...
Flash Templates provided by Template Monster are pre-made web design products developed using Flash technology.
They can be easily customized to meet the unique requirements of your project.
Be my fan on Facebook and follow me on Twitter! Exclusive content for my Facebook fans and Twitter followers

This post has 18 comments

  1. Robin

    on June 21, 2007 at 7:18 pm

    I can’t even win the first level :P

  2. Monkios

    on June 21, 2007 at 7:29 pm

    This thing is hard and the colors are a bit too dark for me.

    I had to zoom in and play with the frame with my mouse to fet to the higher levels.

  3. Evan

    on June 22, 2007 at 4:17 am

    I like the color scheme :).
    Skipped to lvl 13 w/ the code. :P

  4. abhilash

    on June 22, 2007 at 8:36 am

    in reply to robin:
    i don’t think first level was too hard, I could complete it easily everytime

  5. Tony

    on June 23, 2007 at 2:25 pm

    Very good colors, I like them a lot

  6. abhilash

    on June 23, 2007 at 5:54 pm

    thanx tony 4 appreciating the game….

  7. Flash Prayer

    on July 12, 2007 at 8:10 pm

    Woe , nice game. But it’s too hard….

  8. Mahesh

    on July 24, 2007 at 6:45 am

    Nice game. Is this licenseable?

  9. abhilash

    on July 25, 2007 at 11:19 am

    in reply to mahesh:
    wat do you mean by “licenseable”??

  10. Thomas

    on September 22, 2007 at 6:19 am

    Cool Game! Though a bit of logic is required. As far as I know, bubbles don’t float in water.

  11. abhilash

    on September 22, 2007 at 11:28 am

    in reply to thomas:
    yeah you are right but that was only for making the the a bit more challenging

  12. thierry

    on October 19, 2007 at 4:51 am

    Level 8 !!! How many levels to finish the game ?

  13. abhilash

    on October 20, 2007 at 10:34 am

    in reply to thierry:
    “only” 8 more :)

  14. thierry

    on October 22, 2007 at 3:41 am

    Level 14 … seems quite hard to cross the explosion ?!! Are u sure it is possible ? :) Is the purpose to cross it very fast ?

  15. abhilash

    on October 22, 2007 at 9:15 am

    in reply to thierry:
    no u can’t cross the explosion,there’s a switch to off it,u can find it easily, there is a arrow pointing towards it.
    I think u r the only one who has reached lvl 14

  16. thierry

    on October 22, 2007 at 2:58 pm

    I finished the game !!!!! The last level was interesting with the magnetism.. Personaly i met the bigest difficulty in level 8… really hard to pass it ! U should put it in level 15 or 16 !;-) Congratulations for that game .. I really had nice moments. By the way, do u know other games like this one ?

  17. abhilash

    on October 23, 2007 at 6:38 am

    in reply to thierry:
    try the game SOAP BuBBle on miniclip.com that game is lot better than my one and also there are two parts of that game availabel on miniclip.com AND CONGRATULATIONS for completeing the game

  18. ramesh poreddy

    on August 13, 2011 at 8:17 pm

    it is nice to escape from lots of hitTest,But…in above example u not escaping from testing with each and every object….instead of that the below code may hel in better way
    for(var i=0;i<blue_array.length;i++){
    for(var j=i;j<blue_array.length;j++){
    if (blue_array[i].hitTest(_root[blue_array[j]])) {
    blue_array[j].removeMovieClip();
    blue_array[i].removeMovieClip();
    blue_array.splice(i, 1);
    blue_array.splice((j-1), 1);
    }
    }
    }