Frame 1
stop();
Frame 2
stop();
Instance of Symbol 11 MovieClip in Frame 2
on (release) {
_root.play();
}
Frame 3
stop();
Instance of Symbol 17 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("inn");
}
}
Instance of Symbol 17 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("armoury");
}
}
Instance of Symbol 17 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("trainer");
}
}
Instance of Symbol 17 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("outside");
}
}
Instance of Symbol 17 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
_root.gotoAndStop("elder");
}
}
Instance of Symbol 95 MovieClip "char" in Frame 3
onClipEvent (keyUp) {
this.front.gotoAndStop(1);
this.back.gotoAndStop(1);
this.right.gotoAndStop(1);
}
onClipEvent (enterFrame) {
if (Key.isDown(16)) {
walkspd = 9;
} else {
walkspd = 3;
}
point = new object();
point.x = 0;
point.y = 90;
localToGlobal(point);
if (Key.isDown(39)) {
if ((this.right._visible == 0) or ((this.right._xscale = -100))) {
this.back._visible = 0;
this.front._visible = 0;
this.right._visible = 1;
this.right._xscale = 100;
}
if (this.right._currentframe == 1) {
this.right.gotoAndPlay(2);
}
point.x = point.x + (walkspd * 2);
if (_root.building.hitTest(point.x, point.y, true)) {
this.right.gotoAndStop(1);
} else {
this._x = this._x + (walkspd * 2);
}
}
if (Key.isDown(37)) {
if ((this.right._visible == 0) or ((this.right._xscale = 100))) {
this.back._visible = 0;
this.front._visible = 0;
this.right._visible = 1;
this.right._xscale = -100;
}
if (this.right._currentframe == 1) {
this.right.gotoAndPlay(2);
}
point.x = point.x - (walkspd * 2);
if (_root.building.hitTest(point.x, point.y, true)) {
this.right.gotoAndStop(1);
} else {
this._x = this._x - (walkspd * 2);
}
}
if (Key.isDown(38)) {
if (this.back._visible == 0) {
this.back._visible = 1;
this.front._visible = 0;
this.right._visible = 0;
}
if (this.back._currentframe == 1) {
this.back.gotoAndPlay(2);
}
point.y = point.y - walkspd;
if (_root.building.hitTest(point.x, point.y, true)) {
this.back.gotoAndStop(1);
} else {
this._y = this._y - walkspd;
}
}
if (Key.isDown(40)) {
if (this.front._visible == 0) {
this.back._visible = 0;
this.front._visible = 1;
this.right._visible = 0;
}
if (this.front._currentframe == 1) {
this.front.gotoAndPlay(2);
}
point.y = point.y + walkspd;
if (_root.building.hitTest(point.x, point.y, true)) {
this.front.gotoAndStop(1);
} else {
this._y = this._y + walkspd;
}
}
}
Instance of Symbol 99 MovieClip in Frame 3
onClipEvent (enterFrame) {
if (this.hitTest(_root.char)) {
gotoAndStop (2);
} else {
gotoAndStop (1);
}
}
on (release) {
_root.gotoAndStop("battle");
}
Instance of Symbol 103 MovieClip in Frame 3
onClipEvent (load) {
_global.exp = 0;
_global.hp = 100;
_global.gp = 100;
_global.maxhp = 100;
_global.wp = 1;
_global.str = 1;
_global.int = 1;
_global.lvl = 1;
_root.lvl = "lvl" + _global.lvl;
_root.str = "str" + _global.str;
_root.int = "int" + _global.int;
_root.exp = "exp" + _global.exp;
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
_root.gp = "gp" + _global.gp;
_root.wp = "wp" + _global.wp;
}
Instance of Symbol 114 MovieClip in Frame 3
on (release) {
play();
}
Frame 4
stop();
_root.text = "go bust out a can o whoop ass on dem goblins an trolls";
Instance of Symbol 117 MovieClip in Frame 4
on (release) {
_root.gotoAndStop("town");
}
Instance of Symbol 120 MovieClip in Frame 4
on (release) {
spelexp = _global.lvl / 5;
if (spelexp > _global.spells) {
_root.text = "have a spell";
_global.spells++;
} else {
_root.text = "you can have a spell every 5 levels";
}
if (_global.spells > 4) {
_root.text = "you have learnt all I can teach you grasshopper";
}
}
Frame 5
stop();
_root.text = " it costs 10 gp to stay";
Instance of Symbol 126 MovieClip in Frame 5
on (release) {
if (_global.gp >= 10) {
_global.gp = _global.gp - 10;
_global.hp = _global.maxhp;
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
_root.gp = "gp" + _global.gp;
_root.wp = "wp" + _global.wp;
}
}
Frame 6
stop();
price = (_global.wp * _global.wp) * 50;
_root.text = "your current weapon has a power of " + _global.wp;
if (_global.wp < 10) {
_root.text = _root.text + ((" upgrade for " + price) + " gp");
}
Instance of Symbol 137 MovieClip in Frame 6
on (release) {
price = (_global.wp * _global.wp) * 50;
if ((_global.wp < 10) and (_global.gp > price)) {
_global.wp++;
_global.gp = _global.gp - price;
_root.wp = "wp" + _global.wp;
_root.gp = "gp" + _global.gp;
price = (_global.wp * _global.wp) * 50;
_root.text = "your current weapon has a power of " + _global.wp;
if (_global.wp < 10) {
_root.text = _root.text + ((" upgrade for " + price) + " gp");
}
}
}
Frame 7
stop();
expneed = 100 * _global.lvl;
_root.text = ((((("you are currently level " + _global.lvl) + " with ") + _global.exp) + " experience. you need ") + expneed) + " exp to train";
Instance of Symbol 141 MovieClip in Frame 7
on (release) {
expneed = 100 * _global.lvl;
if (_global.exp >= expneed) {
_global.lvl++;
_global.exp = _global.exp - expneed;
_global.str++;
_global.maxhp = _global.maxhp + (5 + random(5));
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
_root.lvl = "lvl" + _global.lvl;
_root.str = "str" + _global.str;
_root.exp = "exp" + _global.exp;
}
}
Instance of Symbol 143 MovieClip in Frame 7
on (release) {
expneed = 100 * _global.lvl;
if (_global.exp >= expneed) {
_global.lvl++;
_global.exp = _global.exp - expneed;
_global.int++;
_global.maxhp = _global.maxhp + (2 + random(5));
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
_root.int = "int" + _global.int;
_root.exp = "exp" + _global.exp;
_root.lvl = "lvl" + _global.lvl;
}
}
Frame 8
stop();
_global.fightPhase = 1;
Instance of Symbol 148 MovieClip in Frame 8
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 8
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 8
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 8
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 8
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Instance of Symbol 158 MovieClip "en" in Frame 8
onClipEvent (load) {
_root.enhp = 100;
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - (random(3) + 1);
}
if (_root.enhp <= 0) {
_root.play();
}
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(3);
if (rand == 0) {
_root.defender.gotoAndPlay(11);
}
if (rand == 1) {
_root.defender.gotoAndPlay(41);
}
if (rand == 2) {
_root.defender.gotoAndPlay(61);
}
}
}
Instance of Symbol 262 MovieClip "defender" in Frame 8
onClipEvent (load) {
_global.enPoison = 0;
_global.enattacks = 3;
}
Frame 9
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 50 exp";
_global.exp = _global.exp + 50;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 50 gold";
_global.gp = _global.gp + 50;
_root.gp = "gp" + _global.gp;
Instance of Symbol 262 MovieClip "defender" in Frame 9
onClipEvent (load) {
_global.enattacks = 1;
}
Frame 10
stop();
_global.fightphase = 0;
Instance of Symbol 419 MovieClip "map" in Frame 10
onClipEvent (load) {
_xscale = 100;
_yscale = 100;
}
onClipEvent (enterFrame) {
_x = ((-this.char._x) + 250);
_y = ((-this.char._y) + 200);
}
Frame 11
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 11
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - random(3);
}
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 514 MovieClip "defender" in Frame 11
onClipEvent (load) {
_global.enstrength = 1;
_root.enhp = 40;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 11
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 11
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 11
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 11
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 11
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 12
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 100 exp";
_global.exp = _global.exp + 100;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 100 gold";
_global.gp = _global.gp + 100;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 12
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Instance of Symbol 514 MovieClip "defender" in Frame 12
onClipEvent (load) {
_root.enhp = 40;
_global.enPoison = 0;
_global.enattacks = 2;
}
Frame 13
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 13
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - random(3);
}
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 514 MovieClip "defender" in Frame 13
onClipEvent (load) {
_global.enstrength = 4;
_root.enhp = 100;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 13
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 13
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 13
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 13
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 13
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 14
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 200 exp";
_global.exp = _global.exp + 200;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 200 gold";
_global.gp = _global.gp + 200;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 14
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Instance of Symbol 514 MovieClip "defender" in Frame 14
onClipEvent (load) {
_root.enhp = 40;
_global.enPoison = 0;
_global.enattacks = 2;
}
Frame 15
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 15
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - random(3);
}
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 514 MovieClip "defender" in Frame 15
onClipEvent (load) {
_global.enstrength = 10;
_root.enhp = 500;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 15
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 15
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 15
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 15
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 15
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 16
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 1000 exp";
_global.exp = _global.exp + 1000;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 500 gold";
_global.gp = _global.gp + 500;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 16
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Instance of Symbol 514 MovieClip "defender" in Frame 16
onClipEvent (load) {
_root.enhp = 40;
_global.enPoison = 0;
_global.enattacks = 2;
}
Frame 17
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 17
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - random(3);
}
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 611 MovieClip "defender" in Frame 17
onClipEvent (load) {
_global.enstrength = 1;
_root.enhp = 100;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 17
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 17
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 17
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 17
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 17
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 18
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 200 exp";
_global.exp = _global.exp + 200;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 200 gold";
_global.gp = _global.gp + 200;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 18
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Frame 19
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 19
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_global.enPoison == 1) {
_root.enhp = _root.enhp - random(3);
}
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 611 MovieClip "defender" in Frame 19
onClipEvent (load) {
_global.enstrength = 4;
_root.enhp = 400;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 19
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 19
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 19
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 19
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 19
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 20
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 400 exp";
_global.exp = _global.exp + 200;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 400 gold";
_global.gp = _global.gp + 200;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 20
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Instance of Symbol 611 MovieClip in Frame 20
onClipEvent (load) {
_global.enstrength = 1;
_root.enhp = 100;
_global.enPoison = 0;
_global.enattacks = 2;
}
Frame 21
stop();
_global.fightPhase = 1;
Instance of Symbol 158 MovieClip "en" in Frame 21
onClipEvent (load) {
}
onClipEvent (enterFrame) {
if (_global.fightphase == 1) {
_root.fightinfo = "choose attack";
}
if (_global.fightphase == 2) {
_root.fightinfo = "attacking ";
if (_global.spell > 0) {
_root.fightinfo = "spell " + _global.spell;
}
}
if (_global.fightphase == 3) {
if (_root.enhp <= 0) {
_root.nextFrame();
} else {
_root.fightinfo = "enemy attack";
_global.fightphase = 4;
rand = random(_global.enattacks);
if (rand == 0) {
_root.defender.gotoAndPlay("attack1");
}
if (rand == 1) {
_root.defender.gotoAndPlay("attack2");
}
if (rand == 2) {
_root.defender.gotoAndPlay("attack3");
}
}
}
}
Instance of Symbol 611 MovieClip "defender" in Frame 21
onClipEvent (load) {
_global.enstrength = 10;
_root.enhp = 1000;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 148 MovieClip in Frame 21
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(11);
_global.spell = 0;
}
}
Instance of Symbol 150 MovieClip in Frame 21
onClipEvent (load) {
if (_global.spells < 1) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
}
Instance of Symbol 152 MovieClip in Frame 21
onClipEvent (load) {
if (_global.spells < 2) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
}
Instance of Symbol 154 MovieClip in Frame 21
onClipEvent (load) {
if (_global.spells < 3) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(41);
_global.spell = 3;
}
}
Instance of Symbol 156 MovieClip in Frame 21
onClipEvent (load) {
if (_global.spells < 4) {
_visible = 0;
}
}
on (release) {
if (_global.fightPhase == 1) {
_global.fightPhase = 2;
_root.attacker.gotoAndPlay(61);
_global.spell = 4;
}
}
Frame 22
stop();
_global.fightPhase = 1;
_root.display.exp = "you got 400 exp";
_global.exp = _global.exp + 200;
_root.exp = "exp" + _global.exp;
_root.display.gold = "you got 400 gold";
_global.gp = _global.gp + 200;
_root.gp = "gp" + _global.gp;
Instance of Symbol 117 MovieClip in Frame 22
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("final");
}
Instance of Symbol 611 MovieClip in Frame 22
onClipEvent (load) {
_global.enstrength = 1;
_root.enhp = 100;
_global.enPoison = 0;
_global.enattacks = 2;
}
Instance of Symbol 117 MovieClip in Frame 23
on (release) {
_global.fightphase = 0;
_root.gotoAndStop("outside");
}
Instance of Symbol 117 MovieClip in Frame 24
on (release) {
_global.fightphase = 0;
_root.gotoAndStop(2);
}
Instance of Symbol 148 MovieClip in Frame 25
on (release) {
_root.attacker.gotoAndPlay(11);
}
Instance of Symbol 148 MovieClip in Frame 25
on (release) {
_root.attacker.gotoAndPlay(41);
_global.spell = 1;
}
Instance of Symbol 148 MovieClip in Frame 25
on (release) {
_root.attacker.gotoAndPlay(61);
_global.spell = 2;
}
Instance of Symbol 4 MovieClip in Symbol 5 MovieClip Frame 1
onClipEvent (load) {
_root.stop();
stop();
}
onClipEvent (enterFrame) {
if (_currentframe < ((_root.getBytesLoaded() / _root.getBytesTotal()) * _totalframes)) {
nextFrame();
}
if (_currentframe == _totalframes) {
_root.play();
}
}
Symbol 48 MovieClip Frame 1
stop();
Symbol 48 MovieClip Frame 22
gotoAndPlay (2);
Symbol 71 MovieClip Frame 1
stop();
Symbol 71 MovieClip Frame 22
gotoAndPlay (2);
Symbol 94 MovieClip Frame 1
stop();
Symbol 94 MovieClip Frame 22
gotoAndPlay (2);
Instance of Symbol 48 MovieClip "back" in Symbol 95 MovieClip Frame 1
onClipEvent (load) {
_visible = 0;
}
Instance of Symbol 71 MovieClip "right" in Symbol 95 MovieClip Frame 1
onClipEvent (load) {
_visible = 0;
}
Symbol 114 MovieClip Frame 1
stop();
Symbol 114 MovieClip Frame 2
stop();
Symbol 262 MovieClip Frame 10
stop();
Symbol 262 MovieClip Frame 30
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - random(20);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 262 MovieClip Frame 40
_global.fightPhase = 1;
stop();
Symbol 262 MovieClip Frame 60
_global.fightPhase = 1;
stop();
Symbol 262 MovieClip Frame 71
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - random(20);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 262 MovieClip Frame 80
_global.fightPhase = 1;
stop();
Symbol 262 MovieClip Frame 101
stop();
Symbol 381 MovieClip Frame 10
stop();
Symbol 381 MovieClip Frame 30
_root.defender.gotoAndPlay("hit");
_root.enhp = _root.enhp - ((10 + random(20)) * (((_global.wp + _global.lvl) + _global.str) / 2));
Symbol 381 MovieClip Frame 40
_global.fightPhase = 3;
stop();
Instance of Symbol 315 MovieClip in Symbol 381 MovieClip Frame 50
onClipEvent (load) {
_root.attacker.stop();
if (!(_global.spell === 1)) {
stop();
}
}
onClipEvent (enterFrame) {
if (_currentframe == _totalframes) {
_root.attacker.play();
}
}
Instance of Symbol 319 MovieClip in Symbol 381 MovieClip Frame 50
onClipEvent (load) {
_root.attacker.stop();
if (!(_global.spell === 3)) {
stop();
}
}
onClipEvent (enterFrame) {
if (_currentframe == _totalframes) {
_root.attacker.play();
}
}
Symbol 381 MovieClip Frame 51
if (_global.spell == 1) {
_global.hp = _global.hp + ((random(10) + 10) * _global.int);
if (_global.hp > _global.maxhp) {
_global.hp = _global.maxhp;
}
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
}
if (_global.spell == 3) {
_global.enPoison = 1;
}
Symbol 381 MovieClip Frame 60
_global.fightPhase = 3;
stop();
Instance of Symbol 343 MovieClip in Symbol 381 MovieClip Frame 70
onClipEvent (load) {
_root.attacker.stop();
if (!(_global.spell === 2)) {
stop();
}
}
onClipEvent (enterFrame) {
if (_currentframe == _totalframes) {
_root.attacker.play();
}
}
Instance of Symbol 348 MovieClip in Symbol 381 MovieClip Frame 70
onClipEvent (load) {
_root.attacker.stop();
if (!(_global.spell === 4)) {
stop();
}
}
onClipEvent (enterFrame) {
if (_currentframe == _totalframes) {
_root.attacker.play();
}
}
Symbol 381 MovieClip Frame 71
_root.defender.gotoAndPlay("hit");
if (_global.spell == 2) {
_root.enhp = _root.enhp - (random(20) * (_global.int / 2));
}
if (_global.spell == 4) {
_root.enhp = _root.enhp - ((20 + random(20)) * _global.int);
}
Symbol 381 MovieClip Frame 80
_global.fightPhase = 3;
stop();
Symbol 381 MovieClip Frame 101
stop();
if (_global.hp < 0) {
_root.gotoAndStop("dead");
}
Symbol 414 MovieClip Frame 1
stop();
Symbol 414 MovieClip Frame 22
gotoAndPlay (2);
Instance of Symbol 414 MovieClip "char" in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (fightphase == 0) {
if (Key.isDown(16)) {
walkspd = 15;
} else {
walkspd = 5;
}
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (Key.isDown(39)) {
_rotation = (_rotation + 5);
}
if (Key.isDown(37)) {
_rotation = (_rotation - 5);
}
if (Key.isDown(38)) {
radian = (Math.PI/180) * _rotation;
point.y = point.y - (Math.cos(radian) * walkspd);
point.x = point.x + (Math.sin(radian) * walkspd);
if (_root.map.hit.hitTest(point.x, point.y, true)) {
} else {
_y = (_y - (Math.cos(radian) * walkspd));
_x = (_x + (Math.sin(radian) * walkspd));
}
}
if (Key.isDown(40)) {
point.y = point.y + walkspd;
if (_root.map.hit.hitTest(point.x, point.y, true)) {
} else {
this._y = this._y + walkspd;
}
}
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn1");
_visible = 0;
}
}
}
Instance of Symbol 17 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("town");
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn1");
_visible = 0;
}
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn1");
_visible = 0;
}
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn1");
_visible = 0;
}
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
enspeed = 6;
} else {
enspeed = 3;
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn2");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
enspeed = 3;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
}
}
Instance of Symbol 416 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if ((_visible == 1) and (_global.fightphase == 0)) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleEn3");
_visible = 0;
}
}
_rotation = (_rotation + (random(10) - 5));
radian = (Math.PI/180) * _rotation;
_y = (_y - (Math.cos(radian) * enspeed));
_x = (_x + (Math.sin(radian) * enspeed));
point = new object();
point.x = 0;
point.y = 0;
localToGlobal(point);
if (_root.map.hit.hitTest(point.x, point.y, true) or _root.map.enhit.hitTest(point.x, point.y, true)) {
_rotation = (_rotation + 180);
enspeed = 6;
} else {
enspeed = 3;
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn1");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn3");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn2");
_visible = 0;
}
}
}
Instance of Symbol 418 MovieClip in Symbol 419 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_visible == 1) {
if (this.hitTest(_root.map.char)) {
_root.gotoAndStop("battleTrollEn2");
_visible = 0;
}
}
}
Symbol 514 MovieClip Frame 10
stop();
Symbol 514 MovieClip Frame 30
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - ((5 + random(5)) * _global.enstrength);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 514 MovieClip Frame 40
_global.fightPhase = 1;
stop();
Symbol 514 MovieClip Frame 60
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - ((5 + random(5)) * _global.enstrength);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 514 MovieClip Frame 70
_global.fightPhase = 1;
stop();
Symbol 514 MovieClip Frame 91
stop();
Symbol 611 MovieClip Frame 10
stop();
Symbol 611 MovieClip Frame 30
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - ((10 + random(7)) * _global.enstrength);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 611 MovieClip Frame 40
_global.fightPhase = 1;
stop();
Symbol 611 MovieClip Frame 60
_root.attacker.gotoAndPlay(81);
_global.hp = _global.hp - ((10 + random(7)) * _global.enstrength);
_root.hp = (("hp" + _global.hp) + "/") + _global.maxhp;
Symbol 611 MovieClip Frame 70
_global.fightPhase = 1;
stop();
Symbol 611 MovieClip Frame 90
stop();
Symbol 738 MovieClip Frame 121
stop();