Frame 1
Stage.scaleMode = "noScale";
Stage.align = "C";
stop();
Instance of Symbol 101 MovieClip in Frame 1
onClipEvent (enterFrame) {
this.gotoAndStop(Math.ceil((_root.getBytesLoaded() / _root.getBytesTotal()) * 50));
}
Frame 2
tekidep = 1;
efdep = 1;
_root.score = 0;
bomb1 = new Sound();
bomb2 = new Sound();
item1 = new Sound();
item2 = new Sound();
item3 = new Sound();
bomb1.attachSound("bom1");
bomb2.attachSound("bom2");
item1.attachSound("ite1");
item2.attachSound("ite2");
item3.attachSound("ite3");
tekiseisei = function (xiti, yiti, syurui, rad) {
_root.tekifld.attachMovie("teki", "teki" + (++tekidep), tekidep);
_root.tekifld["teki" + tekidep]._x = xiti;
_root.tekifld["teki" + tekidep]._y = yiti;
_root.tekifld["teki" + tekidep].gotoAndStop(syurui);
_root.tekifld["teki" + tekidep].missile.radian = rad;
};
itemseisei = function (xiti, yiti, syurui) {
_root.tekifld.attachMovie("item", "item" + (++tekidep), tekidep);
_root.tekifld["item" + tekidep]._x = xiti;
_root.tekifld["item" + tekidep]._y = yiti;
_root.tekifld["item" + tekidep].gotoAndStop(syurui);
};
bakuhatuseisei = function (xiti, yiti) {
_root.effld.attachMovie("bakuhatu", "b" + (++efdep), efdep);
_root.effld["b" + efdep]._x = xiti;
_root.effld["b" + efdep]._y = yiti;
bomb1.stop();
bomb1.start();
};
renbakuseisei = function (xiti, yiti, cnt, boss) {
_root.effld.attachMovie("renbaku", "rb" + (++efdep), efdep);
_root.effld["rb" + efdep]._x = xiti;
_root.effld["rb" + efdep]._y = yiti;
_root.effld["rb" + efdep].count = cnt;
_root.effld["rb" + efdep].bosssinda = boss;
bomb2.stop();
bomb2.start();
};
Instance of Symbol 115 MovieClip "core" in Frame 2
onClipEvent (load) {
hp = 4;
}
onClipEvent (enterFrame) {
if (_root.drag) {
if (_parent.dragfld.sikaku.hitTest(this)) {
this.coregra.gotoAndStop(2);
} else {
this.coregra.gotoAndStop(1);
}
} else if (this.coregra._currentframe == 2) {
this.play();
}
}
Instance of Symbol 117 MovieClip "tekifld" in Frame 2
onClipEvent (load) {
function randomxy() {
if (Math.random() < 0.5) {
x = (Math.round(Math.random()) * 440) - 20;
y = Math.random() * 400;
} else {
x = Math.random() * 400;
y = (Math.round(Math.random()) * 440) - 20;
}
}
function iyarasi(kazu, syurui, zure) {
hankei = 311;
zure = (zure * Math.PI) / 180;
radian = (Math.PI*2) / kazu;
i = 0;
while (i < kazu) {
x = Math.cos((radian * i) + zure) * hankei;
if (Math.abs(x) > 220) {
x = 220 * (x / Math.abs(x));
}
y = Math.sin((radian * i) + zure) * hankei;
if (Math.abs(y) > 220) {
y = 220 * (y / Math.abs(y));
}
_root.tekiseisei(x + 200, y + 200, syurui);
i++;
}
}
count = 0;
_root.tekispeed = 1;
_root.stoptime = 0;
kankaku = 30;
if (_root.normalmode) {
bosskan = 4200;
syurui = 1;
} else {
bosskan = 1800;
syurui = 2;
}
if (_root.easymode) {
kankaku = 60;
bosskan = 3000;
}
bossnum = 1;
iya = 0;
_root.defaultscore = 100;
}
onClipEvent (enterFrame) {
if ((--_root.stoptime) < 0) {
if ((((++count) % kankaku) == 0) && ((count % (kankaku * 10)) != 0)) {
randomxy();
_root.tekiseisei(x, y, Math.ceil(Math.random() * syurui));
}
if ((count % (kankaku * 10)) == 0) {
tekin = 4;
while (tekin == 4) {
tekin = Math.ceil(Math.random() * syurui);
}
iya++;
if (iya == 1) {
iyarasi(2, tekin, Math.floor(Math.random() * 3) * 45);
} else if (iya == 2) {
iyarasi(3, tekin, Math.floor(Math.random() * 3) * 90);
} else if (iya == 3) {
yarasi(4, tekin, Math.floor(Math.random() * 2) * 45);
if (_root.easymode) {
iya = 0;
}
} else if (iya == 4) {
iyarasi(6, tekin, (Math.floor(Math.random() * 3) * 45) - 45);
} else {
iyarasi(8, tekin, 0);
iya = 0;
}
}
if (((((count == 300) || (count == 900)) || (count == 1800)) || ((count == 3200) && (!_root.easymode))) && (syurui < 5)) {
syurui++;
}
if ((count % 900) == 0) {
randomxy();
_root.tekiseisei(x, y, 6);
}
if ((count % bosskan) == 0) {
if (bossnum > 0) {
_root.tekiseisei(-30, -30, 7);
}
if (bossnum > 1) {
_root.tekiseisei(430, 430, 7);
}
if (bossnum > 2) {
_root.tekiseisei(430, -30, 7);
}
if (bossnum > 3) {
_root.tekiseisei(-30, 430, 7);
}
if (!_root.normalmode) {
bosskan = 1800;
bossnum++;
}
}
}
if (((count % 1200) == 0) && (!_root.normalmode)) {
_root.tekispeed = _root.tekispeed + 0.1;
kankaku = kankaku - 1;
}
}
Instance of Symbol 122 MovieClip "dragfld" in Frame 2
onClipEvent (load) {
_root.drag = false;
full = -1;
scorezure = false;
}
onClipEvent (mouseDown) {
if ((((!_root.tekihit) && (_root.meter._currentframe >= 30)) && (_root.core._currentframe < 80)) && (_root._xmouse < 400)) {
_root.drag = true;
sikaku._x = _root._xmouse;
sikaku._y = _root._ymouse;
}
_root.combo = 0;
_root.getscore = 0;
}
onClipEvent (mouseUp) {
if (_root.drag) {
if (full <= 0) {
_root.meter.gotoAndPlay(1);
}
scorezure = true;
}
_root.drag = false;
_root.tekihit = false;
sikaku.play();
}
onClipEvent (enterFrame) {
if ((--full) == 0) {
_root.meter.gotoAndStop(30);
}
if (_root.drag) {
sikaku._xscale = (-(sikaku._x - _root._xmouse)) / 2;
sikaku._yscale = (-(sikaku._y - _root._ymouse)) / 2;
}
if (scorezure && (_root.combo > 0)) {
_root.getscore = _root.getscore * (0.8 + (_root.combo / 5));
_root.score = _root.score + _root.getscore;
_root.scoreboard.gotoAndPlay(2);
scorezure = false;
}
}
Instance of Symbol 94 MovieClip "scoreboard" in Frame 3
onClipEvent (load) {
scorekakusi._x = 200;
if (_root.score > _root.top1) {
_root.top3 = _root.top2;
_root.top2 = _root.top1;
_root.top1 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = -14;
} else if (_root.score > _root.top2) {
_root.top3 = _root.top2;
_root.top2 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = 0;
} else if (_root.score > _root.top3) {
_root.top3 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = 14;
}
}
Instance of Symbol 94 MovieClip "scoreboard" in Frame 4
onClipEvent (load) {
scorekakusi._x = 200;
if (_root.score > _root.top1) {
_root.top3 = _root.top2;
_root.top2 = _root.top1;
_root.top1 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = -14;
} else if (_root.score > _root.top2) {
_root.top3 = _root.top2;
_root.top2 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = 0;
} else if (_root.score > _root.top3) {
_root.top3 = _root.score;
scorekakusi._x = 0;
scorekakusi._y = 14;
}
}
Symbol 8 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (radian == undefined) {
speed = _root.tekispeed;
radian = Math.atan2(200 - _parent._y, 200 - _parent._x);
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
this._rotation = (radian * 180) / Math.PI;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.core.play();
_root.bakuhatuseisei(_parent._x, _parent._y);
_parent.removeMovieClip();
}
if ((Math.abs(_parent._x - (xhaba / 2)) > ((xhaba / 2) + 30)) || (Math.abs(_parent._y - (yhaba / 2)) > ((yhaba / 2) + 30))) {
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 11 MovieClip Frame 1
stop();
xhaba = 460;
yhaba = 400;
if (radian == undefined) {
time = 0;
speed = _root.tekispeed * 2;
radian = (Math.atan2(200 - _parent._y, 230 - _parent._x) + Math.random()) - 0.5;
addx = Math.cos(radian);
addy = Math.sin(radian);
this._rotation = (radian * 180) / Math.PI;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
if ((Math.floor((time++) / 20) % 2) == 0) {
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
if ((time % 20) == 1) {
radian = (Math.atan2(200 - _parent._y, 230 - _parent._x) + Math.random()) - 0.5;
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
this._rotation = (radian * 180) / Math.PI;
}
}
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.core.play();
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 14 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (speed == undefined) {
speed = _root.tekispeed * 1.2;
RotSpeed = 2;
if (radian == undefined) {
radian = Math.atan2(200 - _parent._y, 200 - _parent._x);
}
addx = Math.cos(radian);
addy = Math.sin(radian);
this._rotation = (radian * 180) / Math.PI;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if ((this._currentframe == 2) || (_root.zengamenkougeki)) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
rad = Math.atan2(200 - _parent._y, 200 - _parent._x);
rot = (rad * 180) / Math.PI;
if ((_rotation - 180) > rot) {
rot = rot + 360;
}
if ((_rotation + 180) < rot) {
rot = rot - 360;
}
if ((_rotation - rot) > RotSpeed) {
_rotation = (_rotation - RotSpeed);
} else if ((_rotation - rot) < (-RotSpeed)) {
_rotation = (_rotation + RotSpeed);
} else {
_rotation = rot;
}
rad2 = (_rotation * Math.PI) / 180;
addx = Math.cos(rad2) * speed;
addy = Math.sin(rad2) * speed;
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.core.play();
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 17 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (speed == undefined) {
speed = _root.tekispeed;
speed = speed * ((Math.round(Math.random()) * 2) - 1);
i = Math.random() * 2;
hankei = 282;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
hankei = hankei - 0.6;
i = i + (0.02 * speed);
_parent._x = (Math.cos(i) * hankei) + 200;
_parent._y = (Math.sin(i) * hankei) + 200;
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.core.play();
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
i = Math.atan2((_root._ymouse - 200) - yzure, (_root._xmouse - 200) - xzure);
hankei = Math.sqrt((((_root._xmouse - 200) - xzure) * ((_root._xmouse - 200) - xzure)) + (((_root._ymouse - 200) - yzure) * ((_root._ymouse - 200) - yzure)));
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 20 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (radian == undefined) {
speed = _root.tekispeed;
radian = Math.atan2(200 - _parent._y, 200 - _parent._x);
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
this._rotation = (radian * 180) / Math.PI;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
kyori = Math.sqrt((_parent._xmouse * _parent._xmouse) + (_parent._ymouse * _parent._ymouse));
if (kyori < 70) {
radian = Math.atan2(-_parent._ymouse, -_parent._xmouse);
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
} else {
radian = Math.atan2(200 - _parent._y, 200 - _parent._x);
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
}
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_root.core.play();
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 23 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (radian == undefined) {
speed = _root.tekispeed * 3;
if (_parent._x < 0) {
addx = speed;
addy = 0;
} else if (_parent._x > 400) {
addx = -speed;
addy = 0;
} else if (_parent._y < 0) {
addx = 0;
addy = speed;
} else if (_parent._y > 400) {
addx = 0;
addy = -speed;
}
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.itemseisei(_parent._x, _parent._y, Math.ceil(Math.random() * 3));
_root.renbakuseisei(_parent._x, _parent._y, 10);
_root.combo++;
_root.getscore = _root.getscore + _root.defaultscore;
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
}
if ((_parent.hitTest(_root.core) && (_root.core._currentframe == 1)) && (this._currentframe != 3)) {
_root.renbakuseisei(_parent._x, _parent._y, 10);
_root.core.play();
_parent.removeMovieClip();
}
if ((Math.abs(_parent._x - (xhaba / 2)) > ((xhaba / 2) + 40)) || (Math.abs(_parent._y - (yhaba / 2)) > ((yhaba / 2) + 40))) {
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 26 MovieClip Frame 1
stop();
Symbol 29 MovieClip Frame 1
stop();
Symbol 31 MovieClip Frame 1
stop();
xhaba = 400;
yhaba = 400;
if (radian == undefined) {
speed = 1;
hp = 6;
time = 0;
houdair = 1;
radian = Math.atan2(200 - _parent._y, 200 - _parent._x);
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
asi._rotation = (radian * 180) / Math.PI;
houdai._rotation = (radian * 180) / Math.PI;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
houdai.gotoAndStop(2);
asi.gotoAndStop(2);
} else {
houdai.gotoAndStop(1);
asi.gotoAndStop(1);
}
} else if (houdai._currentframe == 2) {
this.play();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if (_root.stoptime < 0) {
if ((Math.floor((time++) / 60) % 2) == 0) {
_parent._x = _parent._x + addx;
_parent._y = _parent._y + addy;
if ((time % 60) == 0) {
radian = (Math.atan2(200 - _parent._y, 230 - _parent._x) + (Math.random() * 2)) - 1;
addx = Math.cos(radian) * speed;
addy = Math.sin(radian) * speed;
rot = (radian * 180) / Math.PI;
if (Math.abs(rot - asi._rotation) > 180) {
rot = rot + (360 * (-(rot / Math.abs(rot))));
}
addr = (rot - asi._rotation) / 60;
}
if ((time % 60) == 0) {
houdair = Math.round(Math.random() * 4) - 2;
}
} else {
asi._rotation = asi._rotation + addr;
}
houdai._rotation = houdai._rotation + houdair;
if ((time % 60) == 0) {
hrad = (houdai._rotation * Math.PI) / 180;
_root.tekiseisei(_parent._x + (Math.cos(hrad) * 45), _parent._y + (Math.sin(hrad) * 45), 3, hrad);
}
}
if ((houdai.hitTest(_root.core) && (_root.core._currentframe == 1)) && (houdai._currentframe != 3)) {
_root.core.play();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
houdai.gotoAndStop(3);
asi.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
houdai.gotoAndStop(1);
asi.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 31 MovieClip Frame 2
if ((--hp) <= 0) {
_root.renbakuseisei(_parent._x, _parent._y, 45, true);
_root.score = _root.score + 1000;
_parent.removeMovieClip();
}
houdai.gotoAndStop(1);
asi.gotoAndStop(1);
this._visible = false;
Symbol 31 MovieClip Frame 3
this._visible = true;
Symbol 31 MovieClip Frame 4
this._visible = false;
Symbol 31 MovieClip Frame 6
this._visible = true;
Symbol 31 MovieClip Frame 8
this._visible = false;
Symbol 31 MovieClip Frame 10
this._visible = true;
Symbol 36 MovieClip Frame 1
stop();
if (time == undefined) {
time = 300;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if ((--time) < 60) {
if (time < 0) {
_parent.removeMovieClip();
}
if ((time % 2) == 0) {
this._visible = !this._visible;
}
}
if (_parent.hitTest(_root.core) && (this._currentframe == 1)) {
_root.item1.start();
if (_root.core.hp < 4) {
_root.core.hp++;
_root.life.prevFrame();
}
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
this._visible = true;
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 40 MovieClip Frame 1
stop();
if (time == undefined) {
time = 300;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if ((--time) < 60) {
if (time < 0) {
_parent.removeMovieClip();
}
if ((time % 2) == 0) {
this._visible = !this._visible;
}
}
if (_parent.hitTest(_root.core) && (this._currentframe == 1)) {
_root.item2.start();
_root.dragfld.full = 300;
_root.meter.gotoAndStop(31);
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
this._visible = true;
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 44 MovieClip Frame 1
stop();
if (time == undefined) {
time = 300;
}
this.onEnterFrame = function () {
if (_root.drag) {
if (_root.dragfld.sikaku.hitTest(_parent)) {
this.gotoAndStop(2);
} else {
this.gotoAndStop(1);
}
} else if (this._currentframe == 2) {
_root.bakuhatuseisei(_parent._x, _parent._y);
_parent.removeMovieClip();
}
if (drag) {
_parent._x = _root._xmouse - xzure;
_parent._y = _root._ymouse - yzure;
} else if ((--time) < 60) {
if (time < 0) {
_parent.removeMovieClip();
}
if ((time % 2) == 0) {
this._visible = !this._visible;
}
}
if (_parent.hitTest(_root.core) && (this._currentframe == 1)) {
_root.item3.start();
_root.stoptime = 90;
_parent.removeMovieClip();
}
};
this.onMouseDown = function () {
if (_parent.hitTest(_root._xmouse, _root._ymouse, true) && (!_root.tekihit)) {
this._visible = true;
_root.tekihit = true;
drag = true;
xzure = _parent._xmouse;
yzure = _parent._ymouse;
this.gotoAndStop(3);
this.onMouseUp = function () {
drag = false;
this.gotoAndStop(1);
this.onMouseUp = null;
};
}
};
Symbol 60 MovieClip [bakuhatu] Frame 15
this.removeMovieClip();
Symbol 61 MovieClip [renbaku] Frame 1
_root.effld.attachMovie("bakuhatu", "b" + (++_root.efdep), _root.efdep);
_root.effld["b" + _root.efdep]._x = _x;
_root.effld["b" + _root.efdep]._y = _y;
_root.effld["b" + _root.efdep]._xscale = 200;
_root.effld["b" + _root.efdep]._yscale = 200;
this.onEnterFrame = function () {
if (((--count) % 3) == 0) {
_root.bakuhatuseisei((_x + (Math.random() * 60)) - 30, (_y + (Math.random() * 60)) - 30);
if (count <= 0) {
if (_root.normalmode && (bosssinda)) {
if (_root.easymode) {
_root.gotoAndStop(5);
} else {
_root.gotoAndStop(4);
}
}
this.removeMovieClip();
}
}
};
Symbol 67 MovieClip [scoreh] Frame 40
this.removeMovieClip();
Symbol 74 MovieClip Frame 7
stop();
Symbol 77 Button
on (release) {
_root.normalmode = true;
_root.easymode = false;
gotoAndStop (2);
}
Symbol 78 Button
on (release) {
_root.normalmode = false;
_root.easymode = false;
gotoAndStop (2);
}
Symbol 79 Button
on (release) {
_root.normalmode = true;
_root.easymode = true;
gotoAndStop (2);
}
Symbol 80 Button
on (release) {
gotoAndStop (6);
}
Symbol 104 Button
on (release) {
getURL ("http://sapporo.cool.ne.jp/f1ash/");
}
Symbol 110 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 1
stop();
Symbol 115 MovieClip Frame 2
_root.life.nextFrame();
if ((--hp) <= 0) {
this.gotoAndPlay("sibou");
}
Symbol 115 MovieClip Frame 80
gotoAndStop ("normal");
Symbol 115 MovieClip Frame 112
_root.renbakuseisei(_x, _y, 30);
Symbol 115 MovieClip Frame 218
_root.gotoAndStop(3);
Symbol 121 MovieClip Frame 1
stop();
Symbol 121 MovieClip Frame 3
_x = 500;
_xscale = 0;
_yscale = 0;
Symbol 133 MovieClip Frame 30
stop();
Symbol 139 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 1
stop();
Symbol 145 MovieClip Frame 2
ombo = _root.combo;
etscore = _root.getscore;
Symbol 151 MovieClip Frame 57
stop();
Symbol 152 Button
on (release) {
gotoAndStop (1);
}
Symbol 179 Button
on (release) {
_root.gotoAndStop(1);
}
Symbol 180 Button
on (release) {
this.nextFrame();
}
Symbol 188 Button
on (release) {
this.prevFrame();
}
Symbol 213 MovieClip Frame 1
stop();