STORY LOOP FURRY PORN GAMES C SERVICES [?] [R] RND POPULAR | Archived flashes: 229703 |
/disc/ · /res/ — /show/ · /fap/ · /gg/ · /swf/ | P0001 · P2596 · P5192 |
This is the info page for Flash #57090 |
Magical-Zorse Productions |
Here's a little biology lesson to get you started |
How Viruses infect cells |
A virus cannot live on it's own. I needs to control another cell to live. 1. The virus finds a "host" cell, and attaches itse'f to it. |
2. The virus injects its DNA or RNA (in some cases) into the cell. |
3. The injected DNA (or RNA) "hijacks" the cell |
4. Now that the cell has been taken over, the viruse's Dna forces the cell to make copies of the virus |
5. The cell keeps making virus copies until it has no more room inside of it, so it bursts open, flinging all of the virus copies everywhere. |
6. The viruses that escaped from the previous cell go on to attach onto other cells, and the process repeats. |
This is a game of infection. You control the red virus |
with the arrow keys |
You have two prime concerns in this game. 1. Don't die 2. Infect all of the cells |
You can die if you, yourself become infected, or you are killed by an attacking cell, but I'll get into that later |
Now, all you're trying to do is infect those cells. |
They will be going about their normal cell buisness, ignoring you, while you need to keep hitting them and injecting your DNA |
It's gonna take more than a few hits for them to become infected, but they won't fight back or do anything about it |
The more DNA you inject in them, the more their color will change into a dark red until They explode with all of the virus copies they've made. |
This is a protein. It will make you bigger, you need to be bigger than a cell to be able to infect it |
Now, do you have all that down? 1. infect cells 2. collect proteins 3. don't die |
Alright, here we go! |
Well done, you've completed the training. Mind you, it won't be this easy the whole time. |
Say, you're really getting the hang of this, aren't you? I think it's time for a boss. |
Well, it isn't "really" a boss, it's just a regular cell that's faster and takes longer to infect, but the premise is still the same right? |
Hmm, you handled yourself well in that situation. It seems I have misjudged you. I will try to make it significantly harder from now on. |
Well, you've been inside the body infecting cells for a couple minutes now, so the white blood cells should be here anytime soon. |
You see that sort of orange looking cell? That's a type of WBC called a Neutrophil. It's the most common type of WBC found in your body, over 50% of your body's defences are made up of those. |
They follow the virus around and deteriorates it until it's gone. Which is where your health bar comes in. You've only got a limited amount of health, so try to stay away from the neutrophils, or any other WBCs |
But that shouldn't be a problem for an advanced virus like yourself right? |
Yikes! You died, I guess you really couldn't handle a measly neutrophil |
Replay level |
Replay level |
Uh oh, more White blood cells, better get infecting fast! |
Go to menu |
Go to menu |
Oh no. The immune system has locked onto you. It knows exactly where you are and what you've been doing. |
It's sending an all-out assault on you, multiple white blood cells are heading to this point. You're doomed |
You're only hope is to avoid them long enough for some other virus cells you made come by and help you out. |
Oh, and one more thing. Collecting proteins restores a little bit of your health, which would be helpful in a time like this. |
Here they come! |
Lucky for you, they left to go attack some of the other virus cells you've made. Good work, but they'll be back, your best bet is to lie low for a while. You'll be able to finish infecting the body later. |
Credits |
Art and animation Magical-Zorse Programming Magical-Zorse Story Magical-Zorse Please note* Some of the things that happen in this game don't make any sense if you're a knowlegable person, but bear in mind, this is just a game. |
Return to Menu |
Return to Menu |
oh, right. There is no menu. Just exit out of this game, it's over, you won |
ActionScript [AS1/AS2]
Frame 1function itemHandler1(obj, item) { _root._quality = "high"; } function itemHandler2(obj, item) { _root._quality = "medium"; } function itemHandler3(obj, item) { _root._quality = "low"; } function itemHandler4(obj, item) { stopAllSounds(); _root.music.attachSound("song1"); _root.music.start(0, 10000); } function itemHandler9(obj, item) { stopAllSounds(); } var music = new Sound(_root); var myMenu = new ContextMenu(); myMenu.hideBuiltInItems(); item1 = new ContextMenuItem("High Quality", itemHandler1); myMenu.customItems.push(item1); item2 = new ContextMenuItem("Medium Quality", itemHandler2); myMenu.customItems.push(item2); item3 = new ContextMenuItem("Low Quality", itemHandler3); myMenu.customItems.push(item3); item4 = new ContextMenuItem("Newgrounds Music", itemHandler4, true); myMenu.customItems.push(item4); item9 = new ContextMenuItem("No Music", itemHandler9); myMenu.customItems.push(item9); _root.menu = myMenu;Instance of Symbol 7 MovieClip in Frame 1onClipEvent (load) { _root.stop(); var totalBytes = _root.getBytesTotal(); this._xscale = 0; } onClipEvent (enterFrame) { var loadedBytes = _root.getBytesLoaded(); var percent = ((100 * loadedBytes) / totalBytes); this._xscale = percent; if (percent == 100) { _root.play(); } }Frame 2stop();Frame 3stop();Frame 4stop();Frame 5stop();Frame 6stop();Frame 7stop();Frame 8stop();Frame 9stop();Instance of Symbol 34 MovieClip "protein" in Frame 9onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.sizey = _root.sizey + 3; _root.friction = _root.friction + 0.01; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Frame 10stop();Frame 11stop();Frame 12stop();Frame 13stop();Frame 14stop();Frame 15stop();Frame 16stop();Frame 17stop();Frame 18stop();Frame 19stop(); sizey = 35; friction = 0.5; cell1 = 26; cell2 = 35; levelone = 0; health = 100;Instance of Symbol 32 MovieClip "virus" in Frame 19onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.sizey; this._width = _root.sizey; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.sizey >= 45) { _root.sizey = 45; } _root.sizey = _root.sizey - 0.01; if (_root.levelone == 2) { _root.gotoAndStop("frame2"); } }Instance of Symbol 47 MovieClip "cell" in Frame 19onClipEvent (enterFrame) { if ((_root.sizey >= _root.cell1) && (_root.cell.hitTest(_root.virus))) { _root.cell.nextFrame(); } this._width = _root.cell1; this._height = _root.cell1; } onClipEvent (load) { var speed = 5; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Instance of Symbol 51 MovieClip "cells2" in Frame 19onClipEvent (enterFrame) { if ((_root.sizey >= _root.cell2) && (_root.cells2.hitTest(_root.virus))) { _root.cells2.nextFrame(); } this._width = _root.cell2; this._height = _root.cell2; } onClipEvent (load) { var speed = 5; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Frame 20stop();Frame 21stop(); sizey = 35; friction = 0.5; cell1 = 26; cell2 = 35; cell3 = 45; levelone = 0; health = 100;Instance of Symbol 32 MovieClip "virus" in Frame 21onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.sizey; this._width = _root.sizey; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.sizey >= 53) { _root.sizey = 53; } _root.sizey = _root.sizey - 0.01; if (_root.levelone == 3) { _root.gotoAndStop("frame3"); } }Instance of Symbol 74 MovieClip "lvl2cell" in Frame 21onClipEvent (enterFrame) { if ((_root.sizey >= _root.cell1) && (_root.lvl2cell.hitTest(_root.virus))) { _root.lvl2cell.nextFrame(); } this._width = _root.cell1; this._height = _root.cell1; } onClipEvent (load) { var speed = 5; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Instance of Symbol 77 MovieClip "lvl2cell2" in Frame 21onClipEvent (enterFrame) { if ((_root.sizey >= _root.cell2) && (_root.lvl2cell2.hitTest(_root.virus))) { _root.lvl2cell2.nextFrame(); } this._width = _root.cell2; this._height = _root.cell2; } onClipEvent (load) { var speed = 6; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Instance of Symbol 81 MovieClip "lvl2cell3" in Frame 21onClipEvent (enterFrame) { if ((_root.sizey >= _root.cell3) && (_root.lvl2cell3.hitTest(_root.virus))) { _root.lvl2cell3.nextFrame(); } this._width = _root.cell3; this._height = _root.cell3; } onClipEvent (load) { var speed = 5; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Frame 22stop();Frame 23stop();Frame 100stop(); playersize = 35; friction = 0.5; bossize = 65; levelone = 0; health = 100;Instance of Symbol 32 MovieClip "virus" in Frame 100onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.playersize; this._width = _root.playersize; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.playersize >= 68) { _root.playersize = 68; } _root.playersize = _root.playersize - 0.01; if (_root.levelone == 1) { _root.gotoAndStop("frame4"); } }Instance of Symbol 34 MovieClip "protein" in Frame 100onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.playersize = _root.playersize + 3; _root.friction = _root.friction + 0.01; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Instance of Symbol 92 MovieClip "boss" in Frame 100onClipEvent (enterFrame) { if ((_root.playersize >= _root.bossize) && (_root.boss.hitTest(_root.virus))) { _root.boss.nextFrame(); } this._width = _root.bossize; this._height = _root.bossize; } onClipEvent (load) { var speed = 8; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Frame 101stop();Frame 102stop();Frame 103stop();Frame 104stop();Frame 105stop();Frame 106stop(); playersize = 35; friction = 0.5; wbc1 = 45; lvl4 = 45; levelone = 0; health = 100;Instance of Symbol 32 MovieClip "virus" in Frame 106onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.playersize; this._width = _root.playersize; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.playersize >= 50) { _root.playersize = 50; } if (_root.health >= 100) { _root.health = 100; } if (_root.health <= 0) { _root.gotoAndStop("death"); } _root.playersize = _root.playersize - 0.01; if (_root.levelone == 1) { _root.gotoAndStop("frame5"); } }Instance of Symbol 34 MovieClip "protein" in Frame 106onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.playersize = _root.playersize + 3; _root.friction = _root.friction + 0.01; _root.health = _root.health + 3; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Instance of Symbol 100 MovieClip "wbc" in Frame 106onClipEvent (load) { spd = 1; } onClipEvent (enterFrame) { this._width = wbc1; this._height = wbc1; if (_root.wbc.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Instance of Symbol 109 MovieClip "lvl4cell" in Frame 106onClipEvent (enterFrame) { if ((_root.playersize >= _root.lvl4) && (_root.lvl4cell.hitTest(_root.virus))) { _root.lvl4cell.nextFrame(); } this._width = _root.lvl4; this._height = _root.lvl4; } onClipEvent (load) { var speed = 8; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Frame 107stop();Frame 108stop();Instance of Symbol 34 MovieClip "protein" in Frame 108onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.playersize = _root.playersize + 3; _root.friction = _root.friction + 0.01; _root.health = _root.health + 3; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Frame 190stop(); playersize = 35; friction = 0.5; wbc1 = 45; whitebc2 = 45; lvl5 = 45; lvl6 = 40; levelone = 0; health = 100;Instance of Symbol 32 MovieClip "virus" in Frame 190onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.playersize; this._width = _root.playersize; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.playersize >= 50) { _root.playersize = 50; } if (_root.health >= 100) { _root.health = 100; } if (_root.health <= 0) { _root.gotoAndStop("death2"); } _root.playersize = _root.playersize - 0.01; if (_root.levelone == 2) { _root.gotoAndStop("frame6"); } }Instance of Symbol 34 MovieClip "protein" in Frame 190onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.playersize = _root.playersize + 3; _root.friction = _root.friction + 0.01; _root.health = _root.health + 3; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Instance of Symbol 100 MovieClip "wbc" in Frame 190onClipEvent (load) { spd = 1; } onClipEvent (enterFrame) { this._width = wbc1; this._height = wbc1; if (_root.wbc.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Instance of Symbol 120 MovieClip "wbc2" in Frame 190onClipEvent (load) { spd = 1.3; } onClipEvent (enterFrame) { this._width = whitebc2; this._height = whitebc2; if (_root.wbc2.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Instance of Symbol 51 MovieClip "lvl5cell" in Frame 190onClipEvent (enterFrame) { if ((_root.playersize >= _root.lvl5) && (_root.lvl5cell.hitTest(_root.virus))) { _root.lvl5cell.nextFrame(); } this._width = _root.lvl5; this._height = _root.lvl5; } onClipEvent (load) { var speed = 6; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Instance of Symbol 47 MovieClip "lvl6cell" in Frame 190onClipEvent (enterFrame) { if ((_root.playersize >= _root.lvl6) && (_root.lvl6cell.hitTest(_root.virus))) { _root.lvl6cell.nextFrame(); } this._width = _root.lvl6; this._height = _root.lvl6; } onClipEvent (load) { var speed = 6; var ticks = 0; var maxticks = 1; } onClipEvent (enterFrame) { ticks++; if (ticks >= maxticks) { _rotation = random(360); maxticks = random(10) + 5; ticks = 0; } YY = speed * Math.cos((Math.PI/180) * _rotation); XX = speed * Math.sin((Math.PI/180) * _rotation); if (_rotation > 180) { _y = (_y + YY); _x = (_x - XX); } else { _y = (_y - YY); _x = (_x + XX); } if (_x > 550) { _x = 0; } if (_x < 0) { _x = 550; } if (_y > 400) { _y = 0; } if (_y < 0) { _y = 400; } }Frame 191stop();Frame 192stop(); playersize = 35; friction = 0.5; wbc1 = 45; whitebc2 = 45; lvl5 = 45; lvl6 = 50; levelone = 2; health = 100;Instance of Symbol 34 MovieClip "protein" in Frame 192onClipEvent (enterFrame) { if (_root.virus.hitTest(_root.protein)) { _root.protein._x = (Math.random() * 200) + 100; _root.protein._y = (Math.random() * 300) + 100; _root.playersize = _root.playersize + 3; _root.friction = _root.friction + 0.01; _root.health = _root.health + 3; } if (_root.friction >= 0.7) { _root.friction = 0.7; } }Frame 193stop();Frame 194stop();Frame 195stop();Frame 196stop();Frame 197playersize = 25; friction = 0.5; wbc1 = 45; whitebc2 = 45; whitebc3 = 40; health = 100; timer = 0;Instance of Symbol 32 MovieClip "virus" in Frame 197onClipEvent (load) { vx = 5; vy = 5; } onClipEvent (enterFrame) { this._height = _root.playersize; this._width = _root.playersize; vx = vx * _root.friction; vy = vy * _root.friction; this._x = this._x + vx; this._y = this._y + vy; if (Key.isDown(38)) { vy = vy - 4; this.gotoAndStop(1); } if (Key.isDown(40)) { vy = vy + 4; this.gotoAndStop(2); } if (Key.isDown(37)) { vx = vx - 4; this.gotoAndStop(3); } if (Key.isDown(39)) { vx = vx + 4; this.gotoAndStop(4); } if (_x > 550) { _x = 550; } if (_x < 0) { _x = 0; } if (_y > 400) { _y = 400; } if (_y < 0) { _y = 0; } if (_root.playersize >= 45) { _root.playersize = 45; } if (_root.health >= 100) { _root.health = 100; } if (_root.health <= 0) { _root.gotoAndStop("death3"); } _root.timer++; if (_root.timer >= 1000) { _root.gotoAndStop("frame7"); } }Instance of Symbol 100 MovieClip "wbc" in Frame 197onClipEvent (load) { spd = 1; } onClipEvent (enterFrame) { this._width = wbc1; this._height = wbc1; if (_root.wbc.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Instance of Symbol 120 MovieClip "wbc2" in Frame 197onClipEvent (load) { spd = 1.3; } onClipEvent (enterFrame) { this._width = whitebc2; this._height = whitebc2; if (_root.wbc2.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Instance of Symbol 141 MovieClip "wbc3" in Frame 197onClipEvent (load) { spd = 1.3; } onClipEvent (enterFrame) { this._width = whitebc3; this._height = whitebc3; if (_root.wbc2.hitTest(_root.virus)) { _root.health = _root.health - 1; } if (_root.virus._x > _x) { _x = (_x + spd); } if (_root.virus._x < _x) { _x = (_x - spd); } if (_root.virus._y > _y) { _y = (_y + spd); } if (_root.virus._y < _y) { _y = (_y - spd); } }Frame 198stop();Frame 199stop();Frame 504stop();Symbol 13 Buttonon (release) { nextFrame(); }Symbol 32 MovieClip Frame 1stop();Symbol 46 MovieClip Frame 9stop(); _root.levelone = _root.levelone + 1;Symbol 47 MovieClip Frame 1stop();Symbol 47 MovieClip Frame 101stop();Symbol 51 MovieClip Frame 1stop();Symbol 51 MovieClip Frame 101stop(); levelone = levelone + 1;Instance of Symbol 54 MovieClip "healthbar" in Symbol 55 MovieClip Frame 1onClipEvent (enterFrame) { this._width = _root.health; }Symbol 74 MovieClip Frame 1stop();Symbol 74 MovieClip Frame 101stop();Symbol 77 MovieClip Frame 1stop();Symbol 77 MovieClip Frame 101stop();Symbol 81 MovieClip Frame 1stop();Symbol 81 MovieClip Frame 101stop();Symbol 84 Buttonon (release) { play(); }Symbol 92 MovieClip Frame 1stop();Symbol 92 MovieClip Frame 201stop();Symbol 109 MovieClip Frame 1stop();Symbol 109 MovieClip Frame 91stop();Symbol 116 Buttonon (release) { prevFrame(); }Symbol 144 Buttonon (release) { gotoAndPlay (200); }Symbol 146 Buttonon (release) { gotoAndStop (197); }
Library Items
Symbol 1 Sound [song1] | ||
Symbol 2 Bitmap | Used by:3 | |
Symbol 3 Graphic | Uses:2 | Used by:Timeline |
Symbol 4 Font | Used by:5 9 15 16 18 20 22 24 26 56 57 59 60 62 63 64 65 67 68 69 70 82 83 94 96 98 102 104 112 113 114 118 125 126 130 132 134 136 138 143 150 151 155 156 157 | |
Symbol 5 Text | Uses:4 | Used by:Timeline |
Symbol 6 Graphic | Used by:7 | |
Symbol 7 MovieClip | Uses:6 | Used by:Timeline |
Symbol 8 Graphic | Used by:Timeline | |
Symbol 9 Text | Uses:4 | Used by:Timeline |
Symbol 10 Graphic | Used by:13 84 144 | |
Symbol 11 Graphic | Used by:13 84 144 | |
Symbol 12 Graphic | Used by:13 84 144 | |
Symbol 13 Button | Uses:10 11 12 | Used by:Timeline |
Symbol 14 Graphic | Used by:Timeline | |
Symbol 15 Text | Uses:4 | Used by:Timeline |
Symbol 16 Text | Uses:4 | Used by:Timeline |
Symbol 17 Graphic | Used by:Timeline | |
Symbol 18 Text | Uses:4 | Used by:Timeline |
Symbol 19 Graphic | Used by:Timeline | |
Symbol 20 Text | Uses:4 | Used by:Timeline |
Symbol 21 Graphic | Used by:Timeline | |
Symbol 22 Text | Uses:4 | Used by:Timeline |
Symbol 23 Graphic | Used by:Timeline | |
Symbol 24 Text | Uses:4 | Used by:Timeline |
Symbol 25 Graphic | Used by:Timeline | |
Symbol 26 Text | Uses:4 | Used by:Timeline |
Symbol 27 Graphic | Used by:Timeline | |
Symbol 28 Graphic | Used by:32 | |
Symbol 29 Graphic | Used by:32 | |
Symbol 30 Graphic | Used by:32 | |
Symbol 31 Graphic | Used by:32 | |
Symbol 32 MovieClip | Uses:28 29 30 31 | Used by:Timeline |
Symbol 33 Graphic | Used by:34 | |
Symbol 34 MovieClip | Uses:33 | Used by:Timeline |
Symbol 35 Graphic | Used by:47 | |
Symbol 36 ShapeTweening | Used by:47 | |
Symbol 37 Graphic | Used by:47 | |
Symbol 38 Graphic | Used by:46 | |
Symbol 39 Graphic | Used by:46 | |
Symbol 40 Graphic | Used by:46 | |
Symbol 41 Graphic | Used by:46 | |
Symbol 42 Graphic | Used by:46 | |
Symbol 43 Graphic | Used by:46 | |
Symbol 44 Graphic | Used by:46 | |
Symbol 45 Graphic | Used by:46 | |
Symbol 46 MovieClip | Uses:38 39 40 41 42 43 44 45 | Used by:47 51 74 77 81 92 109 |
Symbol 47 MovieClip | Uses:35 36 37 46 | Used by:Timeline |
Symbol 48 Graphic | Used by:51 | |
Symbol 49 ShapeTweening | Used by:51 | |
Symbol 50 Graphic | Used by:51 77 | |
Symbol 51 MovieClip | Uses:48 49 50 46 | Used by:Timeline |
Symbol 52 Graphic | Used by:55 | |
Symbol 53 Graphic | Used by:54 | |
Symbol 54 MovieClip | Uses:53 | Used by:55 |
Symbol 55 MovieClip | Uses:52 54 | Used by:Timeline |
Symbol 56 Text | Uses:4 | Used by:Timeline |
Symbol 57 Text | Uses:4 | Used by:Timeline |
Symbol 58 Graphic | Used by:Timeline | |
Symbol 59 Text | Uses:4 | Used by:Timeline |
Symbol 60 Text | Uses:4 | Used by:Timeline |
Symbol 61 Graphic | Used by:Timeline | |
Symbol 62 Text | Uses:4 | Used by:Timeline |
Symbol 63 Text | Uses:4 | Used by:Timeline |
Symbol 64 Text | Uses:4 | Used by:Timeline |
Symbol 65 Text | Uses:4 | Used by:Timeline |
Symbol 66 Graphic | Used by:Timeline | |
Symbol 67 Text | Uses:4 | Used by:Timeline |
Symbol 68 Text | Uses:4 | Used by:Timeline |
Symbol 69 Text | Uses:4 | Used by:Timeline |
Symbol 70 Text | Uses:4 | Used by:Timeline |
Symbol 71 Graphic | Used by:74 | |
Symbol 72 ShapeTweening | Used by:74 | |
Symbol 73 Graphic | Used by:74 | |
Symbol 74 MovieClip | Uses:71 72 73 46 | Used by:Timeline |
Symbol 75 Graphic | Used by:77 | |
Symbol 76 ShapeTweening | Used by:77 | |
Symbol 77 MovieClip | Uses:75 76 50 46 | Used by:Timeline |
Symbol 78 Graphic | Used by:81 | |
Symbol 79 ShapeTweening | Used by:81 | |
Symbol 80 Graphic | Used by:81 | |
Symbol 81 MovieClip | Uses:78 79 80 46 | Used by:Timeline |
Symbol 82 Text | Uses:4 | Used by:Timeline |
Symbol 83 Text | Uses:4 | Used by:Timeline |
Symbol 84 Button | Uses:10 11 12 | Used by:Timeline |
Symbol 85 ShapeTweening | Used by:Timeline | |
Symbol 86 Graphic | Used by:Timeline | |
Symbol 87 Graphic | Used by:Timeline | |
Symbol 88 Graphic | Used by:Timeline | |
Symbol 89 Graphic | Used by:92 | |
Symbol 90 ShapeTweening | Used by:92 | |
Symbol 91 Graphic | Used by:92 | |
Symbol 92 MovieClip | Uses:89 90 91 46 | Used by:Timeline |
Symbol 93 Graphic | Used by:Timeline | |
Symbol 94 Text | Uses:4 | Used by:Timeline |
Symbol 95 Graphic | Used by:Timeline | |
Symbol 96 Text | Uses:4 | Used by:Timeline |
Symbol 97 Graphic | Used by:Timeline | |
Symbol 98 Text | Uses:4 | Used by:Timeline |
Symbol 99 Graphic | Used by:100 | |
Symbol 100 MovieClip | Uses:99 | Used by:Timeline |
Symbol 101 Graphic | Used by:Timeline | |
Symbol 102 Text | Uses:4 | Used by:Timeline |
Symbol 103 Graphic | Used by:Timeline | |
Symbol 104 Text | Uses:4 | Used by:Timeline |
Symbol 105 Graphic | Used by:Timeline | |
Symbol 106 Graphic | Used by:109 | |
Symbol 107 ShapeTweening | Used by:109 | |
Symbol 108 Graphic | Used by:109 | |
Symbol 109 MovieClip | Uses:106 107 108 46 | Used by:Timeline |
Symbol 110 Graphic | Used by:Timeline | |
Symbol 111 Font | Used by:112 | |
Symbol 112 Text | Uses:4 111 | Used by:Timeline |
Symbol 113 Text | Uses:4 | Used by:116 146 |
Symbol 114 Text | Uses:4 | Used by:116 146 |
Symbol 115 Graphic | Used by:116 146 | |
Symbol 116 Button | Uses:113 114 115 | Used by:Timeline |
Symbol 117 Graphic | Used by:Timeline | |
Symbol 118 Text | Uses:4 | Used by:Timeline |
Symbol 119 Graphic | Used by:120 | |
Symbol 120 MovieClip | Uses:119 | Used by:Timeline |
Symbol 121 ShapeTweening | Used by:Timeline | |
Symbol 122 Graphic | Used by:Timeline | |
Symbol 123 Graphic | Used by:Timeline | |
Symbol 124 Graphic | Used by:Timeline | |
Symbol 125 Text | Uses:4 | Used by:128 |
Symbol 126 Text | Uses:4 | Used by:128 |
Symbol 127 Graphic | Used by:128 | |
Symbol 128 Button | Uses:125 126 127 | Used by:Timeline |
Symbol 129 Graphic | Used by:Timeline | |
Symbol 130 Text | Uses:4 | Used by:Timeline |
Symbol 131 Graphic | Used by:Timeline | |
Symbol 132 Text | Uses:4 | Used by:Timeline |
Symbol 133 Graphic | Used by:Timeline | |
Symbol 134 Text | Uses:4 | Used by:Timeline |
Symbol 135 Graphic | Used by:Timeline | |
Symbol 136 Text | Uses:4 | Used by:Timeline |
Symbol 137 Graphic | Used by:Timeline | |
Symbol 138 Text | Uses:4 | Used by:Timeline |
Symbol 139 Graphic | Used by:Timeline | |
Symbol 140 Graphic | Used by:141 | |
Symbol 141 MovieClip | Uses:140 | Used by:Timeline |
Symbol 142 Graphic | Used by:Timeline | |
Symbol 143 Text | Uses:4 | Used by:Timeline |
Symbol 144 Button | Uses:10 11 12 | Used by:Timeline |
Symbol 145 Graphic | Used by:Timeline | |
Symbol 146 Button | Uses:113 114 115 | Used by:Timeline |
Symbol 147 ShapeTweening | Used by:Timeline | |
Symbol 148 Graphic | Used by:Timeline | |
Symbol 149 Graphic | Used by:Timeline | |
Symbol 150 Text | Uses:4 | Used by:Timeline |
Symbol 151 Text | Uses:4 | Used by:Timeline |
Symbol 152 Graphic | Used by:Timeline | |
Symbol 153 Graphic | Used by:Timeline | |
Symbol 154 Graphic | Used by:Timeline | |
Symbol 155 Text | Uses:4 | Used by:159 |
Symbol 156 Text | Uses:4 | Used by:159 |
Symbol 157 Text | Uses:4 | Used by:159 |
Symbol 158 Graphic | Used by:159 | |
Symbol 159 Button | Uses:155 156 157 158 | Used by:Timeline |
Instance Names
"virus" | Frame 9 | Symbol 32 MovieClip |
"protein" | Frame 9 | Symbol 34 MovieClip |
"cell" | Frame 9 | Symbol 47 MovieClip |
"cells2" | Frame 9 | Symbol 51 MovieClip |
"virus" | Frame 19 | Symbol 32 MovieClip |
"cell" | Frame 19 | Symbol 47 MovieClip |
"cells2" | Frame 19 | Symbol 51 MovieClip |
"virus" | Frame 20 | Symbol 32 MovieClip |
"virus" | Frame 21 | Symbol 32 MovieClip |
"lvl2cell" | Frame 21 | Symbol 74 MovieClip |
"lvl2cell2" | Frame 21 | Symbol 77 MovieClip |
"lvl2cell3" | Frame 21 | Symbol 81 MovieClip |
"virus" | Frame 22 | Symbol 32 MovieClip |
"virus" | Frame 100 | Symbol 32 MovieClip |
"protein" | Frame 100 | Symbol 34 MovieClip |
"boss" | Frame 100 | Symbol 92 MovieClip |
"virus" | Frame 101 | Symbol 32 MovieClip |
"wbc1" | Frame 103 | Symbol 100 MovieClip |
"virus" | Frame 106 | Symbol 32 MovieClip |
"protein" | Frame 106 | Symbol 34 MovieClip |
"wbc" | Frame 106 | Symbol 100 MovieClip |
"lvl4cell" | Frame 106 | Symbol 109 MovieClip |
"virus" | Frame 108 | Symbol 32 MovieClip |
"protein" | Frame 108 | Symbol 34 MovieClip |
"wbc" | Frame 108 | Symbol 100 MovieClip |
"wbc2" | Frame 108 | Symbol 120 MovieClip |
"virus" | Frame 190 | Symbol 32 MovieClip |
"protein" | Frame 190 | Symbol 34 MovieClip |
"wbc" | Frame 190 | Symbol 100 MovieClip |
"wbc2" | Frame 190 | Symbol 120 MovieClip |
"lvl5cell" | Frame 190 | Symbol 51 MovieClip |
"lvl6cell" | Frame 190 | Symbol 47 MovieClip |
"virus" | Frame 192 | Symbol 32 MovieClip |
"protein" | Frame 192 | Symbol 34 MovieClip |
"virus" | Frame 197 | Symbol 32 MovieClip |
"wbc" | Frame 197 | Symbol 100 MovieClip |
"wbc2" | Frame 197 | Symbol 120 MovieClip |
"wbc3" | Frame 197 | Symbol 141 MovieClip |
"virus" | Frame 198 | Symbol 32 MovieClip |
"healthbar" | Symbol 55 MovieClip Frame 1 | Symbol 54 MovieClip |
Special Tags
FileAttributes (69) | Timeline Frame 1 | Access local files only, Metadata not present, AS1/AS2. |
ExportAssets (56) | Timeline Frame 1 | Symbol 1 as "song1" |
Labels
"frame2" | Frame 20 |
"frame3" | Frame 22 |
"lala" | Frame 23 |
"frame4" | Frame 101 |
"death" | Frame 107 |
"frame5" | Frame 108 |
"death2" | Frame 191 |
"frame6" | Frame 192 |
"frame7" | Frame 198 |
"death3" | Frame 199 |
|