Frame 1
stop();
Frame 2
stop();
Instance of Symbol 115 MovieClip in Frame 2
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 3
bigger = 1;
speed = 1;
Counter = 1;
score = 0;
Orb = 1;
BlastWave = 0;
Slow = 1;
SlowText = 1;
FAttack = 1;
Mine = 1;
lives = 5;
_root.ball._xscale = 15;
_root.ball._yscale = 15;
_root.ball.enemyMoveSpeed = 2;
_root.Orb_Move.gotoAndStop(1);
_root.S_A.gotoAndStop(1);
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 128 MovieClip "Virus" in Frame 3
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood" in Frame 3
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 3
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 3
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 157 MovieClip "white1" in Frame 3
onClipEvent (load) {
function reset() {
this._x = 800;
this._y = random(800) - 200;
Enemy = 0;
Stop = 0;
}
reset();
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 8) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
Instance of Symbol 157 MovieClip "white2" in Frame 3
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
Stop = 0;
}
reset();
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 8) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
_root.blood2.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
Instance of Symbol 160 MovieClip "Orb_Move" in Frame 3
onClipEvent (enterFrame) {
if (_root.Orb == 2) {
this._x = _root.ball._x;
this._y = _root.ball._y;
}
}
Instance of Symbol 168 MovieClip "S_A" in Frame 3
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (_root.FAttack == 2) {
this._x = _root.ball._x;
this._y = _root.ball._y;
_root.S_A.gotoAndPlay(5);
_root.FAttack = 0;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (_root.FAttack == 3) {
this._x = _root.ball._x;
this._y = _root.ball._y;
_root.S_A.gotoAndPlay(30);
_root.FAttack = 0;
}
}
}
onClipEvent (enterFrame) {
if (Key.isDown(32)) {
if (_root.FAttack == 4) {
_root.S_A.gotoAndPlay(95);
_root.FAttack = 0;
this._x = _root.ball._x;
this._y = _root.ball._y;
}
}
}
Instance of Symbol 179 MovieClip "MineAttack" in Frame 3
/* no clip actions */
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 3
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 94 MovieClip "ball" in Frame 3
onClipEvent (enterFrame) {
myRadians = Math.atan2(_root._ymouse - this._y, _root._xmouse - this._x);
myDegrees = Math.round((myRadians * 180) / Math.PI);
_root.yChange = Math.round(_root._ymouse - this._y);
_root.xChange = Math.round(_root._xmouse - this._x);
_root.yMove = Math.round(_root.yChange / 45);
_root.xMove = Math.round(_root.xChange / 45);
this._y = this._y + _root.yMove;
this._x = this._x + _root.xMove;
}
onClipEvent (load) {
enemyMoveSpeed = 1;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root._xmouse < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root._xmouse > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root._ymouse < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root._ymouse > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.6;
yS = yS * 0.6;
}
onClipEvent (enterFrame) {
if (_root.BlastWave == 1) {
if (Key.isDown(32)) {
_root.AOE.gotoAndPlay(2);
_root.AOE._x = this._x;
_root.AOE._y = this._y;
_root.BlastWave = 2;
}
}
}
onClipEvent (enterFrame) {
if (_root.Mine == 2) {
if (Key.isDown(32)) {
if (!this.hitTest(_root.VirusBrain)) {
_root.MineAttack._x = this._x;
_root.MineAttack._y = this._y;
_root.MineAttack.gotoAndPlay(2);
_root.Mine = 3;
}
}
}
}
Instance of Symbol 183 MovieClip "Cash" in Frame 3
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 3
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 3
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 3
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 3
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 3
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (_root.lives == 3) {
if (_root.danger == 100) {
_root.danger = 0;
_root.lives = _root.lives - 1;
}
}
}
onClipEvent (enterFrame) {
if (_root.lives == 0) {
_root.gotoAndStop("Menu");
}
}
Instance of Symbol 205 MovieClip in Frame 3
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 213 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (_root.score <= 0) {
_root.score = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 3
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 4
bigger = 1;
speed = 1;
Counter = 1;
Orb = 1;
BlastWave = 0;
Slow = 1;
Mine = 1;
_root.ball._xscale = 15;
_root.ball._yscale = 15;
_root.ball.enemyMoveSpeed = 2;
_root.Orb_Move.gotoAndStop(1);
_root.S_A.gotoAndStop(1);
Frame 7
stop();
Instance of Symbol 115 MovieClip in Frame 7
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 12
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 12
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 17
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 17
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 255 MovieClip "Virus" in Frame 17
onClipEvent (load) {
this._xscale = 50;
this._yscale = 50;
}
onClipEvent (enterFrame) {
if (this._xscale <= 50) {
this._xscale = 50;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 50) {
this._yscale = 50;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(35);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 17
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 17
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 261 MovieClip "white2" in Frame 17
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
Stop = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 261 MovieClip "white3" in Frame 17
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
Stop = 0;
}
reset();
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 261 MovieClip "white1" in Frame 17
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
Stop = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 17
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 17
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 17
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 17
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 17
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 17
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 17
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 17
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 17
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 17
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 17
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 17
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 22
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 22
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 27
stop();
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 304 MovieClip "UpgradeSize" in Frame 27
on (release) {
if (_root.bigger < 4) {
if (_root.score >= 400) {
_root.ball._xscale = _root.ball._xscale + 1;
_root.ball._yscale = _root.ball._yscale + 1;
_root.score = _root.score - 400;
_root.bigger = _root.bigger + 1;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
_root.bigger = 4;
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 2) {
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 3) {
this.gotoAndStop(10);
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 4) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 1) {
this.gotoAndStop(1);
}
}
on (rollOver) {
_root.Display.gotoAndStop(10);
myColor = new Color("_root.UpgradeSize");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.UpgradeSize");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 310 MovieClip "Reflex" in Frame 27
on (release) {
if (_root.speed < 4) {
if (_root.score >= 400) {
_root.ball.enemyMoveSpeed = _root.ball.enemyMoveSpeed + 0.5;
_root.score = _root.score - 400;
_root.speed = _root.speed + 1;
}
}
}
onClipEvent (enterFrame) {
if (_root.speed >= 4) {
_root.speed = 4;
}
}
onClipEvent (enterFrame) {
if (_root.speed == 2) {
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.speed == 3) {
this.gotoAndStop(10);
}
}
onClipEvent (enterFrame) {
if (_root.speed == 4) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
if (_root.speed == 1) {
this.gotoAndStop(1);
}
}
on (rollOver) {
_root.Display.gotoAndStop(15);
myColor = new Color("_root.Reflex");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.Reflex");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 317 MovieClip "Orb_Button" in Frame 27
on (release) {
if (_root.speed == 4) {
if (_root.Orb == 1) {
if (_root.score >= 2000) {
_root.Orb_Move.gotoAndPlay(2);
_root.score = _root.score - 2000;
_root.Orb = _root.Orb + 1;
}
}
}
}
onClipEvent (enterFrame) {
if (_root.Orb >= 2) {
_root.Orb = 2;
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.speed == 4) {
this.Locked.gotoAndStop(5);
this.Gray.gotoAndStop(5);
}
}
on (rollOver) {
_root.Display.gotoAndStop(20);
myColor = new Color("_root.Orb_Button");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.Orb_Button");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 320 MovieClip "Blast_Wave" in Frame 27
on (release) {
if (_root.bigger == 4) {
if (_root.BlastWave == 0) {
if (_root.score >= 2000) {
_root.score = _root.score - 2000;
_root.BlastWave = _root.BlastWave + 1;
}
}
}
}
onClipEvent (enterFrame) {
if (_root.BlastWave == 1) {
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 4) {
this.Locked.gotoAndStop(5);
this.Gray.gotoAndStop(5);
}
}
on (rollOver) {
_root.Display.gotoAndStop(25);
myColor = new Color("_root.Blast_Wave");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.Blast_Wave");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 323 MovieClip "Slow_Aura" in Frame 27
on (release) {
if (_root.Slow < 4) {
if (_root.score >= 400) {
_root.score = _root.score - 400;
_root.Slow = _root.Slow + 1;
_root.SlowText = _root.SlowText + 1;
_root.FAttack = _root.FAttack + 1;
}
}
}
onClipEvent (enterFrame) {
if (_root.Slow >= 4) {
_root.Slow = 4;
}
}
onClipEvent (enterFrame) {
if (_root.SlowText == 2) {
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.SlowText == 3) {
this.gotoAndStop(10);
}
}
onClipEvent (enterFrame) {
if (_root.SlowText == 4) {
this.gotoAndStop(15);
}
}
onClipEvent (enterFrame) {
if (_root.SlowText == 1) {
this.gotoAndStop(1);
}
}
on (rollOver) {
_root.Display.gotoAndStop(30);
myColor = new Color("_root.Slow_Aura");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.Slow_Aura");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 326 MovieClip "Mine_Button" in Frame 27
on (release) {
if (_root.Slow == 4) {
if (_root.Mine == 1) {
if (_root.score >= 2000) {
_root.score = _root.score - 2000;
_root.Mine = _root.Mine + 1;
}
}
}
}
onClipEvent (enterFrame) {
if (_root.Mine == 2) {
this.gotoAndStop(5);
}
}
onClipEvent (enterFrame) {
if (_root.Slow == 4) {
this.Locked.gotoAndStop(5);
this.Gray.gotoAndStop(5);
}
}
on (rollOver) {
_root.Display.gotoAndStop(35);
myColor = new Color("_root.Mine_Button");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.Mine_Button");
myColor.setTint(255, 225, 0, 0);
}
Instance of Symbol 115 MovieClip in Frame 27
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 32
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 336 MovieClip "Virus" in Frame 32
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood" in Frame 32
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 32
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 32
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 32
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 341 MovieClip "white2" in Frame 32
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 341 MovieClip "white1" in Frame 32
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger == 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 341 MovieClip "white3" in Frame 32
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 341 MovieClip "white4" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 32
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 32
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 32
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 32
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 32
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 32
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 32
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 32
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 32
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 37
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 37
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 42
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 42
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 42
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 42
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 42
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 42
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 352 MovieClip "Virus" in Frame 42
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(15);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 354 MovieClip "white1" in Frame 42
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 354 MovieClip "white2" in Frame 42
onClipEvent (load) {
function reset() {
this._x = 600;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 354 MovieClip "white4" in Frame 42
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 354 MovieClip "white3" in Frame 42
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 354 MovieClip "white5" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 42
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 42
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 42
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 42
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 42
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 42
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 42
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 42
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 42
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 47
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 47
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 52
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 364 MovieClip "Virus" in Frame 52
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 137 MovieClip "blood6" in Frame 52
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white6)) {
this._x = _root.white6._x;
this._y = _root.white6._y;
}
}
Instance of Symbol 369 MovieClip "white1" in Frame 52
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 369 MovieClip "white2" in Frame 52
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 369 MovieClip "white3" in Frame 52
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 369 MovieClip "white4" in Frame 52
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 369 MovieClip "white5" in Frame 52
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(600) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 369 MovieClip "white6" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.bloo6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood6.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 52
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 52
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 52
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 52
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 52
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 52
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 52
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 52
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 52
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 57
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 57
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 62
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 380 MovieClip "Virus" in Frame 62
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 137 MovieClip "blood6" in Frame 62
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white6)) {
this._x = _root.white6._x;
this._y = _root.white6._y;
}
}
Instance of Symbol 383 MovieClip "white1" in Frame 62
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 383 MovieClip "white2" in Frame 62
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 383 MovieClip "white3" in Frame 62
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 383 MovieClip "white4" in Frame 62
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 383 MovieClip "white5" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = -150;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 383 MovieClip "white6" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.1;
yS = yS * 0.1;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood6.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 62
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 62
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 62
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 62
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOod" in Frame 62
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOod)) {
_root.FOod._x = _root.ball._x;
_root.FOod._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 62
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 62
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 62
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 62
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 67
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 67
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 72
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 137 MovieClip "blood6" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white6)) {
this._x = _root.white6._x;
this._y = _root.white6._y;
}
}
Instance of Symbol 391 MovieClip "Virus" in Frame 72
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood7" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white7)) {
this._x = _root.white7._x;
this._y = _root.white7._y;
}
}
Instance of Symbol 137 MovieClip "blood8" in Frame 72
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white8)) {
this._x = _root.white8._x;
this._y = _root.white8._y;
}
}
Instance of Symbol 394 MovieClip "white1" in Frame 72
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 4;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white2" in Frame 72
onClipEvent (load) {
function reset() {
this._x = 750;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 4;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white4" in Frame 72
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white6" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood6.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white3" in Frame 72
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white5" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = -150;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white7" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood7.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 394 MovieClip "white8" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = -150;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood8.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 72
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 72
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 72
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 72
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOod" in Frame 72
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOod)) {
_root.FOod._x = _root.ball._x;
_root.FOod._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 72
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 72
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 72
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 72
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 77
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 77
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 82
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 137 MovieClip "blood6" in Frame 82
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white6)) {
this._x = _root.white6._x;
this._y = _root.white6._y;
}
}
Instance of Symbol 410 MovieClip "Virus" in Frame 82
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 412 MovieClip "white1" in Frame 82
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 412 MovieClip "white2" in Frame 82
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 412 MovieClip "white3" in Frame 82
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 412 MovieClip "white4" in Frame 82
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 412 MovieClip "white5" in Frame 82
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 412 MovieClip "white6" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood6.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 82
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 82
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 82
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 82
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOod" in Frame 82
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOod)) {
_root.FOod._x = _root.ball._x;
_root.FOod._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 82
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 82
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 82
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 82
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 87
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 87
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 92
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 419 MovieClip "Virus" in Frame 92
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood" in Frame 92
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 92
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 92
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 92
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 92
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 421 MovieClip "white1" in Frame 92
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 3;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 421 MovieClip "white2" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 3;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 421 MovieClip "white3" in Frame 92
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 3;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
Instance of Symbol 421 MovieClip "white4" in Frame 92
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 3;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 3;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 421 MovieClip "white5" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(800) - 100;
this._y = 650;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 3;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 5;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 92
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 92
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 92
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 92
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOod" in Frame 92
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOod)) {
_root.FOod._x = _root.ball._x;
_root.FOod._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 92
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 92
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 92
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 92
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 97
stopAllSounds();
stop();
Instance of Symbol 115 MovieClip in Frame 97
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 102
stop();
health = 100;
danger = 0;
Color.prototype.setTint = function (r, g, b, amount) {
var _local2 = new Object();
_local2.ra = (_local2.ga = (_local2.ba = 100 - amount));
var _local3 = amount / 100;
_local2.rb = r * _local3;
_local2.gb = g * _local3;
_local2.bb = b * _local3;
this.setTransform(_local2);
};
Instance of Symbol 137 MovieClip "blood" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 137 MovieClip "blood2" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white2)) {
this._x = _root.white2._x;
this._y = _root.white2._y;
}
}
Instance of Symbol 137 MovieClip "blood3" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white3)) {
this._x = _root.white3._x;
this._y = _root.white3._y;
}
}
Instance of Symbol 137 MovieClip "blood4" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white4)) {
this._x = _root.white4._x;
this._y = _root.white4._y;
}
}
Instance of Symbol 137 MovieClip "blood5" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white5)) {
this._x = _root.white5._x;
this._y = _root.white5._y;
}
}
Instance of Symbol 433 MovieClip "Virus" in Frame 102
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
onClipEvent (enterFrame) {
if (_root.health <= 0) {
this.gotoAndStop(40);
_root.VirusBrain.gotoAndStop(5);
}
}
Instance of Symbol 137 MovieClip "blood6" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white6)) {
this._x = _root.white6._x;
this._y = _root.white6._y;
}
}
Instance of Symbol 137 MovieClip "blood7" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white7)) {
this._x = _root.white7._x;
this._y = _root.white7._y;
}
}
Instance of Symbol 137 MovieClip "blood8" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white8)) {
this._x = _root.white8._x;
this._y = _root.white8._y;
}
}
Instance of Symbol 137 MovieClip "blood9" in Frame 102
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white8)) {
this._x = _root.white8._x;
this._y = _root.white8._y;
}
}
Instance of Symbol 435 MovieClip "white1" in Frame 102
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 5;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 5;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white2" in Frame 102
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 5;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white2");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood2.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 5;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood2.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white3" in Frame 102
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white3");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood3.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood3.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white4" in Frame 102
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white4");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood4.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood4.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white5" in Frame 102
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white5");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood5.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood5.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white6" in Frame 102
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood6.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood6.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white9" in Frame 102
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 5;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white6");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood9.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 5;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood9.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white7" in Frame 102
onClipEvent (load) {
function reset() {
this._x = -100;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 4;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white7");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white7");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood7.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 4;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood7.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 435 MovieClip "white8" in Frame 102
onClipEvent (load) {
function reset() {
this._x = 700;
this._y = random(800) - 400;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 5;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.SoundBox.gotoAndPlay(15);
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
if (!_root.S_A.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.Orb_Move._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.Orb_Move._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.Orb_Move._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.AOE)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.AOE._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.AOE._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.AOE._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.AOE._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white8");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white8");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Orb_Move)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 11) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 24) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 2) {
if (Enemy == 25) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 10) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 22) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 3) {
if (Enemy == 2) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 17) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 3) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (_root.bigger >= 4) {
if (Enemy == 8) {
reset();
Enemy = 0;
_root.blood8.gotoAndPlay(2);
_root.score = _root.score + 10;
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.S_A)) {
Stop = 1;
} else {
Stop = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 1) {
enemyMoveSpeed = 0;
}
}
onClipEvent (enterFrame) {
if (Stop == 0) {
enemyMoveSpeed = 5;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.MineAttack)) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
_root.blood8.gotoAndPlay(2);
reset();
_root.score = _root.score + 10;
}
}
}
Instance of Symbol 115 MovieClip in Frame 102
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 102
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
Instance of Symbol 183 MovieClip "Cash" in Frame 102
onClipEvent (load) {
GetCash = 0;
}
onClipEvent (enterFrame) {
if (GetCash == 0) {
if (_root.BG.hitTest(_root.ball)) {
Cash = Math.round(Math.random() * 500);
}
}
}
onClipEvent (enterFrame) {
if (Cash == 25) {
Cash = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndStop(1);
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Cash)) {
_root.Cash._x = _root.ball._x;
_root.Cash._y = _root.ball._y;
GetCash = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
_root.Cash.gotoAndStop(2);
_root.SmokeRing.gotoAndPlay(2);
GetCash = 1;
_root.score = _root.score + 50;
_root.SoundBox.gotoAndPlay(19);
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 102
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 188 MovieClip "Food" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Food)) {
_root.Food._x = _root.ball._x;
_root.Food._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FooD" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FooD)) {
_root.FooD._x = _root.ball._x;
_root.FooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOOD" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOOD)) {
_root.FOOD._x = _root.ball._x;
_root.FOOD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fOOd" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fOOd)) {
_root.fOOd._x = _root.ball._x;
_root.fOOd._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "fooD" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.fooD)) {
_root.fooD._x = _root.ball._x;
_root.fooD._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 188 MovieClip "FOod" in Frame 102
onClipEvent (load) {
function reset() {
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(1);
}
reset();
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.FOod)) {
_root.FOod._x = _root.ball._x;
_root.FOod._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
_root.score = _root.score + 5;
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 102
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 1000);
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 12) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 102
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
onClipEvent (enterFrame) {
if (this._yscale == 100) {
stopAllSounds();
_root.lives = _root.lives - 1;
_root.gotoAndStop("Fail");
}
}
Instance of Symbol 205 MovieClip in Frame 102
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 102
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Frame 107
stopAllSounds();
stop();
_root.Orb_Move.gotoAndStop(1);
_root.S_A.gotoAndStop(1);
Instance of Symbol 446 MovieClip in Frame 107
on (release) {
_root.gotoAndStop("Menu");
}
Instance of Symbol 115 MovieClip in Frame 107
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Instance of Symbol 217 MovieClip in Frame 117
on (release) {
stopAllSounds();
_root.gotoAndStop("Menu");
}
Instance of Symbol 115 MovieClip in Frame 117
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Frame 472
stop();
Frame 492
stop();
health = 100;
danger = 0;
Instance of Symbol 128 MovieClip "Virus" in Frame 492
onClipEvent (enterFrame) {
if (this._xscale <= 100) {
this._xscale = 100;
}
}
onClipEvent (enterFrame) {
if (this._yscale <= 100) {
this._yscale = 100;
}
}
Instance of Symbol 137 MovieClip "blood" in Frame 492
onClipEvent (enterFrame) {
if (_root.BG.hitTest(_root.white1)) {
this._x = _root.white1._x;
this._y = _root.white1._y;
}
}
Instance of Symbol 157 MovieClip "white1" in Frame 492
onClipEvent (load) {
function reset() {
this._x = 800;
this._y = random(800) - 200;
Enemy = 0;
}
}
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
this.gotoAndStop(25);
}
onClipEvent (enterFrame) {
if (_root.Virus._x < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root.Virus._x > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root.Virus._y < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root.Virus._y > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.3;
yS = yS * 0.3;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.Virus._x, _root.Virus._y)) {
reset();
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
_root.SoundBox.gotoAndPlay(5);
if (_root.ball._x < _x) {
xS = xS + (enemyMoveSpeed + 15);
} else if (_root.ball._x > _x) {
xS = xS - (enemyMoveSpeed + 15);
}
if (_root.ball._y < _y) {
yS = yS + (enemyMoveSpeed + 15);
} else if (_root.ball._y > _y) {
yS = yS - (enemyMoveSpeed + 15);
}
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 70);
} else if (!this.hitTest(_root.ball)) {
myColor = new Color("_root.white1");
myColor.setTint(255, 225, 0, 0);
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.ball)) {
Enemy = Math.round(Math.random() * 25);
}
}
onClipEvent (enterFrame) {
if (Enemy == 12) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 20) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 23) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 5) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 14) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 8) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
onClipEvent (enterFrame) {
if (Enemy == 17) {
_root.blood.gotoAndPlay(2);
reset();
Enemy = 0;
_root.score = _root.score + 10;
}
}
Instance of Symbol 181 MovieClip "VirusBrain" in Frame 492
onClipEvent (enterFrame) {
this._x = _root.Virus._x;
this._y = _root.Virus._y;
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.white1)) {
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.white2)) {
_root.Virus._xscale = _root.Virus._xscale + 5;
_root.Virus._yscale = _root.Virus._yscale + 5;
_root.danger = _root.danger + 2;
}
}
Instance of Symbol 94 MovieClip "ball" in Frame 492
onClipEvent (load) {
enemyMoveSpeed = 2;
xS = (yS = 0);
}
onClipEvent (enterFrame) {
if (_root._xmouse < _x) {
xS = xS - enemyMoveSpeed;
} else if (_root._xmouse > _x) {
xS = xS + enemyMoveSpeed;
}
if (_root._ymouse < _y) {
yS = yS - enemyMoveSpeed;
} else if (_root._ymouse > _y) {
yS = yS + enemyMoveSpeed;
}
_x = (_x + xS);
_y = (_y + yS);
xS = xS * 0.6;
yS = yS * 0.6;
}
onClipEvent (enterFrame) {
if (_root.BlastWave == 1) {
if (Key.isDown(32)) {
_root.AOE.gotoAndPlay(2);
_root.AOE._x = this._x;
_root.AOE._y = this._y;
_root.BlastWave = 2;
}
}
}
onClipEvent (enterFrame) {
if (_root.Mine == 2) {
if (Key.isDown(32)) {
_root.MineAttack._x = this._x;
_root.MineAttack._y = this._y;
_root.MineAttack.gotoAndPlay(2);
_root.Mine = 3;
}
}
}
Instance of Symbol 186 MovieClip "SmokeRing" in Frame 492
onClipEvent (enterFrame) {
this._x = _root.VirusBrain._x;
this._y = _root.VirusBrain._y;
}
Instance of Symbol 453 MovieClip "Tur_1" in Frame 492
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Tur_1)) {
_root.Tur_1._x = _root.ball._x;
_root.Tur_1._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
}
}
Instance of Symbol 453 MovieClip "Tur_3" in Frame 492
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Tur_3)) {
_root.Tur_3._x = _root.ball._x;
_root.Tur_3._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
}
}
Instance of Symbol 453 MovieClip "Tur_2" in Frame 492
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.Tur_2)) {
_root.Tur_2._x = _root.ball._x;
_root.Tur_2._y = _root.ball._y;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndPlay(35);
_root.health = _root.health - 3;
_root.SmokeRing.gotoAndPlay(2);
}
}
Instance of Symbol 191 MovieClip "HealPill" in Frame 492
onClipEvent (load) {
GetHeal = 0;
}
onClipEvent (enterFrame) {
if (_root.N_Button.Story == 7) {
if (GetHeal == 0) {
if (_root.BG.hitTest(_root.ball)) {
Heal = Math.round(Math.random() * 5);
trace((Heal = Math.round(Math.random() * 5)));
}
}
}
}
onClipEvent (enterFrame) {
if (_root.ball.hitTest(_root.HealPill)) {
_root.HealPill._x = _root.ball._x;
_root.HealPill._y = _root.ball._y;
GetHeal = 3;
}
}
onClipEvent (enterFrame) {
if (this.hitTest(_root.VirusBrain)) {
this.gotoAndStop(45);
_root.HealAction.gotoAndPlay(2);
_root.SmokeRing.gotoAndPlay(2);
GetHeal = 1;
}
}
onClipEvent (enterFrame) {
if (Heal == 5) {
Heal = 0;
this._x = random(300) + 100;
this._y = random(300) + 100;
this.gotoAndPlay(2);
GetHeal = 3;
}
}
Instance of Symbol 198 MovieClip in Frame 492
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger >= 100) {
_root.danger = 100;
}
}
onClipEvent (enterFrame) {
this._yscale = _root.danger;
if (_root.danger <= 0) {
_root.danger = 0;
}
}
Instance of Symbol 205 MovieClip in Frame 492
onClipEvent (enterFrame) {
this._xscale = _root.health;
if (_root.health <= 0) {
_root.health = 0;
}
}
Instance of Symbol 221 MovieClip "HealAction" in Frame 492
onClipEvent (enterFrame) {
if (_root.HealPill.GetHeal == 1) {
if (_root.danger >= 10) {
if (Key.isDown(16)) {
_root.SoundBox.gotoAndPlay(10);
_root.danger = _root.danger - 10;
this.gotoAndStop(1);
_root.HealPill.GetHeal = 0;
}
}
}
}
Instance of Symbol 463 MovieClip "N_Button" in Frame 492
onClipEvent (load) {
Story = 0;
}
on (release) {
if (Story == 0) {
_root.Guide.gotoAndStop(5);
Story = Story + 1;
} else if (Story == 1) {
_root.Guide.gotoAndStop(10);
_root.Tur_1.gotoAndPlay(2);
_root.Tur_2.gotoAndPlay(2);
_root.Tur_3.gotoAndPlay(2);
Story = Story + 1;
} else if (Story == 2) {
_root.Guide.gotoAndStop(15);
Story = Story + 1;
} else if (Story == 3) {
_root.white1.gotoAndPlay(1);
Story = Story + 1;
} else if (Story == 4) {
_root.white1.gotoAndStop(25);
_root.Guide.gotoAndStop(20);
_root.danger = 10;
Story = Story + 1;
} else if (Story == 5) {
_root.Guide.gotoAndStop(25);
Story = Story + 1;
} else if (Story == 6) {
_root.Guide.gotoAndStop(30);
Story = Story + 1;
} else if (Story == 7) {
stopAllSounds();
_root.gotoAndStop("Menu");
}
}
Instance of Symbol 115 MovieClip in Frame 492
onClipEvent (enterFrame) {
Mouse.hide();
this.startDrag("true");
}
Symbol 3 MovieClip Frame 1
xMin = 0;
xMax = 550;
yMin = 0;
yMax = 400;
minSize = 10;
maxSize = 50;
easeFactor = 10;
randomX = (Math.random() * (xMax - xMin)) + xMin;
randomY = (Math.random() * (yMax - yMin)) + yMin;
randomSize = (Math.random() * (maxSize - minSize)) + minSize;
Symbol 3 MovieClip Frame 3
distance = Math.sqrt(Math.pow(this._x - randomX, 2) + Math.pow(this._y - randomY, 2));
if (Math.abs(this._width - maxSize) > 1) {
this._width = this._width + ((randomSize - this._width) / 2);
this._height = this._height + ((randomSize - this._height) / 2);
}
if (distance > 1) {
this._x = this._x + ((randomX - this._x) / easeFactor);
this._y = this._y + ((randomY - this._y) / easeFactor);
gotoAndPlay (2);
} else {
gotoAndPlay (1);
}
Symbol 49 Button
on (release) {
getURL ("http://www.newgrounds.com", "_blank");
}
Symbol 51 MovieClip Frame 40
stop();
Symbol 77 Button
on (release) {
startMovie();
}
Symbol 78 MovieClip Frame 1
function timerHandler() {
if (!loadingComplete) {
var _local4 = _root.getBytesLoaded() / _root.getBytesTotal();
bar._xscale = 100 * _local4;
if (_local4 == 1) {
loadingComplete = true;
if (AUTO_PLAY) {
startMovie();
} else {
gotoAndStop ("loaded");
}
return(undefined);
}
}
dt = getTimer() - time;
time = time + dt;
frameAccum = frameAccum + dt;
var _local3 = 0;
while ((frameAccum >= FRAME_TIME) && (_local3 < MAX_FRAME_SKIP)) {
advanceFrame(tankLogo, true, true);
advanceFrame(loadingText, false, true);
advanceFrame(barGfx, false, true);
if (loadingComplete) {
advanceFrame(this, false, false);
}
(frameAccum = frameAccum - FRAME_TIME);
_local3++;
}
updateAfterEvent();
}
function advanceFrame(clip, recurse, loop) {
if (!clip) {
return(undefined);
}
clip.stop();
if (clip._currentframe == clip._totalframes) {
if (loop) {
clip.gotoAndStop(1);
}
} else {
clip.nextFrame();
}
if (recurse) {
for (childName in clip) {
if (typeof(clip[childName]) == "movieclip") {
advanceFrame(clip[childName], recurse, loop);
}
}
}
}
function startMovie() {
clearInterval(intervalId);
_root.play();
}
_root.stop();
stop();
var FRAME_TIME = 33.3333333333333;
var AUTO_PLAY = false;
var MAX_FRAME_SKIP = 5;
var loadingComplete;
var intervalId;
var time;
var frameAccum;
loadingComplete = false;
intervalId = setInterval(this, "timerHandler", FRAME_TIME / 2);
frameAccum = 0;
time = getTimer();
timerHandler();
Symbol 97 Button
on (release) {
stopAllSounds();
_root.gotoAndPlay("Level1");
}
Symbol 101 Button
on (release) {
stopAllSounds();
_root.gotoAndStop("Tutorial");
}
Symbol 105 Button
on (release) {
stopAllSounds();
_root.gotoAndPlay("Credits");
}
Symbol 109 MovieClip Frame 10
stop();
Symbol 112 MovieClip Frame 10
stop();
Symbol 128 MovieClip Frame 35
gotoAndPlay (1);
Symbol 128 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 137 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 1
stop();
Symbol 151 MovieClip Frame 30
_root.LevelComplete.gotoAndPlay(2);
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
Symbol 151 MovieClip Frame 31
stop();
Symbol 154 MovieClip Frame 1
stop();
Symbol 154 MovieClip Frame 30
_root.gotoAndStop("Victory");
Symbol 157 MovieClip Frame 20
gotoAndPlay (1);
_root.reset();
Symbol 157 MovieClip Frame 25
stop();
Symbol 160 MovieClip Frame 1
stop();
Symbol 160 MovieClip Frame 40
gotoAndPlay (2);
Symbol 168 MovieClip Frame 1
stop();
Symbol 168 MovieClip Frame 5
play();
Symbol 168 MovieClip Frame 6
play();
Symbol 168 MovieClip Frame 7
play();
Symbol 168 MovieClip Frame 8
play();
Symbol 168 MovieClip Frame 9
play();
Symbol 168 MovieClip Frame 10
play();
Symbol 168 MovieClip Frame 11
play();
Symbol 168 MovieClip Frame 12
play();
Symbol 168 MovieClip Frame 13
play();
Symbol 168 MovieClip Frame 14
play();
Symbol 168 MovieClip Frame 15
play();
Symbol 168 MovieClip Frame 16
play();
Symbol 168 MovieClip Frame 17
play();
Symbol 168 MovieClip Frame 18
play();
Symbol 168 MovieClip Frame 19
play();
Symbol 168 MovieClip Frame 20
play();
Symbol 168 MovieClip Frame 21
play();
Symbol 168 MovieClip Frame 22
play();
Symbol 168 MovieClip Frame 23
play();
Symbol 168 MovieClip Frame 24
play();
Symbol 168 MovieClip Frame 25
play();
Symbol 168 MovieClip Frame 26
stop();
if (_root.Slow == 2) {
_root.FAttack = 2;
} else if (_root.Slow == 3) {
_root.FAttack = 3;
} else if (_root.Slow == 4) {
_root.FAttack = 4;
}
Symbol 168 MovieClip Frame 30
play();
Symbol 168 MovieClip Frame 31
play();
Symbol 168 MovieClip Frame 32
play();
Symbol 168 MovieClip Frame 33
play();
Symbol 168 MovieClip Frame 34
play();
Symbol 168 MovieClip Frame 35
play();
Symbol 168 MovieClip Frame 36
play();
Symbol 168 MovieClip Frame 37
play();
Symbol 168 MovieClip Frame 38
play();
Symbol 168 MovieClip Frame 39
play();
Symbol 168 MovieClip Frame 40
play();
Symbol 168 MovieClip Frame 41
play();
Symbol 168 MovieClip Frame 42
play();
Symbol 168 MovieClip Frame 43
play();
Symbol 168 MovieClip Frame 44
play();
Symbol 168 MovieClip Frame 45
play();
Symbol 168 MovieClip Frame 46
play();
Symbol 168 MovieClip Frame 47
play();
Symbol 168 MovieClip Frame 48
play();
Symbol 168 MovieClip Frame 49
play();
Symbol 168 MovieClip Frame 50
play();
Symbol 168 MovieClip Frame 51
play();
Symbol 168 MovieClip Frame 52
play();
Symbol 168 MovieClip Frame 53
play();
Symbol 168 MovieClip Frame 54
play();
Symbol 168 MovieClip Frame 55
play();
Symbol 168 MovieClip Frame 56
play();
Symbol 168 MovieClip Frame 57
play();
Symbol 168 MovieClip Frame 58
play();
Symbol 168 MovieClip Frame 59
play();
Symbol 168 MovieClip Frame 60
play();
Symbol 168 MovieClip Frame 61
play();
Symbol 168 MovieClip Frame 62
play();
Symbol 168 MovieClip Frame 63
play();
Symbol 168 MovieClip Frame 64
play();
Symbol 168 MovieClip Frame 65
play();
Symbol 168 MovieClip Frame 66
play();
Symbol 168 MovieClip Frame 67
play();
Symbol 168 MovieClip Frame 68
play();
Symbol 168 MovieClip Frame 69
play();
Symbol 168 MovieClip Frame 70
play();
Symbol 168 MovieClip Frame 71
play();
Symbol 168 MovieClip Frame 72
play();
Symbol 168 MovieClip Frame 73
play();
Symbol 168 MovieClip Frame 74
play();
Symbol 168 MovieClip Frame 75
play();
Symbol 168 MovieClip Frame 76
play();
Symbol 168 MovieClip Frame 77
play();
Symbol 168 MovieClip Frame 78
play();
Symbol 168 MovieClip Frame 79
play();
Symbol 168 MovieClip Frame 80
play();
Symbol 168 MovieClip Frame 81
play();
Symbol 168 MovieClip Frame 82
play();
Symbol 168 MovieClip Frame 83
play();
Symbol 168 MovieClip Frame 84
play();
Symbol 168 MovieClip Frame 85
play();
Symbol 168 MovieClip Frame 86
stop();
if (_root.Slow == 2) {
_root.FAttack = 2;
} else if (_root.Slow == 3) {
_root.FAttack = 3;
} else if (_root.Slow == 4) {
_root.FAttack = 4;
}
Symbol 168 MovieClip Frame 95
play();
Symbol 168 MovieClip Frame 96
play();
Symbol 168 MovieClip Frame 97
play();
Symbol 168 MovieClip Frame 98
play();
Symbol 168 MovieClip Frame 99
play();
Symbol 168 MovieClip Frame 100
play();
Symbol 168 MovieClip Frame 101
play();
Symbol 168 MovieClip Frame 102
play();
Symbol 168 MovieClip Frame 103
play();
Symbol 168 MovieClip Frame 104
play();
Symbol 168 MovieClip Frame 105
play();
Symbol 168 MovieClip Frame 106
play();
Symbol 168 MovieClip Frame 107
play();
Symbol 168 MovieClip Frame 108
play();
Symbol 168 MovieClip Frame 109
play();
Symbol 168 MovieClip Frame 110
play();
Symbol 168 MovieClip Frame 111
play();
Symbol 168 MovieClip Frame 112
play();
Symbol 168 MovieClip Frame 113
play();
Symbol 168 MovieClip Frame 114
play();
Symbol 168 MovieClip Frame 115
play();
Symbol 168 MovieClip Frame 116
play();
Symbol 168 MovieClip Frame 117
play();
Symbol 168 MovieClip Frame 118
play();
Symbol 168 MovieClip Frame 119
play();
Symbol 168 MovieClip Frame 120
play();
Symbol 168 MovieClip Frame 121
play();
Symbol 168 MovieClip Frame 122
play();
Symbol 168 MovieClip Frame 123
play();
Symbol 168 MovieClip Frame 124
play();
Symbol 168 MovieClip Frame 125
play();
Symbol 168 MovieClip Frame 126
play();
Symbol 168 MovieClip Frame 127
play();
Symbol 168 MovieClip Frame 128
play();
Symbol 168 MovieClip Frame 129
play();
Symbol 168 MovieClip Frame 130
play();
Symbol 168 MovieClip Frame 131
play();
Symbol 168 MovieClip Frame 132
play();
Symbol 168 MovieClip Frame 133
play();
Symbol 168 MovieClip Frame 134
play();
Symbol 168 MovieClip Frame 135
play();
Symbol 168 MovieClip Frame 136
play();
Symbol 168 MovieClip Frame 137
play();
Symbol 168 MovieClip Frame 138
play();
Symbol 168 MovieClip Frame 139
play();
Symbol 168 MovieClip Frame 140
play();
Symbol 168 MovieClip Frame 141
play();
Symbol 168 MovieClip Frame 142
play();
Symbol 168 MovieClip Frame 143
play();
Symbol 168 MovieClip Frame 144
play();
Symbol 168 MovieClip Frame 145
play();
Symbol 168 MovieClip Frame 146
play();
Symbol 168 MovieClip Frame 147
play();
Symbol 168 MovieClip Frame 148
play();
Symbol 168 MovieClip Frame 149
play();
Symbol 168 MovieClip Frame 150
play();
Symbol 168 MovieClip Frame 151
play();
Symbol 168 MovieClip Frame 152
play();
Symbol 168 MovieClip Frame 153
play();
Symbol 168 MovieClip Frame 154
play();
Symbol 168 MovieClip Frame 155
play();
Symbol 168 MovieClip Frame 156
play();
Symbol 168 MovieClip Frame 157
play();
Symbol 168 MovieClip Frame 158
play();
Symbol 168 MovieClip Frame 159
play();
Symbol 168 MovieClip Frame 160
play();
Symbol 168 MovieClip Frame 161
play();
Symbol 168 MovieClip Frame 162
play();
Symbol 168 MovieClip Frame 163
play();
Symbol 168 MovieClip Frame 164
play();
Symbol 168 MovieClip Frame 165
play();
Symbol 168 MovieClip Frame 166
play();
Symbol 168 MovieClip Frame 167
play();
Symbol 168 MovieClip Frame 168
play();
Symbol 168 MovieClip Frame 169
play();
Symbol 168 MovieClip Frame 170
play();
Symbol 168 MovieClip Frame 171
play();
Symbol 168 MovieClip Frame 172
play();
Symbol 168 MovieClip Frame 173
play();
Symbol 168 MovieClip Frame 174
play();
Symbol 168 MovieClip Frame 175
play();
Symbol 168 MovieClip Frame 176
play();
Symbol 168 MovieClip Frame 177
play();
Symbol 168 MovieClip Frame 178
play();
Symbol 168 MovieClip Frame 179
play();
Symbol 168 MovieClip Frame 180
play();
Symbol 168 MovieClip Frame 181
play();
Symbol 168 MovieClip Frame 182
play();
Symbol 168 MovieClip Frame 183
play();
Symbol 168 MovieClip Frame 184
play();
Symbol 168 MovieClip Frame 185
play();
Symbol 168 MovieClip Frame 186
play();
Symbol 168 MovieClip Frame 187
play();
Symbol 168 MovieClip Frame 188
play();
Symbol 168 MovieClip Frame 189
play();
Symbol 168 MovieClip Frame 190
play();
Symbol 168 MovieClip Frame 191
play();
Symbol 168 MovieClip Frame 192
play();
Symbol 168 MovieClip Frame 193
play();
Symbol 168 MovieClip Frame 194
play();
Symbol 168 MovieClip Frame 195
play();
Symbol 168 MovieClip Frame 196
play();
Symbol 168 MovieClip Frame 197
play();
Symbol 168 MovieClip Frame 198
play();
Symbol 168 MovieClip Frame 199
play();
Symbol 168 MovieClip Frame 200
stop();
if (_root.Slow == 2) {
_root.FAttack = 2;
} else if (_root.Slow == 3) {
_root.FAttack = 3;
} else if (_root.Slow == 4) {
_root.FAttack = 4;
}
Symbol 172 MovieClip Frame 1
stop();
Symbol 172 MovieClip Frame 2
play();
Symbol 172 MovieClip Frame 3
play();
Symbol 172 MovieClip Frame 4
play();
Symbol 172 MovieClip Frame 5
play();
Symbol 172 MovieClip Frame 6
play();
Symbol 172 MovieClip Frame 7
play();
Symbol 172 MovieClip Frame 8
play();
Symbol 172 MovieClip Frame 9
play();
Symbol 172 MovieClip Frame 10
play();
Symbol 172 MovieClip Frame 11
play();
Symbol 172 MovieClip Frame 12
play();
Symbol 172 MovieClip Frame 13
play();
Symbol 172 MovieClip Frame 14
play();
Symbol 172 MovieClip Frame 15
_root.BlastWave = 1;
Symbol 179 MovieClip Frame 1
stop();
Symbol 179 MovieClip Frame 2
play();
Symbol 179 MovieClip Frame 3
play();
Symbol 179 MovieClip Frame 4
play();
Symbol 179 MovieClip Frame 5
play();
Symbol 179 MovieClip Frame 6
play();
Symbol 179 MovieClip Frame 7
play();
Symbol 179 MovieClip Frame 8
play();
Symbol 179 MovieClip Frame 9
play();
Symbol 179 MovieClip Frame 10
play();
Symbol 179 MovieClip Frame 11
play();
Symbol 179 MovieClip Frame 12
play();
Symbol 179 MovieClip Frame 13
play();
Symbol 179 MovieClip Frame 14
play();
Symbol 179 MovieClip Frame 15
play();
Symbol 179 MovieClip Frame 16
play();
Symbol 179 MovieClip Frame 17
play();
Symbol 179 MovieClip Frame 18
play();
Symbol 179 MovieClip Frame 19
play();
Symbol 179 MovieClip Frame 20
stop();
Symbol 179 MovieClip Frame 21
play();
Symbol 179 MovieClip Frame 22
play();
Symbol 179 MovieClip Frame 23
play();
Symbol 179 MovieClip Frame 24
play();
Symbol 179 MovieClip Frame 25
play();
Symbol 179 MovieClip Frame 26
play();
Symbol 179 MovieClip Frame 27
play();
Symbol 179 MovieClip Frame 28
play();
Symbol 179 MovieClip Frame 29
play();
Symbol 179 MovieClip Frame 30
play();
Symbol 179 MovieClip Frame 31
play();
Symbol 179 MovieClip Frame 32
play();
Symbol 179 MovieClip Frame 33
play();
Symbol 179 MovieClip Frame 34
play();
Symbol 179 MovieClip Frame 35
play();
Symbol 179 MovieClip Frame 36
play();
Symbol 179 MovieClip Frame 37
play();
Symbol 179 MovieClip Frame 38
_root.Mine = 2;
Symbol 181 MovieClip Frame 1
stop();
Symbol 181 MovieClip Frame 5
stop();
Symbol 183 MovieClip Frame 1
stop();
Symbol 183 MovieClip Frame 2
stop();
GetCash = 0;
Symbol 186 MovieClip Frame 1
stop();
Symbol 186 MovieClip Frame 20
stop();
Symbol 188 MovieClip Frame 34
stop();
Symbol 188 MovieClip Frame 70
reset();
Symbol 191 MovieClip Frame 1
stop();
Symbol 191 MovieClip Frame 35
stop();
Symbol 191 MovieClip Frame 45
stop();
Symbol 221 MovieClip Frame 1
stop();
Symbol 221 MovieClip Frame 20
stop();
Symbol 228 MovieClip Frame 1
stop();
Symbol 228 MovieClip Frame 6
stop();
Symbol 228 MovieClip Frame 11
stop();
Symbol 228 MovieClip Frame 16
stop();
Symbol 228 MovieClip Frame 20
stop();
Symbol 233 Button
on (release) {
stopAllSounds();
if (_root.lives >= 1) {
if (_root.Counter == 2) {
_root.gotoAndStop("Up2");
} else if (_root.Counter == 3) {
_root.gotoAndStop("Up3");
} else if (_root.Counter == 4) {
_root.gotoAndStop("Up4");
} else if (_root.Counter == 5) {
_root.gotoAndStop("Up5");
} else if (_root.Counter == 6) {
_root.gotoAndStop("Up6");
} else if (_root.Counter == 7) {
_root.gotoAndStop("Up7");
} else if (_root.Counter == 8) {
_root.gotoAndStop("Up8");
} else if (_root.Counter == 9) {
_root.gotoAndStop("Up9");
} else if (_root.Counter == 10) {
_root.gotoAndStop("Up10");
}
} else if (_root.lives == 0) {
_root.gotoAndStop("Level1");
}
}
Symbol 235 MovieClip Frame 30
stop();
Symbol 240 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 2;
}
Symbol 243 MovieClip Frame 15
stop();
Symbol 244 Button
on (release) {
_root.gotoAndStop("Level2");
_root.Counter = 2;
}
Symbol 246 MovieClip Frame 30
stop();
Symbol 255 MovieClip Frame 30
gotoAndPlay (1);
Symbol 255 MovieClip Frame 35
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 258 MovieClip Frame 1
stop();
Symbol 258 MovieClip Frame 30
_root.gotoAndStop("Victory2");
Symbol 261 MovieClip Frame 10
gotoAndPlay (1);
Symbol 267 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 3;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 268 Button
on (release) {
_root.gotoAndStop("Level3");
_root.Counter = 3;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 273 Button
on (release) {
stopAllSounds();
if (_root.Counter == 2) {
_root.gotoAndStop("Up2");
} else if (_root.Counter == 3) {
_root.gotoAndStop("Up3");
} else if (_root.Counter == 4) {
_root.gotoAndStop("Up4");
} else if (_root.Counter == 5) {
_root.gotoAndStop("Up5");
} else if (_root.Counter == 6) {
_root.gotoAndStop("Up6");
} else if (_root.Counter == 7) {
_root.gotoAndStop("Up7");
} else if (_root.Counter == 8) {
_root.gotoAndStop("Up8");
} else if (_root.Counter == 9) {
_root.gotoAndStop("Up9");
} else if (_root.Counter == 10) {
_root.gotoAndStop("Up10");
}
}
on (rollOver) {
_root.Display.gotoAndStop(5);
myColor = new Color("_root.NextLevel");
myColor.setTint(255, 225, 0, 50);
}
on (rollOut) {
_root.Display.gotoAndStop(1);
myColor = new Color("_root.NextLevel");
myColor.setTint(255, 225, 0, 0);
}
on (release) {
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 296 MovieClip Frame 1
stop();
Symbol 296 MovieClip Frame 5
stop();
Symbol 296 MovieClip Frame 10
stop();
Symbol 296 MovieClip Frame 15
stop();
Symbol 296 MovieClip Frame 20
stop();
Symbol 296 MovieClip Frame 25
stop();
Symbol 296 MovieClip Frame 30
stop();
Symbol 296 MovieClip Frame 35
stop();
Symbol 304 MovieClip Frame 1
stop();
Symbol 304 MovieClip Frame 5
stop();
Symbol 304 MovieClip Frame 10
stop();
Symbol 304 MovieClip Frame 15
stop();
Symbol 310 MovieClip Frame 1
stop();
Symbol 310 MovieClip Frame 5
stop();
Symbol 310 MovieClip Frame 10
stop();
Symbol 310 MovieClip Frame 15
stop();
Symbol 315 MovieClip Frame 1
stop();
Symbol 315 MovieClip Frame 5
stop();
Symbol 316 MovieClip Frame 1
stop();
Symbol 316 MovieClip Frame 5
stop();
Symbol 317 MovieClip Frame 1
stop();
Symbol 317 MovieClip Frame 5
stop();
Symbol 320 MovieClip Frame 1
stop();
Symbol 320 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 1
stop();
Symbol 323 MovieClip Frame 5
stop();
Symbol 323 MovieClip Frame 10
stop();
Symbol 323 MovieClip Frame 15
stop();
Symbol 326 MovieClip Frame 1
stop();
Symbol 326 MovieClip Frame 5
stop();
Symbol 336 MovieClip Frame 35
gotoAndPlay (1);
Symbol 336 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 339 MovieClip Frame 1
stop();
Symbol 339 MovieClip Frame 30
_root.gotoAndStop("Victory3");
Symbol 345 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 4;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 346 Button
on (release) {
_root.gotoAndStop("Level4");
_root.Counter = 4;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 349 MovieClip Frame 1
stop();
Symbol 349 MovieClip Frame 30
_root.gotoAndStop("Victory4");
Symbol 352 MovieClip Frame 1
stop();
Symbol 352 MovieClip Frame 15
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 358 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 5;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 359 Button
on (release) {
_root.gotoAndStop("Level5");
_root.Counter = 5;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 364 MovieClip Frame 30
gotoAndPlay (2);
Symbol 364 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 367 MovieClip Frame 1
stop();
Symbol 367 MovieClip Frame 30
_root.gotoAndStop("Victory5");
Symbol 373 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 6;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 374 Button
on (release) {
_root.gotoAndStop("Level6");
_root.Counter = 6;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 377 MovieClip Frame 1
stop();
Symbol 377 MovieClip Frame 30
_root.gotoAndStop("Victory6");
Symbol 380 MovieClip Frame 30
gotoAndPlay (2);
Symbol 380 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 383 MovieClip Frame 10
gotoAndPlay (1);
Symbol 387 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 7;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 388 Button
on (release) {
_root.gotoAndStop("Level7");
_root.Counter = 7;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 391 MovieClip Frame 30
gotoAndPlay (1);
Symbol 391 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 394 MovieClip Frame 20
gotoAndPlay (1);
Symbol 397 MovieClip Frame 1
stop();
Symbol 397 MovieClip Frame 30
stop();
_root.gotoAndStop("Victory7");
Symbol 401 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 8;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 402 Button
on (release) {
_root.gotoAndStop("Level8");
_root.Counter = 8;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 405 MovieClip Frame 1
stop();
Symbol 405 MovieClip Frame 30
_root.gotoAndStop("Victory8");
Symbol 410 MovieClip Frame 30
gotoAndStop (1);
Symbol 410 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 415 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 9;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 416 Button
on (release) {
_root.gotoAndStop("Level9");
_root.Counter = 9;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 419 MovieClip Frame 30
gotoAndPlay (1);
Symbol 419 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 424 MovieClip Frame 1
stop();
Symbol 424 MovieClip Frame 30
_root.gotoAndStop("Victory9");
Symbol 427 Button
on (release) {
_root.gotoAndStop("Upgrade");
_root.Counter = 10;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 428 Button
on (release) {
_root.gotoAndStop("Level10");
_root.Counter = 10;
if (_root.Mine == 3) {
_root.MineAttack.gotoAndPlay(21);
}
}
Symbol 430 MovieClip Frame 1
stop();
Symbol 430 MovieClip Frame 30
_root.gotoAndStop("GameVictory");
Symbol 433 MovieClip Frame 30
gotoAndPlay (1);
Symbol 433 MovieClip Frame 40
stop();
_root.BloodSplat.gotoAndPlay(2);
Symbol 453 MovieClip Frame 1
stop();
Symbol 453 MovieClip Frame 2
play();
Symbol 453 MovieClip Frame 20
stop();
Symbol 453 MovieClip Frame 35
stop();
Symbol 474 MovieClip Frame 1
stop();
Symbol 474 MovieClip Frame 5
stop();
Symbol 474 MovieClip Frame 10
stop();
Symbol 474 MovieClip Frame 15
stop();
Symbol 474 MovieClip Frame 20
stop();
Symbol 474 MovieClip Frame 25
stop();
Symbol 474 MovieClip Frame 30
stop();