Instance of Symbol 3 MovieClip in Frame 1
onClipEvent (enterFrame) {
if (_root.getBytesLoaded() < _root.getBytesTotal()) {
this._xscale = 1500 * (_root.getBytesLoaded() / _root.getBytesTotal());
} else {
_root.play();
}
_parent.loadtext = ("Loading... " + (Math.floor((_root.getBytesLoaded() / _root.getBytesTotal()) * 1000) / 10)) + " Percent";
}
Frame 2
stop();
Frame 3
function colorize(obje, passr, passg, passb, passa) {
tempc = new Color(eval (obje));
tempc = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
tempc.rb = passr;
tempc.gb = passg;
tempc.bb = passb;
tempc.ab = passa;
eval (obje).Acolor = tempc;
eval (obje).Ccolor = new Color(eval (obje));
eval (obje).Ccolor.setTransform(eval (obje).Acolor);
}
Instance of Symbol 1381 MovieClip "controller" in Frame 5
onClipEvent (load) {
function Log(s) {
GLOBAL_LOG.unshift(s + newline);
if (256 < GLOBAL_LOG.length) {
GLOBAL_LOG.pop();
}
}
function numclamp(v) {
if (v < 0) {
v = 0;
} else {
v = Math.ceil(v);
}
return(v);
}
function addcharactervariables(targ) {
targ.hp = 63;
targ.in_movex = 0;
targ.in_movey = 0;
targ.in_action = 0;
targ.hatk = 32;
targ.matk = 32;
targ.latk = 32;
targ.hdef = 0;
targ.mdef = 0;
targ.ldef = 0;
targ.hdefon = 0;
targ.mdefon = 0;
targ.ldefon = 0;
targ.s_atktype = 0;
targ.s_animbusy = 0;
targ.s_idle = 1;
targ.s_moving = 0;
targ.s_attacking = 0;
targ.s_hit = 0;
targ.s_vx = 0;
targ.s_movespeed = 1;
targ.m_name = "NULL";
targ.m_status = "NULL";
targ._y = GLOBAL_FLOOR;
}
function pauseall() {
GLOBAL_PAUSE = true;
GLOBAL_PLAYER.stop();
GLOBAL_ENEMY.enemy.stop();
_parent.playershad.t.stop();
_parent.playershad.t.head.stop();
_parent.enemyshad.t.stop();
_parent.enemyshad.t.enemy.stop();
}
function unpauseall() {
GLOBAL_PAUSE = false;
GLOBAL_PLAYER.play(GLOBAL_PLAYER._currentframe);
GLOBAL_ENEMY.enemy.play(GLOBAL_ENEMY._currentframe);
_parent.playershad.t.play();
_parent.playershad.t.head.play();
_parent.enemyshad.t.play();
_parent.enemyshad.t.enemy.play();
}
function movecharacter(obje) {
with (obje) {
framename = "null";
if ((s_idle || (s_moving != 0)) && (((!s_attacking) && (!s_hit)) && (!s_animbusy))) {
if (in_action) {
hdefon = 0;
mdefon = 0;
ldefon = 0;
if (0 < in_movex) {
_xscale = 100;
framename = "atkm";
} else if (in_movex < 0) {
_xscale = -100;
framename = "atkm";
}
if (0 < in_movey) {
framename = "atkh";
} else if (in_movey < 0) {
framename = "atkl";
}
} else if (0 < in_movex) {
hdefon = 0;
mdefon = 0;
ldefon = 0;
_xscale = 100;
if (s_moving == 0) {
framename = "walk";
}
} else if (in_movex < 0) {
hdefon = 0;
mdefon = 0;
ldefon = 0;
_xscale = -100;
if (s_moving == 0) {
framename = "walk";
}
} else if (in_movex == 0) {
hdefon = 0;
mdefon = 0;
ldefon = 0;
if (0 < in_movey) {
hdefon = 1;
} else if (in_movey < 0) {
ldefon = 1;
} else if (in_movey == 0) {
mdefon = 1;
}
}
if (in_movex == 0) {
if ((((s_moving != 0) && (!s_attacking)) && (!s_hit)) && (!s_animbusy)) {
framename = "idle";
}
}
}
def_h._visible = false;
def_m._visible = false;
def_l._visible = false;
if (hdefon != 0) {
def_h._visible = true;
}
if (mdefon != 0) {
def_m._visible = true;
}
if (ldefon != 0) {
def_l._visible = true;
}
if (framename != "null") {
gotoAndPlay(framename);
}
}
}
function moveplayer() {
movecharacter(GLOBAL_PLAYER);
if ((((GLOBAL_PLAYER.s_idle == 0) && (GLOBAL_PLAYER.s_moving != 0)) && (GLOBAL_PLAYER.s_vx == 0)) && (!GLOBAL_PLAYER.s_animbusy)) {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x + ((GLOBAL_PLAYER._xscale / 100) * GLOBAL_PLAYER.s_moving);
}
if ((GLOBAL_PLAYER.s_vx != 0) && (!GLOBAL_PLAYER.s_animbusy)) {
if (GLOBAL_ENEMY._x < GLOBAL_PLAYER._x) {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x + GLOBAL_PLAYER.s_vx;
} else {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x - GLOBAL_PLAYER.s_vx;
}
}
if (GLOBAL_PLAYER.cbox.hitTest(GLOBAL_ENEMY.enemy.cbox)) {
if (GLOBAL_PLAYER._x < GLOBAL_ENEMY._x) {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x + (GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMin - GLOBAL_PLAYER.cbox.getBounds(_root).xMax);
} else {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x + (GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMax - GLOBAL_PLAYER.cbox.getBounds(_root).xMin);
}
}
}
function moveenemy() {
movecharacter(GLOBAL_ENEMY.enemy);
if (GLOBAL_ENEMY._x < GLOBAL_PLAYER._x) {
GLOBAL_ENEMY.enemy._xscale = 100;
} else {
GLOBAL_ENEMY.enemy._xscale = -100;
}
if (((GLOBAL_ENEMY.enemy.s_idle == 0) && (GLOBAL_ENEMY.enemy.s_moving != 0)) && (!GLOBAL_ENEMY.enemy.s_animbusy)) {
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x + (((GLOBAL_ENEMY.enemy._xscale / 100) * GLOBAL_ENEMY.enemy.s_moving) * GLOBAL_ENEMY.s_movespeed);
}
if ((GLOBAL_ENEMY.enemy.s_vx != 0) && (!GLOBAL_ENEMY.enemy.s_animbusy)) {
if (GLOBAL_ENEMY._x < GLOBAL_PLAYER._x) {
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x - GLOBAL_ENEMY.enemy.s_vx;
} else {
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x + GLOBAL_ENEMY.enemy.s_vx;
}
}
if (GLOBAL_ENEMY.enemy.cbox.hitTest(GLOBAL_PLAYER.cbox)) {
if (GLOBAL_ENEMY._x < GLOBAL_PLAYER._x) {
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x + (GLOBAL_PLAYER.cbox.getBounds(_root).xMin - GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMax);
} else {
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x + (GLOBAL_PLAYER.cbox.getBounds(_root).xMax - GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMin);
}
}
}
function damagecollisions() {
if (GLOBAL_ENEMY.enemy.s_attacking) {
if (GLOBAL_ENEMY.enemy.abox.hitTest(GLOBAL_PLAYER.cbox)) {
if (GLOBAL_ENEMY.enemy.s_atktype < 1) {
var dmg = (GLOBAL_ENEMY.latk - GLOBAL_PLAYER.ldef);
if (GLOBAL_PLAYER.ldefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_PLAYER.hp = GLOBAL_PLAYER.hp - dmg;
GLOBAL_PLAYER.gotoAndPlay("hitl");
GLOBAL_PLAYER.s_hit = true;
GLOBAL_ENEMY.enemy.s_attacking = 0;
Log(((((GLOBAL_ENEMY.m_name + " hit ") + GLOBAL_PLAYER.m_name) + " for ") + dmg) + "!");
} else if (GLOBAL_ENEMY.enemy.s_atktype == 1) {
var dmg = (GLOBAL_ENEMY.matk - GLOBAL_PLAYER.mdef);
if (GLOBAL_PLAYER.mdefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_PLAYER.hp = GLOBAL_PLAYER.hp - dmg;
GLOBAL_PLAYER.gotoAndPlay("hitm");
GLOBAL_PLAYER.s_hit = true;
GLOBAL_ENEMY.enemy.s_attacking = 0;
Log(((((GLOBAL_ENEMY.m_name + " hit ") + GLOBAL_PLAYER.m_name) + " for ") + dmg) + "!");
} else if (GLOBAL_ENEMY.enemy.s_atktype == 2) {
var dmg = (GLOBAL_ENEMY.hatk - GLOBAL_PLAYER.hdef);
if (GLOBAL_PLAYER.hdefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_PLAYER.hp = GLOBAL_PLAYER.hp - dmg;
GLOBAL_PLAYER.gotoAndPlay("hith");
GLOBAL_PLAYER.s_hit = true;
GLOBAL_ENEMY.enemy.s_attacking = 0;
Log(((((GLOBAL_ENEMY.m_name + " hit ") + GLOBAL_PLAYER.m_name) + " for ") + dmg) + "!");
}
numclamp(GLOBAL_PLAYER.hp);
}
}
if (GLOBAL_PLAYER.s_attacking) {
if (GLOBAL_PLAYER.abox.hitTest(GLOBAL_ENEMY.enemy.cbox)) {
if (GLOBAL_PLAYER.s_atktype < 1) {
var dmg = (GLOBAL_PLAYER.latk - GLOBAL_ENEMY.ldef);
if (GLOBAL_ENEMY.ldefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_ENEMY.hp = GLOBAL_ENEMY.hp - dmg;
GLOBAL_ENEMY.enemy.gotoAndPlay("hitl");
GLOBAL_ENEMY.s_hit = true;
GLOBAL_ENEMY.ai = -1;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_POINTS = GLOBAL_POINTS + dmg;
Log(((((GLOBAL_PLAYER.m_name + " hit ") + GLOBAL_ENEMY.m_name) + " for ") + dmg) + "!");
} else if (GLOBAL_PLAYER.s_atktype == 1) {
var dmg = (GLOBAL_PLAYER.matk - GLOBAL_ENEMY.mdef);
if (GLOBAL_ENEMY.lmdefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_ENEMY.hp = GLOBAL_ENEMY.hp - dmg;
GLOBAL_ENEMY.enemy.gotoAndPlay("hitm");
GLOBAL_ENEMY.s_hit = true;
GLOBAL_ENEMY.ai = -1;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_POINTS = GLOBAL_POINTS + dmg;
Log(((((GLOBAL_PLAYER.m_name + " hit ") + GLOBAL_ENEMY.m_name) + " for ") + dmg) + "!");
} else if (GLOBAL_PLAYER.s_atktype == 2) {
var dmg = (GLOBAL_PLAYER.hatk - GLOBAL_ENEMY.hdef);
if (GLOBAL_ENEMY.hdefon != 0) {
dmg = dmg / 2;
}
dmg = numclamp(dmg);
GLOBAL_ENEMY.hp = GLOBAL_ENEMY.hp - dmg;
GLOBAL_ENEMY.enemy.gotoAndPlay("hith");
GLOBAL_ENEMY.s_hit = true;
GLOBAL_ENEMY.ai = -1;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_POINTS = GLOBAL_POINTS + dmg;
Log(((((GLOBAL_PLAYER.m_name + " hit ") + GLOBAL_ENEMY.m_name) + " for ") + dmg) + "!");
}
numclamp(GLOBAL_ENEMY.hp);
}
}
}
function pickEnemy(ev) {
if ((ev < 2) || (GLOBAL_ENEMY._totalframes < ev)) {
if (GLOBAL_ENEMY._totalframes < (GLOBAL_ENEMY._currentframe + 1)) {
GLOBAL_ENEMY.gotoAndStop(2);
} else {
GLOBAL_ENEMY.gotoAndStop(GLOBAL_ENEMY._currentframe + 1);
}
} else {
GLOBAL_ENEMY.gotoAndStop(int(ev));
}
Log("A new enemy approaches...");
}
function ObjHitsBody(obj) {
return(GLOBAL_PLAYER.cbox.hitTest(obj));
}
function ObjHitsBodyCenter(obj) {
return(GLOBAL_PLAYER.centerbox.hitTest(obj));
}
function ObjHitsHead(obj) {
return(GLOBAL_PLAYER.head.hitTest(obj));
}
function ObjHitsHeadCenter(obj) {
return(GLOBAL_PLAYER.head.center.hitTest(obj));
}
function CanVoreHigh() {
if (GLOBAL_PLAYER.hdefon == 0) {
return(true);
}
return(false);
}
function CanVoreMid() {
if (GLOBAL_PLAYER.mdefon == 0) {
return(true);
}
return(false);
}
function CanVoreLow() {
if (GLOBAL_PLAYER.ldefon == 0) {
return(true);
}
return(false);
}
function CanVore() {
if (((GLOBAL_PLAYER.ldefon == 0) && (GLOBAL_PLAYER.mdefon == 0)) && (GLOBAL_PLAYER.hdefon == 0)) {
return(true);
}
return(false);
}
GLOBAL_FLOOR = 180;
GLOBAL_LIVES = 6;
GLOBAL_KILLS = 0;
GLOBAL_POINTS = 0;
GLOBAL_LOG = new Array();
GLOBAL_PAUSE = false;
GLOBAL_PAUSECTR = false;
GLOBAL_PAUSEHFR = false;
GLOBAL_PLAYER = _parent.player;
GLOBAL_ENEMY = _parent.enemy;
GLOBAL_ENEMY_TIMEOUT = 0;
GLOBAL_BG = _parent.MBG;
_parent.colorize(_parent.playershad, -100, -100, -100, -50);
_parent.colorize(_parent.enemyshad, -100, -100, -100, -50);
addcharactervariables(GLOBAL_PLAYER);
addcharactervariables(GLOBAL_ENEMY);
GLOBAL_ENEMY.ai = 1;
GLOBAL_PLAYER.m_name = "Barb";
GLOBAL_PLAYER.m_status = "Normal";
pickEnemy(0);
}
onClipEvent (enterFrame) {
if (!GLOBAL_PAUSE) {
if (Key.isDown(101) || (Key.isDown(Key.SPACE))) {
GLOBAL_PLAYER.in_action = true;
} else {
GLOBAL_PLAYER.in_action = false;
}
if (Key.isDown(100) || (Key.isDown(Key.LEFT))) {
GLOBAL_PLAYER.in_movex = -1;
} else if (Key.isDown(102) || (Key.isDown(Key.RIGHT))) {
GLOBAL_PLAYER.in_movex = 1;
} else {
GLOBAL_PLAYER.in_movex = 0;
}
if (Key.isDown(104) || (Key.isDown(Key.UP))) {
GLOBAL_PLAYER.in_movey = 1;
} else if (Key.isDown(98) || (Key.isDown(Key.DOWN))) {
GLOBAL_PLAYER.in_movey = -1;
} else {
GLOBAL_PLAYER.in_movey = 0;
}
moveplayer();
if (((Math.abs(GLOBAL_PLAYER._x - GLOBAL_ENEMY._x) < (2 * GLOBAL_PLAYER._width)) || (!GLOBAL_PLAYER.s_attacking)) && ((GLOBAL_PLAYER.cbox.getBounds(_root).xMax + 16) < GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMin)) {
GLOBAL_ENEMY.enemy.in_movex = -1 * GLOBAL_ENEMY.ai;
if ((Math.random() * 10) < 2) {
GLOBAL_ENEMY.ai = 1;
}
} else if (((Math.abs(GLOBAL_PLAYER._x - GLOBAL_ENEMY._x) < (2 * GLOBAL_PLAYER._width)) || (!GLOBAL_PLAYER.s_attacking)) && (GLOBAL_ENEMY.enemy.cbox.getBounds(_root).xMax < (GLOBAL_PLAYER.cbox.getBounds(_root).xMin - 16))) {
GLOBAL_ENEMY.enemy.in_movex = 1 * GLOBAL_ENEMY.ai;
if ((Math.random() * 10) < 2) {
GLOBAL_ENEMY.ai = 1;
}
} else {
GLOBAL_ENEMY.enemy.in_movex = 0;
if ((GLOBAL_PLAYER.s_attacking && (!GLOBAL_ENEMY.enemy.s_attacking)) && (Math.abs(GLOBAL_PLAYER._x - GLOBAL_ENEMY._x) < (2 * GLOBAL_PLAYER._width))) {
GLOBAL_ENEMY.ai = -1;
} else if ((((GLOBAL_ENEMY.enemy.s_moving != 0) && (!GLOBAL_ENEMY.enemy.s_attacking)) && (!GLOBAL_ENEMY.enemy.s_hit)) && (!GLOBAL_ENEMY.enemy.s_animbusy)) {
GLOBAL_ENEMY.enemy.gotoAndPlay("idle");
} else if (GLOBAL_PLAYER._x < GLOBAL_ENEMY._x) {
if (Math.floor(Math.random() * 10) == 0) {
GLOBAL_ENEMY.enemy.in_movex = 0;
GLOBAL_ENEMY.enemy.in_movey = 1;
GLOBAL_ENEMY.enemy.in_action = 1;
} else if (Math.floor(Math.random() * 10) == 0) {
GLOBAL_ENEMY.enemy.in_movex = 0;
GLOBAL_ENEMY.enemy.in_movey = -1;
GLOBAL_ENEMY.enemy.in_action = 1;
} else {
GLOBAL_ENEMY.enemy.in_movex = 1;
GLOBAL_ENEMY.enemy.in_movey = 0;
GLOBAL_ENEMY.enemy.in_action = 1;
}
} else if (Math.floor(Math.random() * 10) == 0) {
GLOBAL_ENEMY.enemy.in_movex = 0;
GLOBAL_ENEMY.enemy.in_movey = 1;
GLOBAL_ENEMY.enemy.in_action = 1;
} else if (Math.floor(Math.random() * 10) == 0) {
GLOBAL_ENEMY.enemy.in_movex = 0;
GLOBAL_ENEMY.enemy.in_movey = -1;
GLOBAL_ENEMY.enemy.in_action = 1;
} else {
GLOBAL_ENEMY.enemy.in_movex = -1;
GLOBAL_ENEMY.enemy.in_movey = 0;
GLOBAL_ENEMY.enemy.in_action = 1;
}
}
if (Key.isDown(87)) {
GLOBAL_ENEMY.enemy.in_movey = 1;
} else if (Key.isDown(83)) {
GLOBAL_ENEMY.enemy.in_movey = -1;
}
if (Key.isDown(65)) {
GLOBAL_ENEMY.enemy.in_movex = 1;
} else if (Key.isDown(68)) {
GLOBAL_ENEMY.enemy.in_movex = -1;
}
if (Key.isDown(70)) {
GLOBAL_ENEMY.enemy.in_action = 1;
}
if (0 < GLOBAL_PLAYER.hp) {
moveenemy();
}
damagecollisions();
if (GLOBAL_PLAYER.cbox.getBounds(_root).xMax < 0) {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x + 320;
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x + 320;
GLOBAL_BG._x = GLOBAL_BG._x + 320;
if (0 < GLOBAL_BG._x) {
GLOBAL_BG._x = -960;
}
} else if (320 < GLOBAL_PLAYER.cbox.getBounds(_root).xMin) {
GLOBAL_PLAYER._x = GLOBAL_PLAYER._x - 320;
GLOBAL_ENEMY._x = GLOBAL_ENEMY._x - 320;
GLOBAL_BG._x = GLOBAL_BG._x - 320;
if (GLOBAL_BG._x < -960) {
GLOBAL_BG._x = 0;
}
}
if (GLOBAL_PLAYER.hp < 1) {
if ((!GLOBAL_PLAYER.s_hit) && (!GLOBAL_PLAYER.s_animbusy)) {
GLOBAL_PLAYER.gotoAndPlay("death");
}
}
if (GLOBAL_ENEMY.hp < 1) {
GLOBAL_ENEMY.hp = 0;
if (!GLOBAL_ENEMY.enemy.s_animbusy) {
GLOBAL_ENEMY.enemy.gotoAndPlay("death");
}
if (GLOBAL_ENEMY_TIMEOUT == 1) {
GLOBAL_KILLS++;
Log(("YOU KILLED THE " + GLOBAL_ENEMY.m_name) + "!");
}
GLOBAL_ENEMY_TIMEOUT++;
if (60 < GLOBAL_ENEMY_TIMEOUT) {
pickEnemy(0);
GLOBAL_PLAYER.hp = 63;
GLOBAL_PLAYER.s_atktype = 0;
GLOBAL_PLAYER.s_animbusy = 0;
GLOBAL_PLAYER.s_idle = 1;
GLOBAL_PLAYER.s_moving = 0;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_PLAYER.s_hit = 0;
GLOBAL_PLAYER.s_vx = 0;
GLOBAL_PLAYER._alpha = 100;
GLOBAL_PLAYER.head._alpha = 100;
GLOBAL_PLAYER.head._visible = true;
GLOBAL_PLAYER._visible = true;
GLOBAL_PLAYER.gotoAndPlay(1);
if (Math.random() < 0.5) {
GLOBAL_ENEMY._x = GLOBAL_PLAYER._x + 640;
} else {
GLOBAL_ENEMY._x = GLOBAL_PLAYER._x - 640;
}
GLOBAL_ENEMY_TIMEOUT = 0;
}
}
_parent.gui_enemyhp.setbarvalue(GLOBAL_ENEMY.hp);
_parent.gui_playerhp.setbarvalue(GLOBAL_PLAYER.hp);
_parent.gui_playername = GLOBAL_PLAYER.m_name;
_parent.gui_playerstatus = GLOBAL_PLAYER.m_status;
_parent.gui_enemyname = GLOBAL_ENEMY.m_name;
_parent.gui_enemystatus = GLOBAL_ENEMY.m_status;
_parent.gui_leveldesc = "Arid Mountains\n";
_parent.gui_leveldesc = _parent.gui_leveldesc + ((GLOBAL_LOG[0] + GLOBAL_LOG[1]) + GLOBAL_LOG[2]);
_parent.gui_points = "Score: " + GLOBAL_POINTS;
_parent.gui_kills = "Kills: " + GLOBAL_KILLS;
_parent.playershad._y = GLOBAL_PLAYER._y;
_parent.playershad._x = GLOBAL_PLAYER._x;
_parent.playershad._yscale = 10;
_parent.playershad._xscale = GLOBAL_PLAYER._xscale;
_parent.playershad.t.gotoAndStop(GLOBAL_PLAYER._currentframe);
_parent.playershad._alpha = GLOBAL_PLAYER._alpha;
_parent.playershad.t.head._alpha = GLOBAL_PLAYER.head._alpha;
_parent.playershad.t.head._x = GLOBAL_PLAYER.head._x;
_parent.playershad.t.head._y = GLOBAL_PLAYER.head._y;
_parent.enemyshad._y = GLOBAL_ENEMY._y;
_parent.enemyshad._x = GLOBAL_ENEMY._x;
_parent.enemyshad._yscale = 10;
_parent.enemyshad._xscale = GLOBAL_ENEMY.enemy._xscale;
_parent.enemyshad.t.gotoAndStop(GLOBAL_ENEMY._currentframe);
_parent.enemyshad.t.enemy.gotoAndStop(GLOBAL_ENEMY.enemy._currentframe);
}
if (Key.isDown(Key.INSERT)) {
GLOBAL_PAUSEHFR = false;
if (!GLOBAL_PAUSECTR) {
if (!GLOBAL_PAUSE) {
pauseall();
} else {
unpauseall();
}
}
GLOBAL_PAUSECTR = true;
} else {
GLOBAL_PAUSECTR = false;
}
if (Key.isDown(Key.END)) {
GLOBAL_PLAYER.hp = 63;
GLOBAL_PLAYER.s_atktype = 0;
GLOBAL_PLAYER.s_animbusy = 0;
GLOBAL_PLAYER.s_idle = 1;
GLOBAL_PLAYER.s_moving = 0;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_PLAYER.s_hit = 0;
GLOBAL_PLAYER.s_vx = 0;
GLOBAL_PLAYER._alpha = 100;
GLOBAL_PLAYER.head._alpha = 100;
GLOBAL_PLAYER.head._visible = true;
GLOBAL_PLAYER._visible = true;
GLOBAL_PLAYER.gotoAndPlay(1);
}
if (Key.isDown(Key.HOME)) {
GLOBAL_PAUSEHFR = true;
}
if (GLOBAL_PAUSEHFR == true) {
if (!GLOBAL_PAUSE) {
pauseall();
} else {
unpauseall();
}
}
}
Frame 6
stop();
Symbol 14 MovieClip Frame 1
function setbarvalue(v) {
if (v < 0) {
v = 0;
}
colorv = int(v / 64);
if (colorv == 0) {
_root.colorize(bar, 0, 200, 0, 0);
_root.colorize(nextcolor, 0, 0, 0, 0);
} else if (colorv == 1) {
_root.colorize(bar, 200, 200, 0, 0);
_root.colorize(nextcolor, 0, 200, 0, 0);
} else if (colorv == 2) {
_root.colorize(bar, 255, 128, 0, 0);
_root.colorize(nextcolor, 200, 200, 0, 0);
} else if (colorv == 3) {
_root.colorize(bar, 200, 0, 0, 0);
_root.colorize(nextcolor, 255, 128, 0, 0);
} else if (colorv == 4) {
_root.colorize(bar, 200, 200, 200, 0);
_root.colorize(nextcolor, 200, 0, 0, 0);
} else {
_root.colorize(bar, 200, 200, 200, 0);
_root.colorize(nextcolor, 50, 50, 50, 0);
}
v = v % 64;
bar._yscale = v / 0.64;
}
Symbol 14 MovieClip Frame 2
stop();
Symbol 20 Button
on (press) {
with (controller) {
GLOBAL_PLAYER.hp = 63;
GLOBAL_PLAYER.s_atktype = 0;
GLOBAL_PLAYER.s_animbusy = 0;
GLOBAL_PLAYER.s_idle = 1;
GLOBAL_PLAYER.s_moving = 0;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_PLAYER.s_hit = 0;
GLOBAL_PLAYER.s_vx = 0;
GLOBAL_PLAYER._alpha = 100;
GLOBAL_PLAYER.head._alpha = 100;
GLOBAL_PLAYER.head._visible = true;
GLOBAL_PLAYER._visible = true;
GLOBAL_PLAYER.gotoAndPlay(1);
}
}
Symbol 21 Button
on (press) {
with (controller) {
pickEnemy(0);
GLOBAL_PLAYER.hp = 63;
GLOBAL_PLAYER.s_atktype = 0;
GLOBAL_PLAYER.s_animbusy = 0;
GLOBAL_PLAYER.s_idle = 1;
GLOBAL_PLAYER.s_moving = 0;
GLOBAL_PLAYER.s_attacking = 0;
GLOBAL_PLAYER.s_hit = 0;
GLOBAL_PLAYER.s_vx = 0;
GLOBAL_PLAYER._alpha = 100;
GLOBAL_PLAYER.head._alpha = 100;
GLOBAL_PLAYER.head._visible = true;
GLOBAL_PLAYER._visible = true;
GLOBAL_PLAYER.gotoAndPlay(1);
if (Math.random() < 0.5) {
GLOBAL_ENEMY._x = GLOBAL_PLAYER._x + 640;
} else {
GLOBAL_ENEMY._x = GLOBAL_PLAYER._x - 640;
}
GLOBAL_ENEMY_TIMEOUT = 0;
}
}
Symbol 60 MovieClip Frame 2
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
s_vx = 0;
Symbol 60 MovieClip Frame 10
gotoAndPlay (2);
Symbol 60 MovieClip Frame 11
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 60 MovieClip Frame 21
gotoAndPlay (2);
Symbol 60 MovieClip Frame 22
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 60 MovieClip Frame 31
gotoAndPlay (2);
Symbol 60 MovieClip Frame 32
s_animbusy = 1;
Symbol 60 MovieClip Frame 36
gotoAndPlay (2);
Symbol 60 MovieClip Frame 37
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 60 MovieClip Frame 49
gotoAndPlay (2);
Symbol 60 MovieClip Frame 50
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 60 MovieClip Frame 63
gotoAndPlay (2);
Symbol 60 MovieClip Frame 64
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 60 MovieClip Frame 76
gotoAndPlay (2);
Symbol 60 MovieClip Frame 77
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 6;
Symbol 60 MovieClip Frame 81
gotoAndPlay (2);
Symbol 60 MovieClip Frame 82
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 60 MovieClip Frame 86
gotoAndPlay (2);
Symbol 60 MovieClip Frame 87
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 60 MovieClip Frame 91
gotoAndPlay (2);
Symbol 60 MovieClip Frame 92
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 60 MovieClip Frame 105
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
hp = 0;
Symbol 60 MovieClip Frame 110
stop();
Symbol 60 MovieClip Frame 116
gotoAndStop (112);
Symbol 62 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 62 MovieClip Frame 9
gotoAndPlay (1);
Symbol 62 MovieClip Frame 10
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 62 MovieClip Frame 19
gotoAndPlay (1);
Symbol 62 MovieClip Frame 20
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 62 MovieClip Frame 29
gotoAndPlay (1);
Symbol 62 MovieClip Frame 30
s_animbusy = 1;
Symbol 62 MovieClip Frame 34
gotoAndPlay (1);
Symbol 62 MovieClip Frame 35
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 62 MovieClip Frame 44
gotoAndPlay (1);
Symbol 62 MovieClip Frame 45
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 62 MovieClip Frame 54
gotoAndPlay (1);
Symbol 62 MovieClip Frame 55
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 62 MovieClip Frame 64
gotoAndPlay (1);
Symbol 62 MovieClip Frame 65
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 62 MovieClip Frame 69
gotoAndPlay (1);
Symbol 62 MovieClip Frame 70
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 62 MovieClip Frame 74
gotoAndPlay (1);
Symbol 62 MovieClip Frame 75
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 62 MovieClip Frame 79
gotoAndPlay (1);
Symbol 62 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 62 MovieClip Frame 90
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 62 MovieClip Frame 95
gotoAndPlay (90);
Symbol 177 MovieClip Frame 1
play();
Symbol 177 MovieClip Frame 21
stop();
Symbol 179 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 69 MovieClip "sbox" in Symbol 179 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBody(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 179 MovieClip Frame 20
gotoAndPlay (1);
Symbol 179 MovieClip Frame 25
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 179 MovieClip Frame 45
gotoAndPlay (1);
Symbol 179 MovieClip Frame 46
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 179 MovieClip Frame 55
gotoAndPlay (1);
Symbol 179 MovieClip Frame 56
s_animbusy = 1;
Symbol 179 MovieClip Frame 60
gotoAndPlay (1);
Symbol 179 MovieClip Frame 61
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 86 MovieClip "sbox" in Symbol 179 MovieClip Frame 68
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
if (_parent._parent._parent.controller.CanVoreHigh()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.head._visible = false;
_parent._parent._parent.player.head._alpha = 0;
_parent._parent._parent.player.hp = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.controller.Log(_parent._parent._parent.controller.GLOBAL_PLAYER.m_name + "'s head got eaten!");
_parent.gotoAndPlay("eathead");
}
}
}
Symbol 179 MovieClip Frame 87
gotoAndPlay (1);
Symbol 179 MovieClip Frame 88
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 101 MovieClip "sbox" in Symbol 179 MovieClip Frame 96
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (_parent._parent._parent.controller.CanVore()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent._parent._parent.controller.Log(_parent._parent._parent.controller.GLOBAL_PLAYER.m_name + " was grabbed!");
_parent.gotoAndPlay("preswallow");
}
}
}
Symbol 179 MovieClip Frame 105
gotoAndPlay (1);
Symbol 179 MovieClip Frame 106
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 179 MovieClip Frame 117
gotoAndPlay (1);
Symbol 179 MovieClip Frame 119
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 179 MovieClip Frame 123
gotoAndPlay (1);
Symbol 179 MovieClip Frame 124
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 179 MovieClip Frame 128
gotoAndPlay (1);
Symbol 179 MovieClip Frame 129
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 1;
Symbol 179 MovieClip Frame 133
gotoAndPlay (1);
Symbol 179 MovieClip Frame 183
gotoAndPlay (212);
Symbol 179 MovieClip Frame 201
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Instance of Symbol 123 MovieClip in Symbol 179 MovieClip Frame 201
onClipEvent (enterFrame) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player._x = _parent._parent._x + (35.4 * (_parent._xscale / 100));
}
Symbol 179 MovieClip Frame 209
gotoAndPlay (229);
Symbol 179 MovieClip Frame 212
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 179 MovieClip Frame 217
_parent._parent.player._alpha = 0;
jen.head._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 179 MovieClip Frame 229
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
jen.head._alpha = 0;
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 179 MovieClip Frame 312
wiggle = 0;
Instance of Symbol 152 MovieClip "sbox" in Symbol 179 MovieClip Frame 313
onClipEvent (enterFrame) {
if ((_parent._parent._parent.player.in_movex != 0) || (_parent._parent._parent.player.in_movey != 0)) {
tvar = int(Math.random() * 3);
if (tvar == 0) {
_parent.gotoAndPlay("wiggle");
} else if (tvar == 1) {
_parent.gotoAndPlay("wiggle1");
} else {
_parent.gotoAndPlay("wiggle2");
}
}
}
Symbol 179 MovieClip Frame 342
if (3 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 3;
gotoAndPlay (313);
} else {
gotoAndPlay (397);
}
Symbol 179 MovieClip Frame 345
wiggle++;
_parent._parent.player.hp--;
Symbol 179 MovieClip Frame 353
if (_parent._parent.player.hp < 3) {
gotoAndPlay (397);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (377);
}
Symbol 179 MovieClip Frame 356
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 179 MovieClip Frame 364
if (_parent._parent.player.hp < 3) {
gotoAndPlay (397);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (377);
}
Symbol 179 MovieClip Frame 366
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 3;
Symbol 179 MovieClip Frame 374
if (_parent._parent.player.hp < 3) {
gotoAndPlay (397);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (377);
}
Symbol 179 MovieClip Frame 382
s_vx = -4;
Symbol 179 MovieClip Frame 392
s_vx = -4;
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (40 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 179 MovieClip Frame 397
_parent._parent.player.hp = 0;
Symbol 179 MovieClip Frame 416
gotoAndPlay (1);
Symbol 179 MovieClip Frame 421
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 179 MovieClip Frame 437
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 179 MovieClip Frame 442
gotoAndPlay (437);
Symbol 235 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 181 MovieClip "sbox" in Symbol 235 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 235 MovieClip Frame 9
gotoAndPlay (1);
Symbol 235 MovieClip Frame 15
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 235 MovieClip Frame 25
gotoAndPlay (1);
Symbol 235 MovieClip Frame 26
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 235 MovieClip Frame 35
gotoAndPlay (1);
Symbol 235 MovieClip Frame 36
s_animbusy = 1;
Symbol 235 MovieClip Frame 40
gotoAndPlay (1);
Symbol 235 MovieClip Frame 41
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 192 MovieClip in Symbol 235 MovieClip Frame 59
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
if (_parent._parent._parent.controller.CanVoreHigh()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("swallow");
}
}
}
Symbol 235 MovieClip Frame 65
gotoAndPlay (1);
Symbol 235 MovieClip Frame 68
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 235 MovieClip Frame 77
gotoAndPlay (1);
Symbol 235 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 235 MovieClip Frame 89
gotoAndPlay (1);
Symbol 235 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player._alpha = 0;
Symbol 235 MovieClip Frame 105
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player._alpha = 0;
Symbol 235 MovieClip Frame 120
struggle = 0;
Instance of Symbol 210 MovieClip in Symbol 235 MovieClip Frame 121
onClipEvent (enterFrame) {
if (_parent.struggle < 10) {
if ((_parent._parent._parent.player.in_movex != 0) || (_parent._parent._parent.player.in_movey != 0)) {
_parent.struggle++;
tvar = int(Math.random() * 3);
if (tvar == 0) {
_parent.gotoAndPlay("wiggle");
} else if (tvar == 1) {
_parent.gotoAndPlay("wiggle1");
} else {
_parent.gotoAndPlay("wiggle2");
}
}
} else {
_parent.gotoAndPlay("excrete");
}
}
Symbol 235 MovieClip Frame 140
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (121);
} else {
gotoAndPlay (180);
}
Symbol 235 MovieClip Frame 145
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 235 MovieClip Frame 155
gotoAndPlay (121);
Symbol 235 MovieClip Frame 156
_parent._parent.player.hp = _parent._parent.player.hp - 3;
Symbol 235 MovieClip Frame 166
gotoAndPlay (121);
Symbol 235 MovieClip Frame 167
_parent._parent.player.hp = _parent._parent.player.hp - 1;
Symbol 235 MovieClip Frame 177
gotoAndPlay (121);
Symbol 235 MovieClip Frame 180
_parent._parent.player.hp = 0;
Symbol 235 MovieClip Frame 230
gotoAndPlay (1);
Symbol 235 MovieClip Frame 250
s_vx = -4;
Symbol 235 MovieClip Frame 260
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (40 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
Symbol 235 MovieClip Frame 270
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 235 MovieClip Frame 274
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 235 MovieClip Frame 278
gotoAndPlay (1);
Symbol 235 MovieClip Frame 279
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 235 MovieClip Frame 283
gotoAndPlay (1);
Symbol 235 MovieClip Frame 284
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 235 MovieClip Frame 288
gotoAndPlay (1);
Symbol 235 MovieClip Frame 289
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 235 MovieClip Frame 299
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 235 MovieClip Frame 304
gotoAndPlay (299);
Symbol 307 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 241 MovieClip "sbox" in Symbol 307 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (0.5 < Math.random()) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
} else {
_parent.in_movex = 0;
_parent.in_movey = -1;
_parent.in_action = 1;
}
} else if (_parent._parent._parent.controller.ObjHitsHead(_parent.atkb1)) {
_parent.in_movex = _parent._xscale / Math.abs(_parent._xscale);
_parent.in_movey = 0;
_parent.in_action = 1;
}
}
Symbol 307 MovieClip Frame 20
gotoAndPlay (1);
Symbol 307 MovieClip Frame 26
s_idle = 0;
s_moving = 6;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 307 MovieClip Frame 36
gotoAndPlay (1);
Symbol 307 MovieClip Frame 37
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 307 MovieClip Frame 46
gotoAndPlay (1);
Symbol 307 MovieClip Frame 47
s_animbusy = 1;
Symbol 307 MovieClip Frame 51
gotoAndPlay (1);
Symbol 307 MovieClip Frame 55
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 253 MovieClip in Symbol 307 MovieClip Frame 59
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
if (_parent._parent._parent.controller.CanVore()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("eathead");
}
}
}
Symbol 307 MovieClip Frame 65
gotoAndPlay (1);
Symbol 307 MovieClip Frame 70
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 258 MovieClip in Symbol 307 MovieClip Frame 79
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (_parent._parent._parent.controller.CanVoreHigh()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("swallow");
}
}
}
Symbol 307 MovieClip Frame 89
gotoAndPlay (1);
Symbol 307 MovieClip Frame 94
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Instance of Symbol 265 MovieClip in Symbol 307 MovieClip Frame 102
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (_parent._parent._parent.controller.CanVoreMid() && (_parent._parent._parent.controller.CanVoreHigh())) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("grabeat");
}
}
}
Symbol 307 MovieClip Frame 108
gotoAndPlay (1);
Symbol 307 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 307 MovieClip Frame 125
gotoAndPlay (148);
Symbol 307 MovieClip Frame 131
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 307 MovieClip Frame 136
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 307 MovieClip Frame 148
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 307 MovieClip Frame 184
wiggle = 0;
gotoAndPlay (185);
Instance of Symbol 283 MovieClip in Symbol 307 MovieClip Frame 185
onClipEvent (enterFrame) {
_parent.in_movex = _parent._parent._parent.player.in_movex;
_parent.in_movey = _parent._parent._parent.player.in_movey;
_parent.in_action = 0;
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 307 MovieClip Frame 208
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (185);
} else {
gotoAndPlay (256);
}
Symbol 307 MovieClip Frame 211
wiggle++;
_parent._parent.player.hp--;
Symbol 307 MovieClip Frame 221
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 307 MovieClip Frame 222
wiggle++;
_parent._parent.player.hp--;
Symbol 307 MovieClip Frame 232
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 307 MovieClip Frame 233
wiggle++;
_parent._parent.player.hp--;
Symbol 307 MovieClip Frame 243
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 307 MovieClip Frame 244
wiggle++;
_parent._parent.player.hp--;
Symbol 307 MovieClip Frame 254
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 307 MovieClip Frame 256
_parent._parent.player.hp = 0;
Symbol 307 MovieClip Frame 275
gotoAndPlay (1);
Symbol 307 MovieClip Frame 312
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 307 MovieClip Frame 321
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (100 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 307 MovieClip Frame 326
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 307 MovieClip Frame 328
gotoAndPlay (1);
Symbol 307 MovieClip Frame 329
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 307 MovieClip Frame 331
gotoAndPlay (1);
Symbol 307 MovieClip Frame 332
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 307 MovieClip Frame 334
gotoAndPlay (1);
Symbol 307 MovieClip Frame 335
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 307 MovieClip Frame 345
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 307 MovieClip Frame 350
gotoAndPlay (345);
Symbol 369 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 312 MovieClip in Symbol 369 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 369 MovieClip Frame 17
gotoAndPlay (1);
Symbol 369 MovieClip Frame 18
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 369 MovieClip Frame 30
gotoAndPlay (1);
Symbol 369 MovieClip Frame 31
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 369 MovieClip Frame 40
gotoAndPlay (1);
Symbol 369 MovieClip Frame 41
s_animbusy = 1;
Symbol 369 MovieClip Frame 45
gotoAndPlay (1);
Symbol 369 MovieClip Frame 46
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 325 MovieClip in Symbol 369 MovieClip Frame 52
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHeadCenter(this)) {
if (_parent._parent._parent.controller.CanVoreHigh()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.head._visible = false;
_parent._parent._parent.player.head._alpha = 0;
_parent._parent._parent.player.hp = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("toungehead");
}
}
}
Symbol 369 MovieClip Frame 60
gotoAndPlay (1);
Symbol 369 MovieClip Frame 61
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 330 MovieClip in Symbol 369 MovieClip Frame 64
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (_parent._parent._parent.controller.CanVore()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("midgulp");
}
}
}
Symbol 369 MovieClip Frame 70
gotoAndPlay (1);
Symbol 369 MovieClip Frame 71
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 369 MovieClip Frame 80
gotoAndPlay (1);
Symbol 369 MovieClip Frame 84
anng.head._alpha = 0;
Instance of Symbol 336 MovieClip in Symbol 369 MovieClip Frame 84
onClipEvent (enterFrame) {
_parent.anng.head._alpha = 0;
}
Symbol 369 MovieClip Frame 89
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 369 MovieClip Frame 138
wiggle = 0;
Instance of Symbol 344 MovieClip "sbox" in Symbol 369 MovieClip Frame 140
onClipEvent (enterFrame) {
if ((_parent._parent._parent.player.in_movex != 0) || (_parent._parent._parent.player.in_movey != 0)) {
tvar = int(Math.random() * 2);
if (tvar == 0) {
_parent.gotoAndPlay("wiggle0");
} else if (tvar == 1) {
_parent.gotoAndPlay("wiggle1");
}
}
}
Symbol 369 MovieClip Frame 159
if (3 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 3;
gotoAndPlay (139);
} else {
gotoAndPlay (274);
}
Symbol 369 MovieClip Frame 164
wiggle++;
if (10 < wiggle) {
gotoAndPlay (198);
}
Symbol 369 MovieClip Frame 178
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (139);
} else {
gotoAndPlay (274);
}
Symbol 369 MovieClip Frame 179
wiggle++;
if (10 < wiggle) {
gotoAndPlay (198);
}
Symbol 369 MovieClip Frame 193
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (139);
} else {
gotoAndPlay (274);
}
Symbol 369 MovieClip Frame 208
s_vx = 4;
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 0;
s_atktype = 0;
Symbol 369 MovieClip Frame 218
s_vx = 4;
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = -_xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (60 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 369 MovieClip Frame 270
gotoAndPlay (84);
Symbol 369 MovieClip Frame 274
_parent._parent.player.hp = 0;
Symbol 369 MovieClip Frame 304
gotoAndPlay (1);
Symbol 369 MovieClip Frame 306
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 369 MovieClip Frame 310
gotoAndPlay (1);
Symbol 369 MovieClip Frame 311
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 369 MovieClip Frame 315
gotoAndPlay (1);
Symbol 369 MovieClip Frame 316
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 369 MovieClip Frame 320
gotoAndPlay (1);
Symbol 369 MovieClip Frame 321
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 369 MovieClip Frame 331
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 369 MovieClip Frame 336
gotoAndPlay (331);
Symbol 436 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 374 MovieClip in Symbol 436 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBody(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 436 MovieClip Frame 14
gotoAndPlay (1);
Symbol 436 MovieClip Frame 19
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 436 MovieClip Frame 39
gotoAndPlay (1);
Symbol 436 MovieClip Frame 40
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 436 MovieClip Frame 45
gotoAndPlay (1);
Symbol 436 MovieClip Frame 46
s_animbusy = 1;
Symbol 436 MovieClip Frame 50
gotoAndPlay (1);
Symbol 436 MovieClip Frame 51
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 388 MovieClip in Symbol 436 MovieClip Frame 54
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHead(this)) {
if (_parent._parent._parent.controller.CanVore()) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("eat");
}
}
}
Symbol 436 MovieClip Frame 59
gotoAndPlay (1);
Symbol 436 MovieClip Frame 60
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 436 MovieClip Frame 70
gotoAndPlay (1);
Symbol 436 MovieClip Frame 71
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 436 MovieClip Frame 81
gotoAndPlay (1);
Symbol 436 MovieClip Frame 84
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 436 MovieClip Frame 149
wiggle = 0;
Instance of Symbol 411 MovieClip in Symbol 436 MovieClip Frame 151
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wigglel");
} else {
_parent.gotoAndPlay("wiggler");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggler");
} else {
_parent.gotoAndPlay("wigglel");
}
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggled");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggleu");
}
}
Symbol 436 MovieClip Frame 171
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (150);
} else {
gotoAndPlay (225);
}
Symbol 436 MovieClip Frame 173
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
Symbol 436 MovieClip Frame 183
if (_parent._parent.player.hp < 1) {
gotoAndPlay (225);
} else if (wiggle < 10) {
gotoAndPlay (150);
} else {
gotoAndPlay (250);
}
Symbol 436 MovieClip Frame 186
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
Symbol 436 MovieClip Frame 196
if (_parent._parent.player.hp < 1) {
gotoAndPlay (225);
} else if (wiggle < 10) {
gotoAndPlay (150);
} else {
gotoAndPlay (250);
}
Symbol 436 MovieClip Frame 199
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
Symbol 436 MovieClip Frame 209
if (_parent._parent.player.hp < 1) {
gotoAndPlay (225);
} else if (wiggle < 10) {
gotoAndPlay (150);
} else {
gotoAndPlay (250);
}
Symbol 436 MovieClip Frame 211
wiggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
Symbol 436 MovieClip Frame 221
if (_parent._parent.player.hp < 1) {
gotoAndPlay (225);
} else if (wiggle < 10) {
gotoAndPlay (150);
} else {
gotoAndPlay (250);
}
Symbol 436 MovieClip Frame 225
_parent._parent.player.hp = 0;
Symbol 436 MovieClip Frame 245
gotoAndPlay (1);
Symbol 436 MovieClip Frame 275
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 436 MovieClip Frame 280
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = -_xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (64 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 436 MovieClip Frame 286
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 436 MovieClip Frame 289
gotoAndPlay (1);
Symbol 436 MovieClip Frame 290
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 436 MovieClip Frame 293
gotoAndPlay (1);
Symbol 436 MovieClip Frame 294
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 436 MovieClip Frame 297
gotoAndPlay (1);
Symbol 436 MovieClip Frame 298
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 436 MovieClip Frame 308
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 436 MovieClip Frame 313
gotoAndPlay (308);
Symbol 494 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 494 MovieClip Frame 30
gotoAndPlay (1);
Symbol 494 MovieClip Frame 31
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 494 MovieClip Frame 47
gotoAndPlay (1);
Symbol 494 MovieClip Frame 48
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 494 MovieClip Frame 57
gotoAndPlay (1);
Symbol 494 MovieClip Frame 58
s_animbusy = 1;
Symbol 494 MovieClip Frame 62
gotoAndPlay (1);
Symbol 494 MovieClip Frame 63
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 452 MovieClip in Symbol 494 MovieClip Frame 68
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsHead(this)) {
if (_parent._parent._parent.controller.CanVoreHigh()) {
if (_parent._parent.hp < _parent._parent.maxhp) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("headeat");
}
}
}
}
Symbol 494 MovieClip Frame 75
gotoAndPlay (1);
Symbol 494 MovieClip Frame 76
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 455 MovieClip in Symbol 494 MovieClip Frame 81
onClipEvent (enterFrame) {
if (_parent._parent._parent.controller.ObjHitsBodyCenter(this)) {
if (_parent._parent._parent.controller.CanVore()) {
if (_parent._parent.hp < _parent._parent.maxhp) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("holdandeat");
}
}
}
}
Symbol 494 MovieClip Frame 88
gotoAndPlay (1);
Symbol 494 MovieClip Frame 89
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 494 MovieClip Frame 100
gotoAndPlay (1);
Symbol 494 MovieClip Frame 105
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop("blank");
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 494 MovieClip Frame 120
gotoAndPlay (162);
Symbol 494 MovieClip Frame 122
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop("blank");
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 494 MovieClip Frame 162
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop("blank");
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 494 MovieClip Frame 199
struggle = 0;
Symbol 494 MovieClip Frame 200
if ((12 < struggle) || (_parent._parent.player.hp < 1)) {
gotoAndPlay (272);
}
Instance of Symbol 472 MovieClip in Symbol 494 MovieClip Frame 201
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("struggle3");
} else {
_parent.gotoAndPlay("struggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("struggle0");
} else {
_parent.gotoAndPlay("struggle3");
}
_parent.gotoAndPlay("struggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("struggle2");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("struggle1");
}
}
Symbol 494 MovieClip Frame 220
_parent._parent.player._alpha = 0;
_parent._parent.player._xscale = -_xscale;
_parent._parent.player._x = _parent._x + (50 * (_xscale / 100));
if (_parent.hp < _parent.maxhp) {
_parent.hp = _parent.hp + 5;
_parent._parent.player.hp = _parent._parent.player.hp - 5;
if (_parent.maxhp < _parent.hp) {
_parent.hp = _parent.maxhp;
}
gotoAndPlay (200);
} else {
gotoAndPlay (272);
}
Symbol 494 MovieClip Frame 235
struggle++;
if (_parent.hp < _parent.maxhp) {
_parent.hp = _parent.hp + 1;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (200);
} else {
gotoAndPlay (272);
}
Symbol 494 MovieClip Frame 246
struggle++;
if (_parent.hp < _parent.maxhp) {
_parent.hp = _parent.hp + 1;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (200);
} else {
gotoAndPlay (272);
}
Symbol 494 MovieClip Frame 257
struggle++;
if (_parent.hp < _parent.maxhp) {
_parent.hp = _parent.hp + 1;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (200);
} else {
gotoAndPlay (272);
}
Symbol 494 MovieClip Frame 268
struggle++;
if (_parent.hp < _parent.maxhp) {
_parent.hp = _parent.hp + 1;
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (200);
} else {
gotoAndPlay (272);
}
Symbol 494 MovieClip Frame 320
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player._x = _parent._x + (60 * ((-_xscale) / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_parent._parent.player.gotoAndPlay("idle");
Symbol 494 MovieClip Frame 330
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 494 MovieClip Frame 334
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 494 MovieClip Frame 338
gotoAndPlay (1);
Symbol 494 MovieClip Frame 339
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 494 MovieClip Frame 343
gotoAndPlay (1);
Symbol 494 MovieClip Frame 344
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 494 MovieClip Frame 348
gotoAndPlay (1);
Symbol 494 MovieClip Frame 349
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 494 MovieClip Frame 359
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 494 MovieClip Frame 364
gotoAndPlay (359);
Symbol 556 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 499 MovieClip in Symbol 556 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.head.hitTest(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 556 MovieClip Frame 19
gotoAndPlay (1);
Symbol 556 MovieClip Frame 20
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 556 MovieClip Frame 40
gotoAndPlay (1);
Symbol 556 MovieClip Frame 41
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 556 MovieClip Frame 50
gotoAndPlay (1);
Symbol 556 MovieClip Frame 51
s_animbusy = 1;
Symbol 556 MovieClip Frame 55
gotoAndPlay (1);
Symbol 556 MovieClip Frame 56
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 512 MovieClip in Symbol 556 MovieClip Frame 65
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent._parent.player.head)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("pswallow");
}
}
Symbol 556 MovieClip Frame 70
gotoAndPlay (1);
Symbol 556 MovieClip Frame 71
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 556 MovieClip Frame 76
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Instance of Symbol 516 MovieClip in Symbol 556 MovieClip Frame 82
onClipEvent (enterFrame) {
if (this.hitTest(_parent._parent._parent.player)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("swallow");
}
}
Symbol 556 MovieClip Frame 86
gotoAndPlay (1);
Symbol 556 MovieClip Frame 89
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 556 MovieClip Frame 92
gotoAndPlay (110);
Symbol 556 MovieClip Frame 102
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 556 MovieClip Frame 172
wiggle = 0;
Instance of Symbol 533 MovieClip in Symbol 556 MovieClip Frame 173
onClipEvent (enterFrame) {
_parent.in_movex = _parent._parent._parent.player.in_movex;
_parent.in_movey = _parent._parent._parent.player.in_movey;
_parent.in_action = 0;
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wigglel");
} else {
_parent.gotoAndPlay("wiggler");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggler");
} else {
_parent.gotoAndPlay("wigglel");
}
_parent.gotoAndPlay("wiggler");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggled");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggleu");
}
}
Symbol 556 MovieClip Frame 197
if (4 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 4;
gotoAndPlay (173);
} else {
play();
}
Symbol 556 MovieClip Frame 219
_parent._parent.player.hp = 0;
gotoAndPlay (1);
Symbol 556 MovieClip Frame 223
wiggle++;
if (10 < wiggle) {
gotoAndPlay (274);
}
Symbol 556 MovieClip Frame 233
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (173);
} else {
gotoAndPlay (197);
}
Symbol 556 MovieClip Frame 235
wiggle++;
if (10 < wiggle) {
gotoAndPlay (274);
}
Symbol 556 MovieClip Frame 245
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (173);
} else {
gotoAndPlay (197);
}
Symbol 556 MovieClip Frame 248
wiggle++;
if (10 < wiggle) {
gotoAndPlay (274);
}
Symbol 556 MovieClip Frame 258
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (173);
} else {
gotoAndPlay (197);
}
Symbol 556 MovieClip Frame 260
wiggle++;
if (10 < wiggle) {
gotoAndPlay (274);
}
Symbol 556 MovieClip Frame 270
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (173);
} else {
gotoAndPlay (197);
}
Symbol 556 MovieClip Frame 304
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (100 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 556 MovieClip Frame 312
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 556 MovieClip Frame 317
gotoAndPlay (1);
Symbol 556 MovieClip Frame 318
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 556 MovieClip Frame 323
gotoAndPlay (1);
Symbol 556 MovieClip Frame 324
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 556 MovieClip Frame 329
gotoAndPlay (1);
Symbol 556 MovieClip Frame 330
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 556 MovieClip Frame 340
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 556 MovieClip Frame 345
gotoAndPlay (340);
Symbol 644 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 644 MovieClip Frame 20
gotoAndPlay (1);
Symbol 644 MovieClip Frame 25
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 644 MovieClip Frame 41
gotoAndPlay (1);
Symbol 644 MovieClip Frame 45
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 644 MovieClip Frame 55
gotoAndPlay (1);
Symbol 644 MovieClip Frame 56
s_animbusy = 1;
Symbol 644 MovieClip Frame 60
gotoAndPlay (1);
Symbol 644 MovieClip Frame 65
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 644 MovieClip Frame 77
gotoAndPlay (1);
Symbol 644 MovieClip Frame 82
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 586 MovieClip "sbox" in Symbol 644 MovieClip Frame 89
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head.center)) {
if (_parent._parent._parent.player.hp < 16) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.head._visible = false;
_parent._parent._parent.player.head._alpha = 0;
_parent._parent._parent.player.hp = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("eathead");
} else {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("swallowhead");
}
}
}
}
Symbol 644 MovieClip Frame 94
gotoAndPlay (1);
Symbol 644 MovieClip Frame 101
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 644 MovieClip Frame 111
gotoAndPlay (1);
Symbol 644 MovieClip Frame 118
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 644 MovieClip Frame 159
gotoAndPlay (1);
Symbol 644 MovieClip Frame 162
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 644 MovieClip Frame 225
wiggle = 0;
gotoAndPlay (230);
Instance of Symbol 614 MovieClip in Symbol 644 MovieClip Frame 230
onClipEvent (enterFrame) {
_parent.in_movex = _parent._parent._parent.player.in_movex;
_parent.in_movey = _parent._parent._parent.player.in_movey;
_parent.in_action = 0;
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 644 MovieClip Frame 250
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (230);
} else {
gotoAndPlay (300);
}
Symbol 644 MovieClip Frame 253
wiggle++;
_parent._parent.player.hp--;
Symbol 644 MovieClip Frame 263
if (_parent._parent.player.hp < 1) {
gotoAndPlay (300);
} else if (wiggle < 10) {
gotoAndPlay (230);
} else {
gotoAndPlay (325);
}
Symbol 644 MovieClip Frame 264
wiggle++;
_parent._parent.player.hp--;
Symbol 644 MovieClip Frame 274
if (_parent._parent.player.hp < 1) {
gotoAndPlay (300);
} else if (wiggle < 10) {
gotoAndPlay (230);
} else {
gotoAndPlay (325);
}
Symbol 644 MovieClip Frame 275
wiggle++;
_parent._parent.player.hp--;
Symbol 644 MovieClip Frame 285
if (_parent._parent.player.hp < 1) {
gotoAndPlay (300);
} else if (wiggle < 10) {
gotoAndPlay (230);
} else {
gotoAndPlay (325);
}
Symbol 644 MovieClip Frame 286
wiggle++;
_parent._parent.player.hp--;
Symbol 644 MovieClip Frame 296
if (_parent._parent.player.hp < 1) {
gotoAndPlay (300);
} else if (wiggle < 10) {
gotoAndPlay (230);
} else {
gotoAndPlay (325);
}
Symbol 644 MovieClip Frame 300
_parent._parent.player.hp = 0;
Symbol 644 MovieClip Frame 320
gotoAndPlay (1);
Symbol 644 MovieClip Frame 350
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 644 MovieClip Frame 356
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (36 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 644 MovieClip Frame 370
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 644 MovieClip Frame 375
gotoAndPlay (1);
Symbol 644 MovieClip Frame 376
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 644 MovieClip Frame 381
gotoAndPlay (1);
Symbol 644 MovieClip Frame 382
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 644 MovieClip Frame 387
gotoAndPlay (1);
Symbol 644 MovieClip Frame 388
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 644 MovieClip Frame 398
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 644 MovieClip Frame 403
gotoAndPlay (398);
Symbol 710 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 710 MovieClip Frame 32
gotoAndPlay (1);
Symbol 710 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 710 MovieClip Frame 56
gotoAndPlay (1);
Symbol 710 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 710 MovieClip Frame 70
gotoAndPlay (1);
Symbol 710 MovieClip Frame 71
s_animbusy = 1;
Symbol 710 MovieClip Frame 75
gotoAndPlay (1);
Symbol 710 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 710 MovieClip Frame 90
gotoAndPlay (1);
Symbol 710 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 668 MovieClip "sbox" in Symbol 710 MovieClip Frame 103
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head.center)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eathead");
}
}
}
Symbol 710 MovieClip Frame 107
gotoAndPlay (1);
Symbol 710 MovieClip Frame 116
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 710 MovieClip Frame 126
gotoAndPlay (1);
Symbol 710 MovieClip Frame 131
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 710 MovieClip Frame 170
wiggle = 0;
gotoAndPlay (192);
Symbol 710 MovieClip Frame 177
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 710 MovieClip Frame 187
wiggle = 0;
gotoAndPlay (192);
Instance of Symbol 683 MovieClip in Symbol 710 MovieClip Frame 192
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 710 MovieClip Frame 212
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (192);
} else {
gotoAndPlay (268);
}
Symbol 710 MovieClip Frame 215
wiggle++;
_parent._parent.player.hp--;
Symbol 710 MovieClip Frame 225
if (_parent._parent.player.hp < 1) {
gotoAndPlay (268);
} else if (wiggle < 10) {
gotoAndPlay (192);
} else {
gotoAndPlay (281);
}
Symbol 710 MovieClip Frame 228
wiggle++;
_parent._parent.player.hp--;
Symbol 710 MovieClip Frame 238
if (_parent._parent.player.hp < 1) {
gotoAndPlay (268);
} else if (wiggle < 10) {
gotoAndPlay (192);
} else {
gotoAndPlay (281);
}
Symbol 710 MovieClip Frame 241
wiggle++;
_parent._parent.player.hp--;
Symbol 710 MovieClip Frame 251
if (_parent._parent.player.hp < 1) {
gotoAndPlay (268);
} else if (wiggle < 10) {
gotoAndPlay (192);
} else {
gotoAndPlay (281);
}
Symbol 710 MovieClip Frame 254
wiggle++;
_parent._parent.player.hp--;
Symbol 710 MovieClip Frame 264
if (_parent._parent.player.hp < 1) {
gotoAndPlay (268);
} else if (wiggle < 10) {
gotoAndPlay (192);
} else {
gotoAndPlay (281);
}
Symbol 710 MovieClip Frame 268
_parent._parent.player.hp = 0;
Symbol 710 MovieClip Frame 280
gotoAndPlay (1);
Symbol 710 MovieClip Frame 299
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 710 MovieClip Frame 303
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (80 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 710 MovieClip Frame 316
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 710 MovieClip Frame 321
gotoAndPlay (1);
Symbol 710 MovieClip Frame 322
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 710 MovieClip Frame 327
gotoAndPlay (1);
Symbol 710 MovieClip Frame 328
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 710 MovieClip Frame 333
gotoAndPlay (1);
Symbol 710 MovieClip Frame 334
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 710 MovieClip Frame 344
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 710 MovieClip Frame 349
gotoAndPlay (344);
Symbol 781 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 781 MovieClip Frame 32
gotoAndPlay (1);
Symbol 781 MovieClip Frame 37
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 781 MovieClip Frame 57
gotoAndPlay (1);
Symbol 781 MovieClip Frame 61
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 781 MovieClip Frame 71
gotoAndPlay (1);
Symbol 781 MovieClip Frame 72
s_animbusy = 1;
Symbol 781 MovieClip Frame 76
gotoAndPlay (1);
Symbol 781 MovieClip Frame 81
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 726 MovieClip "sbox" in Symbol 781 MovieClip Frame 84
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eatm");
}
}
}
Symbol 781 MovieClip Frame 89
gotoAndPlay (1);
Symbol 781 MovieClip Frame 94
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 731 MovieClip "sbox" in Symbol 781 MovieClip Frame 99
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eath");
}
}
}
Symbol 781 MovieClip Frame 106
gotoAndPlay (1);
Symbol 781 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 781 MovieClip Frame 125
gotoAndPlay (1);
Symbol 781 MovieClip Frame 130
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 781 MovieClip Frame 140
gotoAndPlay (160);
Symbol 781 MovieClip Frame 145
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 781 MovieClip Frame 194
wiggle = 0;
gotoAndPlay (224);
Symbol 781 MovieClip Frame 208
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 781 MovieClip Frame 218
wiggle = 0;
gotoAndPlay (224);
Instance of Symbol 752 MovieClip in Symbol 781 MovieClip Frame 224
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 781 MovieClip Frame 244
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (224);
} else {
gotoAndPlay (294);
}
Symbol 781 MovieClip Frame 247
wiggle++;
_parent._parent.player.hp--;
Symbol 781 MovieClip Frame 257
if (_parent._parent.player.hp < 1) {
gotoAndPlay (294);
} else if (wiggle < 10) {
gotoAndPlay (224);
} else {
gotoAndPlay (321);
}
Symbol 781 MovieClip Frame 258
wiggle++;
_parent._parent.player.hp--;
Symbol 781 MovieClip Frame 268
if (_parent._parent.player.hp < 1) {
gotoAndPlay (294);
} else if (wiggle < 10) {
gotoAndPlay (224);
} else {
gotoAndPlay (321);
}
Symbol 781 MovieClip Frame 269
wiggle++;
_parent._parent.player.hp--;
Symbol 781 MovieClip Frame 279
if (_parent._parent.player.hp < 1) {
gotoAndPlay (294);
} else if (wiggle < 10) {
gotoAndPlay (224);
} else {
gotoAndPlay (321);
}
Symbol 781 MovieClip Frame 280
wiggle++;
_parent._parent.player.hp--;
Symbol 781 MovieClip Frame 290
if (_parent._parent.player.hp < 1) {
gotoAndPlay (294);
} else if (wiggle < 10) {
gotoAndPlay (224);
} else {
gotoAndPlay (321);
}
Symbol 781 MovieClip Frame 294
_parent._parent.player.hp = 0;
Symbol 781 MovieClip Frame 316
gotoAndPlay (1);
Symbol 781 MovieClip Frame 344
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 781 MovieClip Frame 352
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (80 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 781 MovieClip Frame 370
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 781 MovieClip Frame 375
gotoAndPlay (1);
Symbol 781 MovieClip Frame 376
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 781 MovieClip Frame 381
gotoAndPlay (1);
Symbol 781 MovieClip Frame 382
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 781 MovieClip Frame 387
gotoAndPlay (1);
Symbol 781 MovieClip Frame 388
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 781 MovieClip Frame 398
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 781 MovieClip Frame 403
gotoAndPlay (398);
Symbol 874 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 874 MovieClip Frame 30
gotoAndPlay (1);
Symbol 874 MovieClip Frame 35
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 874 MovieClip Frame 51
gotoAndPlay (1);
Symbol 874 MovieClip Frame 56
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 799 MovieClip "sbox" in Symbol 874 MovieClip Frame 60
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("grabeat");
}
}
}
Symbol 874 MovieClip Frame 66
gotoAndPlay (1);
Symbol 874 MovieClip Frame 71
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 803 MovieClip "sbox" in Symbol 874 MovieClip Frame 75
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("headeat");
}
}
}
Symbol 874 MovieClip Frame 81
gotoAndPlay (1);
Symbol 874 MovieClip Frame 86
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 874 MovieClip Frame 96
gotoAndPlay (1);
Symbol 874 MovieClip Frame 100
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 874 MovieClip Frame 112
gotoAndPlay (141);
Symbol 874 MovieClip Frame 117
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 874 MovieClip Frame 192
wiggle = 0;
excretedir = 0;
gotoAndPlay (195);
Instance of Symbol 752 MovieClip in Symbol 874 MovieClip Frame 195
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 874 MovieClip Frame 217
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (195);
} else {
gotoAndPlay (280);
}
Symbol 874 MovieClip Frame 222
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 874 MovieClip Frame 232
if (_parent._parent.player.hp < 1) {
gotoAndPlay (280);
} else if (wiggle < 10) {
gotoAndPlay (195);
} else if (excretedir >= 0) {
gotoAndPlay (479);
} else {
gotoAndPlay (315);
}
Symbol 874 MovieClip Frame 236
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 874 MovieClip Frame 246
if (_parent._parent.player.hp < 1) {
gotoAndPlay (280);
} else if (wiggle < 10) {
gotoAndPlay (195);
} else if (excretedir >= 0) {
gotoAndPlay (479);
} else {
gotoAndPlay (315);
}
Symbol 874 MovieClip Frame 251
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 874 MovieClip Frame 261
if (_parent._parent.player.hp < 1) {
gotoAndPlay (280);
} else if (wiggle < 10) {
gotoAndPlay (195);
} else if (excretedir >= 0) {
gotoAndPlay (479);
} else {
gotoAndPlay (315);
}
Symbol 874 MovieClip Frame 266
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 874 MovieClip Frame 276
if (_parent._parent.player.hp < 1) {
gotoAndPlay (280);
} else if (wiggle < 10) {
gotoAndPlay (195);
} else if (excretedir >= 0) {
gotoAndPlay (479);
} else {
gotoAndPlay (315);
}
Symbol 874 MovieClip Frame 280
_parent._parent.player.hp = 0;
Symbol 874 MovieClip Frame 309
gotoAndPlay (1);
Symbol 874 MovieClip Frame 335
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay (340);
Instance of Symbol 845 MovieClip in Symbol 874 MovieClip Frame 340
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("struggle3");
} else {
_parent.gotoAndPlay("struggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("struggle0");
} else {
_parent.gotoAndPlay("struggle3");
}
_parent.gotoAndPlay("struggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("struggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("struggle2");
}
}
Symbol 874 MovieClip Frame 362
if (2 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 2;
gotoAndPlay (340);
} else {
gotoAndPlay (444);
}
Symbol 874 MovieClip Frame 364
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 874 MovieClip Frame 374
if (_parent._parent.player.hp < 1) {
gotoAndPlay (444);
} else if (struggle < 10) {
gotoAndPlay (340);
} else {
gotoAndPlay (424);
}
Symbol 874 MovieClip Frame 379
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 874 MovieClip Frame 389
if (_parent._parent.player.hp < 1) {
gotoAndPlay (444);
} else if (struggle < 10) {
gotoAndPlay (340);
} else {
gotoAndPlay (424);
}
Symbol 874 MovieClip Frame 394
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 874 MovieClip Frame 404
if (_parent._parent.player.hp < 1) {
gotoAndPlay (444);
} else if (struggle < 10) {
gotoAndPlay (340);
} else {
gotoAndPlay (424);
}
Symbol 874 MovieClip Frame 409
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 874 MovieClip Frame 419
if (_parent._parent.player.hp < 1) {
gotoAndPlay (444);
} else if (struggle < 10) {
gotoAndPlay (340);
} else {
gotoAndPlay (424);
}
Symbol 874 MovieClip Frame 439
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay (195);
Symbol 874 MovieClip Frame 466
gotoAndPlay (1);
Symbol 874 MovieClip Frame 489
s_vx = 4;
s_hit = 1;
s_animbusy = 0;
Symbol 874 MovieClip Frame 497
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (60 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 874 MovieClip Frame 510
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 874 MovieClip Frame 515
gotoAndPlay (1);
Symbol 874 MovieClip Frame 516
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 874 MovieClip Frame 521
gotoAndPlay (1);
Symbol 874 MovieClip Frame 522
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 874 MovieClip Frame 527
gotoAndPlay (1);
Symbol 874 MovieClip Frame 528
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 874 MovieClip Frame 538
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 874 MovieClip Frame 543
gotoAndPlay (538);
Symbol 957 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 957 MovieClip Frame 20
gotoAndPlay (1);
Symbol 957 MovieClip Frame 25
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 957 MovieClip Frame 45
gotoAndPlay (1);
Symbol 957 MovieClip Frame 49
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 957 MovieClip Frame 59
gotoAndPlay (1);
Symbol 957 MovieClip Frame 60
s_animbusy = 1;
Symbol 957 MovieClip Frame 64
gotoAndPlay (1);
Symbol 957 MovieClip Frame 69
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 894 MovieClip in Symbol 957 MovieClip Frame 73
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eatm");
}
}
}
Symbol 957 MovieClip Frame 79
gotoAndPlay (1);
Symbol 957 MovieClip Frame 84
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 957 MovieClip Frame 94
gotoAndPlay (1);
Symbol 957 MovieClip Frame 100
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 957 MovieClip Frame 110
gotoAndPlay (1);
Symbol 957 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 957 MovieClip Frame 183
wiggle = 0;
gotoAndPlay (265);
Symbol 957 MovieClip Frame 186
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 957 MovieClip Frame 235
wiggle = 0;
gotoAndPlay (265);
Symbol 957 MovieClip Frame 249
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 957 MovieClip Frame 259
wiggle = 0;
gotoAndPlay (265);
Instance of Symbol 683 MovieClip in Symbol 957 MovieClip Frame 265
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 957 MovieClip Frame 285
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (265);
} else {
gotoAndPlay (335);
}
Symbol 957 MovieClip Frame 288
wiggle++;
_parent._parent.player.hp--;
Symbol 957 MovieClip Frame 298
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 957 MovieClip Frame 299
wiggle++;
_parent._parent.player.hp--;
Symbol 957 MovieClip Frame 309
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 957 MovieClip Frame 310
wiggle++;
_parent._parent.player.hp--;
Symbol 957 MovieClip Frame 320
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 957 MovieClip Frame 321
wiggle++;
_parent._parent.player.hp--;
Symbol 957 MovieClip Frame 331
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 957 MovieClip Frame 335
_parent._parent.player.hp = 0;
Symbol 957 MovieClip Frame 357
gotoAndPlay (1);
Symbol 957 MovieClip Frame 385
_parent.hp = _parent.hp - 16;
if (_parent.hp < 0) {
_parent.hp = 1;
}
Symbol 957 MovieClip Frame 408
wiggle = 0;
if (_parent.hp == 1) {
} else {
gotoAndPlay (265);
}
Symbol 957 MovieClip Frame 424
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 957 MovieClip Frame 428
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (48 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
_parent.hp = 0;
Symbol 957 MovieClip Frame 434
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 957 MovieClip Frame 439
gotoAndPlay (1);
Symbol 957 MovieClip Frame 440
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 957 MovieClip Frame 445
gotoAndPlay (1);
Symbol 957 MovieClip Frame 446
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 957 MovieClip Frame 451
gotoAndPlay (1);
Symbol 957 MovieClip Frame 452
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 957 MovieClip Frame 462
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 957 MovieClip Frame 467
gotoAndPlay (462);
Symbol 1013 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1013 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 30
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 50
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 61
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 71
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 72
s_animbusy = 1;
Symbol 1013 MovieClip Frame 76
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 973 MovieClip in Symbol 1013 MovieClip Frame 84
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eatm");
}
}
}
Symbol 1013 MovieClip Frame 90
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 973 MovieClip in Symbol 1013 MovieClip Frame 99
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eatm");
}
}
}
Symbol 1013 MovieClip Frame 104
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 110
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Instance of Symbol 973 MovieClip in Symbol 1013 MovieClip Frame 114
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eatm");
}
}
}
Symbol 1013 MovieClip Frame 120
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 136
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1013 MovieClip Frame 175
wiggle = 0;
gotoAndPlay (259);
Symbol 1013 MovieClip Frame 180
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1013 MovieClip Frame 229
wiggle = 0;
gotoAndPlay (259);
Symbol 1013 MovieClip Frame 243
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1013 MovieClip Frame 253
wiggle = 0;
gotoAndPlay (259);
Instance of Symbol 752 MovieClip in Symbol 1013 MovieClip Frame 259
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 1013 MovieClip Frame 264
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 269
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 274
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 279
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp--;
gotoAndPlay (259);
} else {
gotoAndPlay (329);
}
Symbol 1013 MovieClip Frame 282
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 292
if (_parent._parent.player.hp < 1) {
gotoAndPlay (329);
} else if (wiggle < 10) {
gotoAndPlay (259);
} else {
gotoAndPlay (356);
}
Symbol 1013 MovieClip Frame 293
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 303
if (_parent._parent.player.hp < 1) {
gotoAndPlay (329);
} else if (wiggle < 10) {
gotoAndPlay (259);
} else {
gotoAndPlay (356);
}
Symbol 1013 MovieClip Frame 304
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 314
if (_parent._parent.player.hp < 1) {
gotoAndPlay (329);
} else if (wiggle < 10) {
gotoAndPlay (259);
} else {
gotoAndPlay (356);
}
Symbol 1013 MovieClip Frame 315
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 325
if (_parent._parent.player.hp < 1) {
gotoAndPlay (329);
} else if (wiggle < 10) {
gotoAndPlay (259);
} else {
gotoAndPlay (356);
}
Symbol 1013 MovieClip Frame 329
_parent._parent.player.hp = 0;
Symbol 1013 MovieClip Frame 351
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 376
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 382
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (70 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 390
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 395
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 396
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 401
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 402
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 407
gotoAndPlay (1);
Symbol 1013 MovieClip Frame 408
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1013 MovieClip Frame 418
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1013 MovieClip Frame 423
gotoAndPlay (418);
Symbol 1066 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1066 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 26
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1066 MovieClip Frame 36
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 37
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1066 MovieClip Frame 46
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 47
s_animbusy = 1;
Symbol 1066 MovieClip Frame 51
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 52
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 1024 MovieClip in Symbol 1066 MovieClip Frame 64
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("swallowh");
}
}
}
Symbol 1066 MovieClip Frame 72
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 76
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1066 MovieClip Frame 94
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 97
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1066 MovieClip Frame 107
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 112
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player._alpha = 0;
Symbol 1066 MovieClip Frame 159
wiggle = 0;
gotoAndPlay (164);
Instance of Symbol 752 MovieClip in Symbol 1066 MovieClip Frame 164
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 1066 MovieClip Frame 183
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (164);
} else {
gotoAndPlay (235);
}
Symbol 1066 MovieClip Frame 187
wiggle++;
_parent._parent.player.hp--;
Symbol 1066 MovieClip Frame 197
if (_parent._parent.player.hp < 1) {
gotoAndPlay (235);
} else if (wiggle < 10) {
gotoAndPlay (164);
} else {
gotoAndPlay (290);
}
Symbol 1066 MovieClip Frame 198
wiggle++;
_parent._parent.player.hp--;
Symbol 1066 MovieClip Frame 208
if (_parent._parent.player.hp < 1) {
gotoAndPlay (235);
} else if (wiggle < 10) {
gotoAndPlay (164);
} else {
gotoAndPlay (290);
}
Symbol 1066 MovieClip Frame 209
wiggle++;
_parent._parent.player.hp--;
Symbol 1066 MovieClip Frame 219
if (_parent._parent.player.hp < 1) {
gotoAndPlay (235);
} else if (wiggle < 10) {
gotoAndPlay (164);
} else {
gotoAndPlay (290);
}
Symbol 1066 MovieClip Frame 220
wiggle++;
_parent._parent.player.hp--;
Symbol 1066 MovieClip Frame 230
if (_parent._parent.player.hp < 1) {
gotoAndPlay (235);
} else if (wiggle < 10) {
gotoAndPlay (164);
} else {
gotoAndPlay (290);
}
Symbol 1066 MovieClip Frame 235
_parent._parent.player.hp = 0;
Symbol 1066 MovieClip Frame 285
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 305
s_vx = -4;
Symbol 1066 MovieClip Frame 310
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (40 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
Symbol 1066 MovieClip Frame 325
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 329
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1066 MovieClip Frame 333
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 334
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1066 MovieClip Frame 338
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 339
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1066 MovieClip Frame 343
gotoAndPlay (1);
Symbol 1066 MovieClip Frame 344
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1066 MovieClip Frame 354
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1066 MovieClip Frame 359
gotoAndPlay (354);
Symbol 1118 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1118 MovieClip Frame 15
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 26
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1118 MovieClip Frame 42
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 43
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1118 MovieClip Frame 52
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 53
s_animbusy = 1;
Symbol 1118 MovieClip Frame 56
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 57
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 1079 MovieClip in Symbol 1118 MovieClip Frame 57
onClipEvent (load) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent.gotoAndPlay("atkhs");
}
}
}
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent.gotoAndPlay("atkhs");
}
}
}
Symbol 1118 MovieClip Frame 67
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 70
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 1084 MovieClip in Symbol 1118 MovieClip Frame 74
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head.center)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("swallowh");
}
}
}
Symbol 1118 MovieClip Frame 80
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 85
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1118 MovieClip Frame 95
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 100
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1118 MovieClip Frame 110
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player._alpha = 0;
Symbol 1118 MovieClip Frame 160
wiggle = 0;
gotoAndPlay (181);
Symbol 1118 MovieClip Frame 201
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (181);
} else {
gotoAndPlay (254);
}
Symbol 1118 MovieClip Frame 206
wiggle++;
_parent._parent.player.hp--;
Symbol 1118 MovieClip Frame 216
if (_parent._parent.player.hp < 1) {
gotoAndPlay (254);
} else if (wiggle < 10) {
gotoAndPlay (181);
} else {
gotoAndPlay (266);
}
Symbol 1118 MovieClip Frame 217
wiggle++;
_parent._parent.player.hp--;
Symbol 1118 MovieClip Frame 227
if (_parent._parent.player.hp < 1) {
gotoAndPlay (254);
} else if (wiggle < 10) {
gotoAndPlay (181);
} else {
gotoAndPlay (266);
}
Symbol 1118 MovieClip Frame 228
wiggle++;
_parent._parent.player.hp--;
Symbol 1118 MovieClip Frame 238
if (_parent._parent.player.hp < 1) {
gotoAndPlay (254);
} else if (wiggle < 10) {
gotoAndPlay (181);
} else {
gotoAndPlay (266);
}
Symbol 1118 MovieClip Frame 239
wiggle++;
_parent._parent.player.hp--;
Symbol 1118 MovieClip Frame 249
if (_parent._parent.player.hp < 1) {
gotoAndPlay (254);
} else if (wiggle < 10) {
gotoAndPlay (181);
} else {
gotoAndPlay (266);
}
Symbol 1118 MovieClip Frame 254
_parent._parent.player.hp = 0;
Symbol 1118 MovieClip Frame 261
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 271
s_vx = -4;
Symbol 1118 MovieClip Frame 276
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (40 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
Symbol 1118 MovieClip Frame 281
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 286
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1118 MovieClip Frame 290
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 291
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1118 MovieClip Frame 295
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 296
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1118 MovieClip Frame 300
gotoAndPlay (1);
Symbol 1118 MovieClip Frame 301
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1118 MovieClip Frame 311
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1118 MovieClip Frame 316
gotoAndPlay (311);
Symbol 1193 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 1126 MovieClip "sbox" in Symbol 1193 MovieClip Frame 2
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
_parent.in_movex = 0;
_parent.in_movey = 0;
_parent.in_action = 0;
_parent.gotoAndPlay("slurp");
}
}
Symbol 1193 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 25
s_idle = 0;
s_moving = 2;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Instance of Symbol 1126 MovieClip "sbox" in Symbol 1193 MovieClip Frame 26
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
_parent.in_movex = 0;
_parent.in_movey = 0;
_parent.in_action = 0;
_parent.gotoAndPlay("slurp");
}
}
Symbol 1193 MovieClip Frame 45
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 50
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 1136 MovieClip in Symbol 1193 MovieClip Frame 52
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
trace(113 - (_parent._currentframe - 53));
_parent.gotoAndPlay(113 - (_parent._currentframe - 53));
}
}
Instance of Symbol 1136 MovieClip in Symbol 1193 MovieClip Frame 53
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
trace(113 - (_parent._currentframe - 53));
_parent.gotoAndPlay(113 - (_parent._currentframe - 53));
}
}
Symbol 1193 MovieClip Frame 62
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 65
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1193 MovieClip Frame 75
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1193 MovieClip Frame 90
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 96
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1193 MovieClip Frame 106
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 111
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
_parent._parent.player._xscale = -_xscale;
_parent._parent.player._x = _parent._x + (vt._x * (_xscale / 100));
Symbol 1193 MovieClip Frame 140
wiggle = 0;
gotoAndPlay (261);
Symbol 1193 MovieClip Frame 182
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1193 MovieClip Frame 231
wiggle = 0;
gotoAndPlay (261);
Symbol 1193 MovieClip Frame 245
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1193 MovieClip Frame 255
wiggle = 0;
gotoAndPlay (261);
Symbol 1193 MovieClip Frame 281
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (261);
} else {
gotoAndPlay (331);
}
Symbol 1193 MovieClip Frame 284
wiggle++;
_parent._parent.player.hp--;
Symbol 1193 MovieClip Frame 294
if (_parent._parent.player.hp < 1) {
gotoAndPlay (331);
} else if (wiggle < 10) {
gotoAndPlay (261);
} else {
gotoAndPlay (358);
}
Symbol 1193 MovieClip Frame 295
wiggle++;
_parent._parent.player.hp--;
Symbol 1193 MovieClip Frame 305
if (_parent._parent.player.hp < 1) {
gotoAndPlay (331);
} else if (wiggle < 10) {
gotoAndPlay (261);
} else {
gotoAndPlay (358);
}
Symbol 1193 MovieClip Frame 306
wiggle++;
_parent._parent.player.hp--;
Symbol 1193 MovieClip Frame 316
if (_parent._parent.player.hp < 1) {
gotoAndPlay (331);
} else if (wiggle < 10) {
gotoAndPlay (261);
} else {
gotoAndPlay (358);
}
Symbol 1193 MovieClip Frame 317
wiggle++;
_parent._parent.player.hp--;
Symbol 1193 MovieClip Frame 327
if (_parent._parent.player.hp < 1) {
gotoAndPlay (331);
} else if (wiggle < 10) {
gotoAndPlay (261);
} else {
gotoAndPlay (358);
}
Symbol 1193 MovieClip Frame 331
_parent._parent.player.hp = 0;
Symbol 1193 MovieClip Frame 353
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 381
_parent.hp = _parent.hp - 16;
if (_parent.hp < 0) {
_parent.hp = 1;
}
Symbol 1193 MovieClip Frame 404
wiggle = 0;
if (_parent.hp == 1) {
} else {
gotoAndPlay (261);
}
Symbol 1193 MovieClip Frame 420
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1193 MovieClip Frame 424
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (48 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
_parent.hp = 0;
Symbol 1193 MovieClip Frame 430
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1193 MovieClip Frame 435
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 436
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1193 MovieClip Frame 441
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 442
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1193 MovieClip Frame 447
gotoAndPlay (1);
Symbol 1193 MovieClip Frame 448
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1193 MovieClip Frame 458
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1193 MovieClip Frame 463
gotoAndPlay (458);
Symbol 1203 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1203 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 25
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1203 MovieClip Frame 45
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 49
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1203 MovieClip Frame 59
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 60
s_animbusy = 1;
Symbol 1203 MovieClip Frame 64
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 69
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1203 MovieClip Frame 79
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 84
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1203 MovieClip Frame 94
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 100
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1203 MovieClip Frame 110
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1203 MovieClip Frame 183
wiggle = 0;
gotoAndPlay (265);
Symbol 1203 MovieClip Frame 186
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1203 MovieClip Frame 235
wiggle = 0;
gotoAndPlay (265);
Symbol 1203 MovieClip Frame 249
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1203 MovieClip Frame 259
wiggle = 0;
gotoAndPlay (265);
Symbol 1203 MovieClip Frame 285
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (265);
} else {
gotoAndPlay (335);
}
Symbol 1203 MovieClip Frame 288
wiggle++;
_parent._parent.player.hp--;
Symbol 1203 MovieClip Frame 298
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 1203 MovieClip Frame 299
wiggle++;
_parent._parent.player.hp--;
Symbol 1203 MovieClip Frame 309
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 1203 MovieClip Frame 310
wiggle++;
_parent._parent.player.hp--;
Symbol 1203 MovieClip Frame 320
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 1203 MovieClip Frame 321
wiggle++;
_parent._parent.player.hp--;
Symbol 1203 MovieClip Frame 331
if (_parent._parent.player.hp < 1) {
gotoAndPlay (335);
} else if (wiggle < 10) {
gotoAndPlay (265);
} else {
gotoAndPlay (362);
}
Symbol 1203 MovieClip Frame 335
_parent._parent.player.hp = 0;
Symbol 1203 MovieClip Frame 357
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 385
_parent.hp = _parent.hp - 16;
if (_parent.hp < 0) {
_parent.hp = 1;
}
Symbol 1203 MovieClip Frame 408
wiggle = 0;
if (_parent.hp == 1) {
} else {
gotoAndPlay (265);
}
Symbol 1203 MovieClip Frame 424
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1203 MovieClip Frame 428
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (48 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
_parent.hp = 0;
Symbol 1203 MovieClip Frame 434
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1203 MovieClip Frame 439
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 440
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1203 MovieClip Frame 445
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 446
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1203 MovieClip Frame 451
gotoAndPlay (1);
Symbol 1203 MovieClip Frame 452
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1203 MovieClip Frame 462
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1203 MovieClip Frame 467
gotoAndPlay (462);
Symbol 1231 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1231 MovieClip Frame 30
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 35
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1231 MovieClip Frame 55
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 59
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1231 MovieClip Frame 69
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 70
s_animbusy = 1;
Symbol 1231 MovieClip Frame 74
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 78
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1231 MovieClip Frame 88
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 94
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1231 MovieClip Frame 104
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 109
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1231 MovieClip Frame 119
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 124
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1231 MovieClip Frame 134
gotoAndPlay (154);
Symbol 1231 MovieClip Frame 139
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1231 MovieClip Frame 188
wiggle = 0;
gotoAndPlay (218);
Symbol 1231 MovieClip Frame 202
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1231 MovieClip Frame 212
wiggle = 0;
gotoAndPlay (218);
Symbol 1231 MovieClip Frame 238
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (218);
} else {
gotoAndPlay (288);
}
Symbol 1231 MovieClip Frame 241
wiggle++;
_parent._parent.player.hp--;
Symbol 1231 MovieClip Frame 251
if (_parent._parent.player.hp < 1) {
gotoAndPlay (288);
} else if (wiggle < 10) {
gotoAndPlay (218);
} else {
gotoAndPlay (315);
}
Symbol 1231 MovieClip Frame 252
wiggle++;
_parent._parent.player.hp--;
Symbol 1231 MovieClip Frame 262
if (_parent._parent.player.hp < 1) {
gotoAndPlay (288);
} else if (wiggle < 10) {
gotoAndPlay (218);
} else {
gotoAndPlay (315);
}
Symbol 1231 MovieClip Frame 263
wiggle++;
_parent._parent.player.hp--;
Symbol 1231 MovieClip Frame 273
if (_parent._parent.player.hp < 1) {
gotoAndPlay (288);
} else if (wiggle < 10) {
gotoAndPlay (218);
} else {
gotoAndPlay (315);
}
Symbol 1231 MovieClip Frame 274
wiggle++;
_parent._parent.player.hp--;
Symbol 1231 MovieClip Frame 284
if (_parent._parent.player.hp < 1) {
gotoAndPlay (288);
} else if (wiggle < 10) {
gotoAndPlay (218);
} else {
gotoAndPlay (315);
}
Symbol 1231 MovieClip Frame 288
_parent._parent.player.hp = 0;
Symbol 1231 MovieClip Frame 310
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 338
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1231 MovieClip Frame 346
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (80 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 364
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1231 MovieClip Frame 369
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 370
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1231 MovieClip Frame 375
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 376
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1231 MovieClip Frame 381
gotoAndPlay (1);
Symbol 1231 MovieClip Frame 382
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1231 MovieClip Frame 392
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1231 MovieClip Frame 397
gotoAndPlay (392);
Symbol 1290 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1290 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 26
s_idle = 0;
s_moving = 6;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1290 MovieClip Frame 46
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 51
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1290 MovieClip Frame 60
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 61
s_animbusy = 1;
Symbol 1290 MovieClip Frame 65
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 70
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 1251 MovieClip in Symbol 1290 MovieClip Frame 74
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.centerbox)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("grabeat");
}
}
}
Symbol 1290 MovieClip Frame 80
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 85
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 1255 MovieClip in Symbol 1290 MovieClip Frame 89
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head)) {
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent._parent._parent.player.stop();
_parent._parent._parent.player._alpha = 0;
_parent.gotoAndPlay("eathead");
}
}
}
Symbol 1290 MovieClip Frame 95
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 100
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1290 MovieClip Frame 110
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1290 MovieClip Frame 130
gotoAndPlay (167);
Symbol 1290 MovieClip Frame 136
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1290 MovieClip Frame 160
gotoAndPlay (167);
Symbol 1290 MovieClip Frame 167
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1290 MovieClip Frame 205
wiggle = 0;
gotoAndPlay (248);
Symbol 1290 MovieClip Frame 211
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1290 MovieClip Frame 247
wiggle = 0;
gotoAndPlay (248);
Instance of Symbol 283 MovieClip in Symbol 1290 MovieClip Frame 248
onClipEvent (enterFrame) {
_parent.in_movex = _parent._parent._parent.player.in_movex;
_parent.in_movey = _parent._parent._parent.player.in_movey;
_parent.in_action = 0;
if (_parent._parent._parent.player.in_movex < 0) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
_parent.gotoAndPlay("wiggle0");
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 1290 MovieClip Frame 272
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (248);
} else {
gotoAndPlay (320);
}
Symbol 1290 MovieClip Frame 275
wiggle++;
_parent._parent.player.hp--;
Symbol 1290 MovieClip Frame 285
if (_parent._parent.player.hp < 1) {
gotoAndPlay (320);
} else if (wiggle < 10) {
gotoAndPlay (248);
} else {
gotoAndPlay (351);
}
Symbol 1290 MovieClip Frame 286
wiggle++;
_parent._parent.player.hp--;
Symbol 1290 MovieClip Frame 296
if (_parent._parent.player.hp < 1) {
gotoAndPlay (320);
} else if (wiggle < 10) {
gotoAndPlay (248);
} else {
gotoAndPlay (351);
}
Symbol 1290 MovieClip Frame 297
wiggle++;
_parent._parent.player.hp--;
Symbol 1290 MovieClip Frame 307
if (_parent._parent.player.hp < 1) {
gotoAndPlay (320);
} else if (wiggle < 10) {
gotoAndPlay (248);
} else {
gotoAndPlay (351);
}
Symbol 1290 MovieClip Frame 308
wiggle++;
_parent._parent.player.hp--;
Symbol 1290 MovieClip Frame 318
if (_parent._parent.player.hp < 1) {
gotoAndPlay (320);
} else if (wiggle < 10) {
gotoAndPlay (248);
} else {
gotoAndPlay (351);
}
Symbol 1290 MovieClip Frame 320
_parent._parent.player.hp = 0;
Symbol 1290 MovieClip Frame 345
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 375
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1290 MovieClip Frame 380
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (100 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 390
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1290 MovieClip Frame 392
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 393
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1290 MovieClip Frame 395
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 396
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1290 MovieClip Frame 398
gotoAndPlay (1);
Symbol 1290 MovieClip Frame 399
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1290 MovieClip Frame 409
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1290 MovieClip Frame 414
gotoAndPlay (409);
Symbol 1364 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Instance of Symbol 1292 MovieClip "sbox" in Symbol 1364 MovieClip Frame 1
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
_parent.in_movex = 0;
_parent.in_movey = 1;
_parent.in_action = 1;
}
}
Symbol 1364 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 25
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1364 MovieClip Frame 45
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 46
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1364 MovieClip Frame 55
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 56
s_animbusy = 1;
Symbol 1364 MovieClip Frame 60
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 61
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 1303 MovieClip "sbox" in Symbol 1364 MovieClip Frame 68
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.cbox.hitTest(this)) {
if (this.hitTest(_parent._parent._parent.player.head.center)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.head._visible = false;
_parent._parent._parent.player.head._alpha = 0;
_parent._parent._parent.player.hp = 0;
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 0;
_parent.gotoAndPlay("eathead");
}
}
}
Symbol 1364 MovieClip Frame 87
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 88
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 1312 MovieClip "sbox" in Symbol 1364 MovieClip Frame 96
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.centerbox.hitTest(this)) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player.s_animbusy = 1;
_parent._parent._parent.player.s_hit = 1;
_parent.gotoAndPlay("preswallow");
}
}
Symbol 1364 MovieClip Frame 105
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 106
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1364 MovieClip Frame 117
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 119
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1364 MovieClip Frame 123
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 124
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 1364 MovieClip Frame 128
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 129
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 1;
Symbol 1364 MovieClip Frame 133
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 183
gotoAndPlay (212);
Symbol 1364 MovieClip Frame 201
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Instance of Symbol 123 MovieClip in Symbol 1364 MovieClip Frame 201
onClipEvent (enterFrame) {
_parent._parent._parent.player.stop();
_parent._parent._parent.player._x = _parent._parent._x + (35.4 * (_parent._xscale / 100));
}
Symbol 1364 MovieClip Frame 209
gotoAndPlay (229);
Symbol 1364 MovieClip Frame 212
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 1364 MovieClip Frame 217
_parent._parent.player._alpha = 0;
jen.head._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 1364 MovieClip Frame 229
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
jen.head._alpha = 0;
_parent._parent.player._x = _parent._x + (35.4 * (_xscale / 100));
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
Symbol 1364 MovieClip Frame 312
wiggle = 0;
Instance of Symbol 1341 MovieClip "sbox" in Symbol 1364 MovieClip Frame 313
onClipEvent (enterFrame) {
if (_parent._parent._parent.player.in_movex < 0) {
_parent.wiggle--;
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle3");
} else {
_parent.gotoAndPlay("wiggle0");
}
} else if (0 < _parent._parent._parent.player.in_movex) {
_parent.wiggle--;
if (0 < _parent._xscale) {
_parent.gotoAndPlay("wiggle0");
} else {
_parent.gotoAndPlay("wiggle3");
}
} else if (_parent._parent._parent.player.in_movey < 0) {
_parent.gotoAndPlay("wiggle1");
} else if (0 < _parent._parent._parent.player.in_movey) {
_parent.wiggle--;
_parent.gotoAndPlay("wiggle2");
}
}
Symbol 1364 MovieClip Frame 342
if (3 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 3;
gotoAndPlay (313);
} else {
gotoAndPlay (414);
}
Symbol 1364 MovieClip Frame 355
if (wiggle < 0) {
_parent._parent.player.hp = _parent._parent.player.hp + wiggle;
}
if (_parent._parent.player.hp < 3) {
gotoAndPlay (414);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (394);
}
Symbol 1364 MovieClip Frame 358
wiggle++;
vtempvar = Math.Random() * 3;
if (vtempvar < 1) {
gotoAndPlay (345);
} else if ((vtempvar >= 1) && (vtempvar < 2)) {
gotoAndPlay (371);
} else {
gotoAndPlay (383);
}
Symbol 1364 MovieClip Frame 368
if (_parent._parent.player.hp < 3) {
gotoAndPlay (414);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (394);
}
Symbol 1364 MovieClip Frame 380
if (wiggle < 0) {
_parent._parent.player.hp = _parent._parent.player.hp + wiggle;
}
if (_parent._parent.player.hp < 3) {
gotoAndPlay (414);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (394);
}
Symbol 1364 MovieClip Frame 392
if (wiggle < 0) {
_parent._parent.player.hp = _parent._parent.player.hp + wiggle;
}
if (_parent._parent.player.hp < 3) {
gotoAndPlay (414);
} else if (wiggle < 10) {
gotoAndPlay (313);
} else {
gotoAndPlay (394);
}
Symbol 1364 MovieClip Frame 400
s_vx = -4;
Symbol 1364 MovieClip Frame 410
s_vx = -4;
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (40 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 414
_parent._parent.player.hp = 0;
Symbol 1364 MovieClip Frame 434
gotoAndPlay (1);
Symbol 1364 MovieClip Frame 438
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1364 MovieClip Frame 455
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1364 MovieClip Frame 460
gotoAndPlay (455);
Symbol 1375 MovieClip Frame 1
s_atktype = 0;
s_animbusy = 0;
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
in_movex = 0;
in_movey = 0;
in_action = 0;
s_vx = 0;
Symbol 1375 MovieClip Frame 20
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 26
s_idle = 0;
s_moving = 6;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1375 MovieClip Frame 36
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 37
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1375 MovieClip Frame 46
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 47
s_animbusy = 1;
Symbol 1375 MovieClip Frame 51
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 55
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1375 MovieClip Frame 65
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 70
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1375 MovieClip Frame 89
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 94
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1375 MovieClip Frame 108
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 115
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1375 MovieClip Frame 125
gotoAndPlay (148);
Symbol 1375 MovieClip Frame 131
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1375 MovieClip Frame 136
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
_parent._parent.player._alpha = 0;
_parent._parent.player.gotoAndStop(2);
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1375 MovieClip Frame 148
_parent._parent.player._alpha = 0;
_parent._parent.player.stop();
_parent._parent.player.s_animbusy = 1;
_parent._parent.player.s_hit = 1;
_parent._parent.player.s_vx = 0;
_parent._parent.player.in_movex = 0;
_parent._parent.player.in_movey = 0;
_parent._parent.player.in_action = 0;
Symbol 1375 MovieClip Frame 184
wiggle = 0;
gotoAndPlay (185);
Symbol 1375 MovieClip Frame 208
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay (185);
} else {
gotoAndPlay (256);
}
Symbol 1375 MovieClip Frame 211
wiggle++;
_parent._parent.player.hp--;
Symbol 1375 MovieClip Frame 221
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 1375 MovieClip Frame 222
wiggle++;
_parent._parent.player.hp--;
Symbol 1375 MovieClip Frame 232
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 1375 MovieClip Frame 233
wiggle++;
_parent._parent.player.hp--;
Symbol 1375 MovieClip Frame 243
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 1375 MovieClip Frame 244
wiggle++;
_parent._parent.player.hp--;
Symbol 1375 MovieClip Frame 254
if (_parent._parent.player.hp < 1) {
gotoAndPlay (256);
} else if (wiggle < 10) {
gotoAndPlay (185);
} else {
gotoAndPlay (281);
}
Symbol 1375 MovieClip Frame 256
_parent._parent.player.hp = 0;
Symbol 1375 MovieClip Frame 275
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 312
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1375 MovieClip Frame 321
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x - (100 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 326
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1375 MovieClip Frame 328
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 329
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1375 MovieClip Frame 331
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 332
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1375 MovieClip Frame 334
gotoAndPlay (1);
Symbol 1375 MovieClip Frame 335
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1375 MovieClip Frame 345
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1375 MovieClip Frame 350
gotoAndPlay (345);
Symbol 1376 MovieClip Frame 2
this.m_name = "Blocker";
this.m_status = "Neutral Combatant";
this.hp = 200;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = -8;
this.mdef = -32;
this.ldef = -16;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 3
this.m_name = "Saurosaur";
this.m_status = "Dangerous Reptilian";
this.hp = 127;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 0;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 4
this.m_name = "Green Snake";
this.m_status = "Voracious Reptile";
this.hp = 16;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 1;
this.latk = 1;
this.hdef = 4;
this.mdef = 4;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 5
this.m_name = "Dark Dragon";
this.m_status = "Large Dragon";
this.hp = 512;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 12;
this.matk = 6;
this.latk = 4;
this.hdef = 4;
this.mdef = 4;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 6
this.m_name = "Broken Lizard";
this.m_status = "Dangerous Reptilian";
this.hp = 24;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 1;
this.latk = 2;
this.hdef = 5;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 7
this.m_name = "Velo-Raptor";
this.m_status = "Dinosaur";
this.hp = 80;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 6;
this.latk = 1;
this.hdef = 2;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 8
this.m_name = "Inflatable Godzilla";
this.m_status = "Large Monster";
this.maxhp = 220;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = 0;
this.mdef = 4;
this.ldef = 8;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 9
this.m_name = "Crocagator";
this.m_status = "Large Reptile";
this.maxhp = 90;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 4;
this.latk = 4;
this.hdef = 12;
this.mdef = 8;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 10
this.m_name = "Medium Dragon";
this.m_status = "Dragon";
this.maxhp = 192;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 3;
this.matk = 2;
this.latk = 1;
this.hdef = 16;
this.mdef = 2;
this.ldef = 8;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 11
this.m_name = "Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 250;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 4;
this.hdef = 2;
this.mdef = 8;
this.ldef = 16;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 12
this.m_name = "Large Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 830;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 2;
this.mdef = 4;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 13
this.m_name = "Anthro Komodo Dragon";
this.m_status = "Reptile";
this.maxhp = 160;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 1;
this.mdef = 0;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 14
this.m_name = "Anthro Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 60;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 15
this.m_name = "Tyannosaurus Rex";
this.m_status = "Dinosaur";
this.maxhp = 800;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 16
this.m_name = "Large Snake";
this.m_status = "Voracious Reptile";
this.hp = 48;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 17
this.m_name = "Worm-Head Alien";
this.m_status = "Alien";
this.hp = 23;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 2;
this.latk = 2;
this.hdef = 1;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 18
this.m_name = "Chamealeon";
this.m_status = "Hungry Lizard";
this.hp = 90;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 0;
this.matk = 0;
this.latk = 0;
this.hdef = 5000;
this.mdef = 1;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 19
this.m_name = "Athelind Stormdancer";
this.m_status = "Legendary Dragon";
this.hp = 6800;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = -10;
this.mdef = -5;
this.ldef = -5;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 20
this.m_name = "Thirsha";
this.m_status = "Legendary Dragon";
this.hp = 2500;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 4;
this.latk = 3;
this.hdef = 10;
this.mdef = 10;
this.ldef = 10;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 21
this.m_name = "Fang";
this.m_status = "Voracious Dragon";
this.hp = 600;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 2;
this.latk = 1;
this.hdef = 2;
this.mdef = 0;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 22
this.m_name = "Velvet Saurosaur";
this.m_status = "Voraphilic Reptilian";
this.hp = 255;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 0;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1376 MovieClip Frame 23
this.m_name = "Hydra I";
this.m_status = "Large Dragon";
this.hp = 790;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 6;
this.latk = 2;
this.hdef = 2;
this.mdef = 4;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Instance of Symbol 1377 MovieClip "player" in Symbol 1378 MovieClip Frame 1
onClipEvent (load) {
in_movex = 0;
in_movey = 0;
in_action = 0;
hp = 100;
}
Symbol 1379 MovieClip Frame 2
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
s_vx = 0;
Symbol 1379 MovieClip Frame 10
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 11
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1379 MovieClip Frame 21
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 22
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1379 MovieClip Frame 31
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 32
s_animbusy = 1;
Symbol 1379 MovieClip Frame 36
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 37
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1379 MovieClip Frame 49
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 50
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1379 MovieClip Frame 63
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 64
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1379 MovieClip Frame 76
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 77
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 6;
Symbol 1379 MovieClip Frame 81
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 82
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1379 MovieClip Frame 86
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 87
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 1379 MovieClip Frame 91
gotoAndPlay (2);
Symbol 1379 MovieClip Frame 92
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1379 MovieClip Frame 105
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
hp = 0;
Symbol 1379 MovieClip Frame 110
stop();
Symbol 1379 MovieClip Frame 116
gotoAndStop (112);
Symbol 1380 MovieClip Frame 2
this.m_name = "Blocker";
this.m_status = "Neutral Combatant";
this.hp = 200;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = -8;
this.mdef = -32;
this.ldef = -16;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 3
this.m_name = "Saurosaur";
this.m_status = "Dangerous Reptilian";
this.hp = 127;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 0;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 4
this.m_name = "Green Snake";
this.m_status = "Voracious Reptile";
this.hp = 16;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 1;
this.latk = 1;
this.hdef = 4;
this.mdef = 4;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 5
this.m_name = "Dark Dragon";
this.m_status = "Large Dragon";
this.hp = 512;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 12;
this.matk = 6;
this.latk = 4;
this.hdef = 4;
this.mdef = 4;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 6
this.m_name = "Broken Lizard";
this.m_status = "Dangerous Reptilian";
this.hp = 24;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 1;
this.latk = 2;
this.hdef = 5;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 7
this.m_name = "Velo-Raptor";
this.m_status = "Dinosaur";
this.hp = 80;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 6;
this.latk = 1;
this.hdef = 2;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 8
this.m_name = "Inflatable Godzilla";
this.m_status = "Large Monster";
this.maxhp = 220;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = 0;
this.mdef = 4;
this.ldef = 8;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 9
this.m_name = "Crocagator";
this.m_status = "Large Reptile";
this.maxhp = 90;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 4;
this.latk = 4;
this.hdef = 12;
this.mdef = 8;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 10
this.m_name = "Medium Dragon";
this.m_status = "Dragon";
this.maxhp = 192;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 3;
this.matk = 2;
this.latk = 1;
this.hdef = 16;
this.mdef = 2;
this.ldef = 8;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 11
this.m_name = "Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 250;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 4;
this.hdef = 2;
this.mdef = 8;
this.ldef = 16;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 12
this.m_name = "Large Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 830;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 2;
this.mdef = 4;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 13
this.m_name = "Anthro Komodo Dragon";
this.m_status = "Reptile";
this.maxhp = 160;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 1;
this.mdef = 0;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 14
this.m_name = "Anthro Chinese Dragon";
this.m_status = "Dragon";
this.maxhp = 60;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 15
this.m_name = "Tyannosaurus Rex";
this.m_status = "Dinosaur";
this.maxhp = 800;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 16
this.m_name = "Large Snake";
this.m_status = "Voracious Reptile";
this.hp = 48;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 1;
this.hdef = 0;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 17
this.m_name = "Worm-Head Alien";
this.m_status = "Alien";
this.hp = 23;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 2;
this.latk = 2;
this.hdef = 1;
this.mdef = 0;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 18
this.m_name = "Chamealeon";
this.m_status = "Hungry Lizard";
this.hp = 90;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 0;
this.matk = 0;
this.latk = 0;
this.hdef = 5000;
this.mdef = 1;
this.ldef = 1;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 19
this.m_name = "Athelind Stormdancer";
this.m_status = "Legendary Dragon";
this.hp = 6800;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 2;
this.latk = 1;
this.hdef = -10;
this.mdef = -5;
this.ldef = -5;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 20
this.m_name = "Thirsha";
this.m_status = "Legendary Dragon";
this.hp = 2500;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 4;
this.latk = 3;
this.hdef = 10;
this.mdef = 10;
this.ldef = 10;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 21
this.m_name = "Fang";
this.m_status = "Voracious Dragon";
this.hp = 600;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 2;
this.matk = 2;
this.latk = 1;
this.hdef = 2;
this.mdef = 0;
this.ldef = 2;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 22
this.m_name = "Velvet Saurosaur";
this.m_status = "Voraphilic Reptilian";
this.hp = 255;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 2;
this.latk = 2;
this.hdef = 0;
this.mdef = 1;
this.ldef = 4;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();
Symbol 1380 MovieClip Frame 23
this.m_name = "Hydra I";
this.m_status = "Large Dragon";
this.hp = 790;
this.maxhp = this.hp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 4;
this.matk = 6;
this.latk = 2;
this.hdef = 2;
this.mdef = 4;
this.ldef = 0;
enemy.s_atktype = 0;
enemy.s_animbusy = 0;
enemy.s_idle = 1;
enemy.s_moving = 0;
enemy.s_attacking = 0;
enemy.s_hit = 0;
enemy.s_vx = 0;
stop();