Instance of Symbol 18 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 1111 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(32))) {
GLOBAL_PLAYER.in_action = true;
} else {
GLOBAL_PLAYER.in_action = false;
}
if (Key.isDown(100) || (Key.isDown(37))) {
GLOBAL_PLAYER.in_movex = -1;
} else if (Key.isDown(102) || (Key.isDown(39))) {
GLOBAL_PLAYER.in_movex = 1;
} else {
GLOBAL_PLAYER.in_movex = 0;
}
if (Key.isDown(104) || (Key.isDown(38))) {
GLOBAL_PLAYER.in_movey = 1;
} else if (Key.isDown(98) || (Key.isDown(40))) {
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(45)) {
GLOBAL_PAUSEHFR = false;
if (!GLOBAL_PAUSECTR) {
if (!GLOBAL_PAUSE) {
pauseall();
} else {
unpauseall();
}
}
GLOBAL_PAUSECTR = true;
} else {
GLOBAL_PAUSECTR = false;
}
if (Key.isDown(35)) {
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(36)) {
GLOBAL_PAUSEHFR = true;
}
if (GLOBAL_PAUSEHFR == true) {
if (!GLOBAL_PAUSE) {
pauseall();
} else {
unpauseall();
}
}
}
Frame 6
stop();
Symbol 22 MovieClip Frame 1
function camControl() {
parentColor.setTransform(camColor.getTransform());
var scaleX = (sX / this._width);
var scaleY = (sY / this._height);
_parent._x = cX - (this._x * scaleX);
_parent._y = cY - (this._y * scaleY);
_parent._xscale = 100 * scaleX;
_parent._yscale = 100 * scaleY;
}
function resetStage() {
var resetTrans = {ra:100, rb:0, ga:100, gb:0, ba:100, bb:0, aa:100, ab:0};
parentColor.setTransform(resetTrans);
_parent._xscale = 100;
_parent._yscale = 100;
_parent._x = 0;
_parent._y = 0;
}
parentColor.setTransform(camColor.getTransform());
this._visible = false;
var oldMode = Stage.scaleMode;
Stage.scaleMode = "exactFit";
var cX = (Stage.width / 2);
var cY = (Stage.height / 2);
var sX = Stage.width;
var sY = Stage.height;
Stage.scaleMode = oldMode;
var camColor = new Color(this);
var parentColor = new Color(_parent);
this.onEnterFrame = camControl;
camControl();
this.onUnload = resetStage;
Symbol 33 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 33 MovieClip Frame 2
stop();
Symbol 39 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 40 Button
on (press) {
with (controller) {
pickEnemy(0);
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 78 MovieClip Frame 2
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
s_vx = 0;
Symbol 78 MovieClip Frame 10
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 11
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 78 MovieClip Frame 21
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 22
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 78 MovieClip Frame 31
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 32
s_animbusy = 1;
Symbol 78 MovieClip Frame 36
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 37
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 78 MovieClip Frame 49
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 50
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 78 MovieClip Frame 63
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 64
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 78 MovieClip Frame 76
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 77
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 6;
Symbol 78 MovieClip Frame 81
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 82
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 78 MovieClip Frame 86
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 87
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 78 MovieClip Frame 91
gotoAndPlay ("idle");
Symbol 78 MovieClip Frame 92
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 78 MovieClip Frame 105
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
hp = 0;
Symbol 78 MovieClip Frame 110
stop();
Symbol 78 MovieClip Frame 116
gotoAndStop ("blank");
Symbol 199 MovieClip Frame 21
stop();
Symbol 359 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 359 MovieClip Frame 32
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 359 MovieClip Frame 56
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 359 MovieClip Frame 70
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 71
s_animbusy = 1;
Symbol 359 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 359 MovieClip Frame 90
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 142 MovieClip "sbox" in Symbol 359 MovieClip Frame 112
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("eathead");
}
}
}
Symbol 359 MovieClip Frame 132
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 141
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Instance of Symbol 142 MovieClip "sbox" in Symbol 359 MovieClip Frame 157
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("footeat");
}
}
}
Symbol 359 MovieClip Frame 176
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 181
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 359 MovieClip Frame 194
gotoAndPlay ("swallow");
Symbol 359 MovieClip Frame 249
wiggle = 0;
gotoAndPlay ("swallow");
Symbol 359 MovieClip Frame 332
wiggle = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 359 MovieClip Frame 337
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 359 MovieClip Frame 357
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 359 MovieClip Frame 360
wiggle++;
_parent._parent.player.hp--;
Symbol 359 MovieClip Frame 370
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 359 MovieClip Frame 373
wiggle++;
_parent._parent.player.hp--;
Symbol 359 MovieClip Frame 383
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 359 MovieClip Frame 386
wiggle++;
_parent._parent.player.hp--;
Symbol 359 MovieClip Frame 396
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 359 MovieClip Frame 399
wiggle++;
_parent._parent.player.hp--;
Symbol 359 MovieClip Frame 416
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 359 MovieClip Frame 420
_parent._parent.player.hp = 0;
Symbol 359 MovieClip Frame 450
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 469
s_vx = 4;
s_hit = 1;
s_animbusy = 0;
Symbol 359 MovieClip Frame 473
_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 ("idle");
Symbol 359 MovieClip Frame 486
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 359 MovieClip Frame 491
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 492
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 359 MovieClip Frame 497
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 498
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 359 MovieClip Frame 503
gotoAndPlay ("idle");
Symbol 359 MovieClip Frame 504
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 359 MovieClip Frame 514
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 359 MovieClip Frame 519
gotoAndPlay ("dead");
Symbol 386 MovieClip Frame 4
stop();
Symbol 388 MovieClip Frame 1
stop();
Symbol 417 MovieClip Frame 4
stop();
Symbol 442 MovieClip Frame 1
stop();
Symbol 466 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 466 MovieClip Frame 32
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 466 MovieClip Frame 56
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 466 MovieClip Frame 70
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 71
s_animbusy = 1;
Symbol 466 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 466 MovieClip Frame 90
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 142 MovieClip "sbox" in Symbol 466 MovieClip Frame 98
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("eathead");
}
}
}
Symbol 466 MovieClip Frame 107
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 116
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 466 MovieClip Frame 126
gotoAndPlay ("idle");
Symbol 466 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 466 MovieClip Frame 218
wiggle = 0;
gotoAndPlay ("digest");
Symbol 466 MovieClip Frame 225
_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 466 MovieClip Frame 235
wiggle = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 466 MovieClip Frame 240
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 466 MovieClip Frame 272
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 466 MovieClip Frame 275
wiggle++;
_parent._parent.player.hp--;
Symbol 466 MovieClip Frame 291
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 466 MovieClip Frame 294
wiggle++;
_parent._parent.player.hp--;
Symbol 466 MovieClip Frame 306
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 466 MovieClip Frame 309
wiggle++;
_parent._parent.player.hp--;
Symbol 466 MovieClip Frame 324
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 466 MovieClip Frame 327
wiggle++;
_parent._parent.player.hp--;
Symbol 466 MovieClip Frame 342
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 466 MovieClip Frame 346
_parent._parent.player.hp = 0;
Symbol 466 MovieClip Frame 387
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 442
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
_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;
}
Symbol 466 MovieClip Frame 461
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 464
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 466 MovieClip Frame 469
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 470
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 466 MovieClip Frame 475
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 476
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 466 MovieClip Frame 481
gotoAndPlay ("idle");
Symbol 466 MovieClip Frame 482
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 466 MovieClip Frame 492
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 466 MovieClip Frame 497
gotoAndPlay ("dead");
Symbol 502 MovieClip Frame 10
stop();
Symbol 532 MovieClip Frame 38
stop();
Symbol 547 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 547 MovieClip Frame 30
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 35
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 547 MovieClip Frame 91
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 96
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 547 MovieClip Frame 131
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 136
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 547 MovieClip Frame 162
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 167
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Instance of Symbol 142 MovieClip "sbox" in Symbol 547 MovieClip Frame 182
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 547 MovieClip Frame 218
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 222
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 547 MovieClip Frame 234
gotoAndPlay ("swallow");
Symbol 547 MovieClip Frame 239
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 547 MovieClip Frame 346
wiggle = 0;
excretedir = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 547 MovieClip Frame 353
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 547 MovieClip Frame 400
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 547 MovieClip Frame 405
struggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 547 MovieClip Frame 415
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (struggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("intestines1");
}
Symbol 547 MovieClip Frame 419
struggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 547 MovieClip Frame 429
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (struggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("intestines1");
}
Symbol 547 MovieClip Frame 434
struggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 547 MovieClip Frame 444
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (struggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("intestines1");
}
Symbol 547 MovieClip Frame 449
struggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 547 MovieClip Frame 459
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (struggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("intestines1");
}
Symbol 547 MovieClip Frame 463
_parent._parent.player.hp = 0;
Symbol 547 MovieClip Frame 473
Log(("You have been digested by the " + GLOBAL_ENEMY.m_name) + "...");
Symbol 547 MovieClip Frame 501
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 527
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay ("deepdigest");
Instance of Symbol 142 MovieClip in Symbol 547 MovieClip Frame 532
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 547 MovieClip Frame 554
if (2 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 2;
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("finishdeepdigesting");
}
Symbol 547 MovieClip Frame 556
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 547 MovieClip Frame 566
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("excrete");
}
Symbol 547 MovieClip Frame 571
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 547 MovieClip Frame 581
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("excrete");
}
Symbol 547 MovieClip Frame 586
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 547 MovieClip Frame 596
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("excrete");
}
Symbol 547 MovieClip Frame 601
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 547 MovieClip Frame 611
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("excrete");
}
Symbol 547 MovieClip Frame 631
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay ("digest");
Symbol 547 MovieClip Frame 636
_parent._parent.player.hp = 0;
Symbol 547 MovieClip Frame 643
Log(("You have been digested by the " + GLOBAL_ENEMY.m_name) + "...");
Symbol 547 MovieClip Frame 658
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 729
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 547 MovieClip Frame 737
_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 ("idle");
Symbol 547 MovieClip Frame 750
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 547 MovieClip Frame 755
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 756
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 547 MovieClip Frame 761
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 762
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 547 MovieClip Frame 767
gotoAndPlay ("idle");
Symbol 547 MovieClip Frame 768
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 547 MovieClip Frame 778
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 547 MovieClip Frame 783
gotoAndPlay ("dead");
Symbol 626 MovieClip Frame 1
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 626 MovieClip Frame 16
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 17
s_idle = 0;
s_moving = 3;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 626 MovieClip Frame 37
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 38
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 626 MovieClip Frame 47
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 48
s_animbusy = 1;
Symbol 626 MovieClip Frame 52
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 53
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 626 MovieClip Frame 71
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 72
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 571 MovieClip "sbox" in Symbol 626 MovieClip Frame 78
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("av");
}
}
}
Symbol 626 MovieClip Frame 88
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 89
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 626 MovieClip Frame 98
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 99
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
Symbol 626 MovieClip Frame 103
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 104
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
Symbol 626 MovieClip Frame 108
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 109
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
Symbol 626 MovieClip Frame 113
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 114
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
Symbol 626 MovieClip Frame 124
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
Symbol 626 MovieClip Frame 129
gotoAndPlay ("dead");
Symbol 626 MovieClip Frame 164
wiggle = 0;
Instance of Symbol 571 MovieClip in Symbol 626 MovieClip Frame 165
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 626 MovieClip Frame 185
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 626 MovieClip Frame 189
wiggle++;
_parent._parent.player.hp--;
Symbol 626 MovieClip Frame 199
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 626 MovieClip Frame 200
wiggle++;
_parent._parent.player.hp--;
Symbol 626 MovieClip Frame 210
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 626 MovieClip Frame 211
wiggle++;
_parent._parent.player.hp--;
Symbol 626 MovieClip Frame 221
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 626 MovieClip Frame 222
wiggle++;
_parent._parent.player.hp--;
Symbol 626 MovieClip Frame 232
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 626 MovieClip Frame 237
_parent._parent.player.hp = 0;
Symbol 626 MovieClip Frame 287
gotoAndPlay ("idle");
Symbol 626 MovieClip Frame 317
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 626 MovieClip Frame 322
_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 ("idle");
Symbol 626 MovieClip Frame 352
if (2 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 2;
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("finishdeepdigesting");
}
Symbol 626 MovieClip Frame 354
struggle++;
deepexcretedir++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 626 MovieClip Frame 364
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else if (0 >= deepexcretedir) {
gotoAndPlay ("deepexcrete");
} else {
gotoAndPlay ("stomach");
}
Symbol 626 MovieClip Frame 369
struggle++;
excretedir--;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 626 MovieClip Frame 379
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else if (0 >= deepexcretedir) {
gotoAndPlay ("deepexcrete");
} else {
gotoAndPlay ("stomach");
}
Symbol 626 MovieClip Frame 384
struggle++;
deepexcretedir++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 626 MovieClip Frame 394
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else if (0 >= deepexcretedir) {
gotoAndPlay ("deepexcrete");
} else {
gotoAndPlay ("stomach");
}
Symbol 626 MovieClip Frame 399
struggle++;
deepexcretedir--;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 626 MovieClip Frame 409
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else if (0 >= deepexcretedir) {
gotoAndPlay ("deepexcrete");
} else {
gotoAndPlay ("stomach");
}
Symbol 626 MovieClip Frame 429
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay ("digest");
Symbol 626 MovieClip Frame 456
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 1
s_idle = 1;
s_moving = 0;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
s_vx = 0;
Symbol 746 MovieClip Frame 9
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 10
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 746 MovieClip Frame 20
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 21
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 746 MovieClip Frame 30
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 31
s_animbusy = 1;
Symbol 746 MovieClip Frame 35
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 36
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 746 MovieClip Frame 48
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 49
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 142 MovieClip "sbox" in Symbol 746 MovieClip Frame 52
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("absorb");
}
}
}
Symbol 746 MovieClip Frame 62
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 63
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 746 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 76
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 6;
Symbol 746 MovieClip Frame 80
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 81
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 746 MovieClip Frame 85
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 86
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 2;
Symbol 746 MovieClip Frame 90
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 91
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 746 MovieClip Frame 104
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
hp = 0;
Symbol 746 MovieClip Frame 109
stop();
Symbol 746 MovieClip Frame 115
gotoAndStop ("blank");
Symbol 746 MovieClip Frame 138
wiggle = 0;
excretedir = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 746 MovieClip Frame 141
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 746 MovieClip Frame 163
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 746 MovieClip Frame 168
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 746 MovieClip Frame 178
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 746 MovieClip Frame 182
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 746 MovieClip Frame 192
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 746 MovieClip Frame 197
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 746 MovieClip Frame 207
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 746 MovieClip Frame 212
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 746 MovieClip Frame 222
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 746 MovieClip Frame 226
_parent._parent.player.hp = 0;
Symbol 746 MovieClip Frame 235
Log(("You have been absorbed by " + GLOBAL_ENEMY.m_name) + "...");
Symbol 746 MovieClip Frame 255
gotoAndPlay ("idle");
Symbol 746 MovieClip Frame 267
s_vx = 4;
s_hit = 1;
s_animbusy = 0;
Symbol 746 MovieClip Frame 275
_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 ("idle");
Symbol 846 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 846 MovieClip Frame 18
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 22
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 846 MovieClip Frame 44
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 52
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 846 MovieClip Frame 62
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 63
s_animbusy = 1;
Symbol 846 MovieClip Frame 67
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 72
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 846 MovieClip Frame 82
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 87
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 571 MovieClip "sbox" in Symbol 846 MovieClip Frame 92
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("eathead");
}
}
}
Symbol 846 MovieClip Frame 99
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 108
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 846 MovieClip Frame 118
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 123
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 846 MovieClip Frame 197
wiggle = 0;
gotoAndPlay ("digest");
Symbol 846 MovieClip Frame 204
_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 846 MovieClip Frame 214
wiggle = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 846 MovieClip Frame 219
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 846 MovieClip Frame 249
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 846 MovieClip Frame 252
wiggle++;
_parent._parent.player.hp--;
Symbol 846 MovieClip Frame 262
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 846 MovieClip Frame 265
wiggle++;
_parent._parent.player.hp--;
Symbol 846 MovieClip Frame 275
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 846 MovieClip Frame 278
wiggle++;
_parent._parent.player.hp--;
Symbol 846 MovieClip Frame 288
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 846 MovieClip Frame 291
wiggle++;
_parent._parent.player.hp--;
Symbol 846 MovieClip Frame 301
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 846 MovieClip Frame 305
_parent._parent.player.hp = 0;
Symbol 846 MovieClip Frame 347
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 366
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 846 MovieClip Frame 370
_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 ("idle");
Symbol 846 MovieClip Frame 383
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 846 MovieClip Frame 388
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 389
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 846 MovieClip Frame 394
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 395
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 846 MovieClip Frame 400
gotoAndPlay ("idle");
Symbol 846 MovieClip Frame 401
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 846 MovieClip Frame 411
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 846 MovieClip Frame 416
gotoAndPlay ("dead");
Symbol 881 MovieClip Frame 10
stop();
Symbol 885 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 885 MovieClip Frame 32
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 885 MovieClip Frame 56
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 885 MovieClip Frame 70
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 71
s_animbusy = 1;
Symbol 885 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Instance of Symbol 142 MovieClip "sbox" in Symbol 885 MovieClip Frame 80
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 885 MovieClip Frame 102
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 107
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 885 MovieClip Frame 119
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 128
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 885 MovieClip Frame 138
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 143
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 885 MovieClip Frame 182
wiggle = 0;
gotoAndPlay ("digest");
Symbol 885 MovieClip Frame 189
_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 885 MovieClip Frame 199
wiggle = 0;
gotoAndPlay ("digest");
Symbol 885 MovieClip Frame 232
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 885 MovieClip Frame 235
wiggle++;
_parent._parent.player.hp--;
Symbol 885 MovieClip Frame 245
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 885 MovieClip Frame 248
wiggle++;
_parent._parent.player.hp--;
Symbol 885 MovieClip Frame 258
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 885 MovieClip Frame 261
wiggle++;
_parent._parent.player.hp--;
Symbol 885 MovieClip Frame 271
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 885 MovieClip Frame 274
wiggle++;
_parent._parent.player.hp--;
Symbol 885 MovieClip Frame 284
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 885 MovieClip Frame 288
_parent._parent.player.hp = 0;
Symbol 885 MovieClip Frame 300
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 319
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 885 MovieClip Frame 323
_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 ("idle");
Symbol 885 MovieClip Frame 336
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 885 MovieClip Frame 341
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 342
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 885 MovieClip Frame 347
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 348
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 885 MovieClip Frame 353
gotoAndPlay ("idle");
Symbol 885 MovieClip Frame 354
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 885 MovieClip Frame 364
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 885 MovieClip Frame 369
gotoAndPlay ("dead");
Symbol 942 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 942 MovieClip Frame 30
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 35
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 942 MovieClip Frame 52
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 58
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 942 MovieClip Frame 68
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 73
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Instance of Symbol 142 MovieClip "sbox" in Symbol 942 MovieClip Frame 87
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 942 MovieClip Frame 100
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 105
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 942 MovieClip Frame 115
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 119
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 942 MovieClip Frame 131
gotoAndPlay ("swallow");
Symbol 942 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 942 MovieClip Frame 194
wiggle = 0;
excretedir = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 942 MovieClip Frame 197
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 942 MovieClip Frame 219
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 942 MovieClip Frame 224
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 942 MovieClip Frame 234
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else if (excretedir >= 0) {
gotoAndPlay ("excrete");
} else {
gotoAndPlay ("intestine");
}
Symbol 942 MovieClip Frame 238
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 942 MovieClip Frame 248
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else if (excretedir >= 0) {
gotoAndPlay ("excrete");
} else {
gotoAndPlay ("intestine");
}
Symbol 942 MovieClip Frame 253
wiggle++;
excretedir++;
_parent._parent.player.hp--;
Symbol 942 MovieClip Frame 266
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else if (excretedir >= 0) {
gotoAndPlay ("excrete");
} else {
gotoAndPlay ("intestine");
}
Symbol 942 MovieClip Frame 271
wiggle++;
excretedir--;
_parent._parent.player.hp--;
Symbol 942 MovieClip Frame 285
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else if (excretedir >= 0) {
gotoAndPlay ("excrete");
} else {
gotoAndPlay ("intestine");
}
Symbol 942 MovieClip Frame 289
_parent._parent.player.hp = 0;
Symbol 942 MovieClip Frame 318
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 342
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 942 MovieClip Frame 350
_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 ("idle");
Symbol 942 MovieClip Frame 407
if (2 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 2;
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("finishdeepdigesting");
}
Symbol 942 MovieClip Frame 409
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 942 MovieClip Frame 419
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("stomach");
}
Symbol 942 MovieClip Frame 424
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 942 MovieClip Frame 434
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("stomach");
}
Symbol 942 MovieClip Frame 439
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 942 MovieClip Frame 449
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("stomach");
}
Symbol 942 MovieClip Frame 454
struggle++;
_parent._parent.player.hp = _parent._parent.player.hp - 2;
Symbol 942 MovieClip Frame 464
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdeepdigesting");
} else if (struggle < 10) {
gotoAndPlay ("deepdigest");
} else {
gotoAndPlay ("stomach");
}
Symbol 942 MovieClip Frame 484
wiggle = 0;
excretedir = 0;
struggle = 0;
gotoAndPlay ("digest");
Symbol 942 MovieClip Frame 511
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 538
s_vx = 4;
s_hit = 1;
s_animbusy = 0;
Symbol 942 MovieClip Frame 546
_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 ("idle");
Symbol 942 MovieClip Frame 559
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 942 MovieClip Frame 564
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 565
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 942 MovieClip Frame 570
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 571
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 942 MovieClip Frame 576
gotoAndPlay ("idle");
Symbol 942 MovieClip Frame 577
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 942 MovieClip Frame 587
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 942 MovieClip Frame 592
gotoAndPlay ("dead");
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 32
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 56
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 70
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 71
s_animbusy = 1;
Symbol 1013 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1013 MovieClip Frame 90
gotoAndPlay ("idle");
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 571 MovieClip "sbox" in Symbol 1013 MovieClip Frame 101
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("eathead");
}
}
}
Symbol 1013 MovieClip Frame 107
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 116
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1013 MovieClip Frame 126
gotoAndPlay ("idle");
Symbol 1013 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 1013 MovieClip Frame 180
wiggle = 0;
gotoAndPlay ("digest");
Symbol 1013 MovieClip Frame 187
_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 197
wiggle = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 1013 MovieClip Frame 202
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 222
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 1013 MovieClip Frame 225
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 241
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1013 MovieClip Frame 244
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 259
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1013 MovieClip Frame 262
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 277
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1013 MovieClip Frame 280
wiggle++;
_parent._parent.player.hp--;
Symbol 1013 MovieClip Frame 300
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 10) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1013 MovieClip Frame 304
_parent._parent.player.hp = 0;
Symbol 1013 MovieClip Frame 316
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 335
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
Symbol 1013 MovieClip Frame 339
_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 ("idle");
Symbol 1013 MovieClip Frame 352
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 357
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 358
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 363
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 364
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1013 MovieClip Frame 369
gotoAndPlay ("idle");
Symbol 1013 MovieClip Frame 370
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1013 MovieClip Frame 380
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1013 MovieClip Frame 385
gotoAndPlay ("dead");
Symbol 1055 MovieClip Frame 4
stop();
Symbol 1057 MovieClip Frame 1
stop();
Symbol 1064 MovieClip Frame 4
stop();
Symbol 1084 MovieClip Frame 1
stop();
Symbol 1108 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 1108 MovieClip Frame 32
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 37
s_idle = 0;
s_moving = 4;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1108 MovieClip Frame 56
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 60
s_idle = 0;
s_moving = 8;
s_attacking = 0;
s_hit = 0;
s_animbusy = 0;
Symbol 1108 MovieClip Frame 70
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 71
s_animbusy = 1;
Symbol 1108 MovieClip Frame 75
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 80
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 1;
Symbol 1108 MovieClip Frame 90
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 95
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 2;
Symbol 1108 MovieClip Frame 107
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 116
s_idle = 0;
s_moving = 0;
s_attacking = 1;
s_hit = 0;
s_animbusy = 1;
s_atktype = 0;
Symbol 1108 MovieClip Frame 126
gotoAndPlay ("idle");
Symbol 1108 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 1108 MovieClip Frame 181
wiggle = 0;
gotoAndPlay ("digest");
Symbol 1108 MovieClip Frame 188
_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 1108 MovieClip Frame 198
wiggle = 0;
gotoAndPlay ("digest");
Instance of Symbol 142 MovieClip in Symbol 1108 MovieClip Frame 203
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 1108 MovieClip Frame 227
if (1 < _parent._parent.player.hp) {
_parent._parent.player.hp = _parent._parent.player.hp - 1;
gotoAndPlay ("digest");
} else {
gotoAndPlay ("finishdigesting");
}
Symbol 1108 MovieClip Frame 230
wiggle++;
_parent._parent.player.hp--;
Symbol 1108 MovieClip Frame 246
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 5) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1108 MovieClip Frame 249
wiggle++;
_parent._parent.player.hp--;
Symbol 1108 MovieClip Frame 266
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 5) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1108 MovieClip Frame 269
wiggle++;
_parent._parent.player.hp--;
Symbol 1108 MovieClip Frame 309
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 5) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1108 MovieClip Frame 312
wiggle++;
_parent._parent.player.hp--;
Symbol 1108 MovieClip Frame 327
if (_parent._parent.player.hp < 1) {
gotoAndPlay ("finishdigesting");
} else if (wiggle < 5) {
gotoAndPlay ("digest");
} else {
gotoAndPlay ("excrete");
}
Symbol 1108 MovieClip Frame 331
_parent._parent.player.hp = 0;
Symbol 1108 MovieClip Frame 372
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 432
s_vx = -4;
s_hit = 1;
s_animbusy = 0;
_parent._parent.player._alpha = 100;
_parent._parent.player._xscale = _xscale;
_parent._parent.player.gotoAndPlay("hitl");
_parent._parent.player._x = _parent._x + (0 * (_xscale / 100));
if (_parent._parent.player.hp < 0) {
_parent._parent.player.hp = 1;
}
Symbol 1108 MovieClip Frame 451
_xscale = (-_xscale);
s_hit = 0;
s_animbusy = 0;
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 454
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1108 MovieClip Frame 467
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 468
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Instance of Symbol 142 MovieClip "sbox" in Symbol 1108 MovieClip Frame 468
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("eathead");
}
}
}
Symbol 1108 MovieClip Frame 473
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 474
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 4;
Symbol 1108 MovieClip Frame 479
gotoAndPlay ("idle");
Symbol 1108 MovieClip Frame 480
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1108 MovieClip Frame 490
s_idle = 0;
s_moving = 0;
s_attacking = 0;
s_hit = 1;
s_animbusy = 1;
s_vx = 0;
Symbol 1108 MovieClip Frame 495
gotoAndPlay ("dead");
Symbol 1109 MovieClip Frame 2
this.m_name = "Mordori";
this.m_status = "Enemy Dragon";
this.maxhp = 1325;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 3;
this.matk = 1;
this.latk = 4;
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 1109 MovieClip Frame 3
this.m_name = "Blue Fox Girl";
this.m_status = "Anthro";
this.maxhp = 200;
this.hp = this.maxhp;
this.enemy.in_movex = -1;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 2;
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 1109 MovieClip Frame 4
this.m_name = "Dragoness";
this.m_status = "Titan";
this.maxhp = 1600;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 10;
this.matk = 4;
this.latk = 7;
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 1109 MovieClip Frame 5
this.m_name = "Centauress";
this.m_status = "Mythic Being";
this.maxhp = 240;
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 = 2;
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 1109 MovieClip Frame 6
this.m_name = "Dark Being";
this.m_status = "Opposite";
this.maxhp = 100;
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 = 2;
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 1109 MovieClip Frame 7
this.m_name = "Elephant";
this.m_status = "Safari Animal";
this.maxhp = 200;
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 = 2;
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 1109 MovieClip Frame 8
this.m_name = "Willy Pete";
this.m_status = "Giant Whale";
this.maxhp = 200;
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 = 2;
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 1109 MovieClip Frame 9
this.m_name = "T-Rex";
this.m_status = "Dinosaur";
this.maxhp = 1500;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 7;
this.matk = 5;
this.latk = 7;
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 1109 MovieClip Frame 10
this.m_name = "Big Horse";
this.m_status = "Unnatural";
this.maxhp = 100;
this.hp = this.maxhp;
this.enemy.in_movex = 0;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 3;
this.matk = 3;
this.latk = 3;
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 1109 MovieClip Frame 11
this.m_name = "Brown Fox Girl";
this.m_status = "Fighter";
this.maxhp = 400;
this.hp = this.maxhp;
this.enemy.in_movex = -1;
this.enemy.in_movey = 0;
this.enemy.in_action = 0;
this.hatk = 1;
this.matk = 1;
this.latk = 2;
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();
Instance of Symbol 18 MovieClip "player" in Symbol 1110 MovieClip Frame 1
onClipEvent (load) {
in_movex = 0;
in_movey = 0;
in_action = 0;
hp = 100;
}
Symbol 1117 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;
}
}