Combined Code
movieClip 31 {
}
movieClip 32 {
}
movieClip 35 {
}
movieClip 36 {
}
movieClip 54 {
}
movieClip 55 item {
frame 1 {
stop();
onRollOver = function () {
_root.showTooltip(this._currentframe);
};
onRollOut = function () {
_root.hideTooltip();
};
}
}
movieClip 57 {
}
// unknown tag 88 length 159
// unknown tag 88 length 169
movieClip 62 tooltip {
}
frame 1 {
stop();
var rightClick = new ContextMenu();
rightClick.hideBuiltInItems();
_root.menu = rightClick;
pl_bt._visible = false;
onEnterFrame = function () {
var v2 = _root.getBytesLoaded();
var v3 = _root.getBytesTotal();
var v4 = Math.round((v2 / v3) * 100);
txt.text = v4 + '%';
if (v2 >= v3) {
onEnterFrame = null;
txt.text = '';
_root.play();
}
};
}
// unknown tag 88 length 167
movieClip 69 {
}
movieClip 94 {
frame 64 {
gotoAndPlay(2);
}
}
movieClip 95 {
frame 1 {
var i = 1;
while (i < 17) {
this['q' + i].gotoAndPlay(i * 4);
++i;
}
}
}
movieClip 1428 __Packages.com.greensock.core.TweenCore {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.TweenCore) {
var v1 = function (duration, vars) {
this.vars = vars || {};
this.cachedTotalDuration = duration || 0;
this.cachedDuration = this.cachedTotalDuration;
this._delay = Number(this.vars.delay) || 0;
this.cachedTimeScale = this.vars.timeScale || 1;
this.active = Boolean(duration == 0 && this._delay == 0 && this.vars.immediateRender != false);
this.cachedTime = 0;
this.cachedTotalTime = 0;
this.data = this.vars.data;
this.cachedReversed = false;
this.cachedPaused = this.cachedReversed;
this.cacheIsDirty = this.cachedReversed;
this.initted = this.cachedReversed;
this.gc = this.cachedReversed;
this._rawPrevTime = -1;
if (!com.greensock.core.TweenCore._classInitted) {
if (com.greensock.TweenLite.rootFrame == undefined && com.greensock.TweenLite.initClass != undefined) {
com.greensock.TweenLite.initClass();
com.greensock.core.TweenCore._classInitted = true;
} else {
return undefined;
}
}
var v2 = this.vars.timeline instanceof com.greensock.core.SimpleTimeline ? this.vars.timeline : ((this.vars.useFrames == true) ? com.greensock.TweenLite.rootFramesTimeline : com.greensock.TweenLite.rootTimeline);
v2.insert(this, v2.cachedTotalTime);
if (this.vars.reversed) {
this.cachedReversed = true;
}
if (this.vars.paused) {
this.__set__paused(true);
}
};
com.greensock.core.TweenCore = v1;
var v2 = v1.prototype;
v2.play = function () {
this.__set__reversed(false);
this.__set__paused(false);
};
v2.pause = function () {
this.__set__paused(true);
};
v2.resume = function () {
this.__set__paused(false);
};
v2.restart = function (includeDelay, suppressEvents) {
this.__set__reversed(false);
this.__set__paused(false);
this.setTotalTime(includeDelay ? -this._delay : 0, Boolean(suppressEvents != false));
};
v2.reverse = function (forceResume) {
this.__set__reversed(true);
if (forceResume != false) {
this.__set__paused(false);
} else {
if (this.gc) {
this.setEnabled(true, false);
}
}
};
v2.renderTime = function (time, suppressEvents, force) {};
v2.complete = function (skipRender, suppressEvents) {
if (!skipRender) {
this.renderTime(this.__get__totalDuration(), suppressEvents, false);
return undefined;
}
if (this.timeline.autoRemoveChildren) {
this.setEnabled(false, false);
} else {
this.active = false;
}
if (!suppressEvents) {
if (this.vars.onComplete && this.cachedTotalTime >= this.cachedTotalDuration && !this.cachedReversed) {
this.vars.onComplete.apply(this.vars.onCompleteScope, this.vars.onCompleteParams);
} else {
if (this.cachedReversed && this.cachedTotalTime == 0 && this.vars.onReverseComplete) {
this.vars.onReverseComplete.apply(this.vars.onReverseCompleteScope, this.vars.onReverseCompleteParams);
}
}
}
};
v2.invalidate = function () {};
v2.setEnabled = function (enabled, ignoreTimeline) {
this.gc = !enabled;
if (enabled) {
this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration);
if (ignoreTimeline != true && this.cachedOrphan) {
this.timeline.insert(this, this.cachedStartTime - this._delay);
}
return false;
}
this.active = false;
if (ignoreTimeline != true && !this.cachedOrphan) {
this.timeline.remove(this, true);
}
return false;
};
v2.kill = function () {
this.setEnabled(false, false);
};
v2.setDirtyCache = function (includeSelf) {
var v2 = (includeSelf != false) ? this : this.timeline;
while (v2) {
v2.cacheIsDirty = true;
v2 = v2.timeline;
}
};
v2.setTotalTime = function (time, suppressEvents) {
if (this.timeline) {
var v3 = this.cachedPaused ? this.cachedPauseTime : this.timeline.cachedTotalTime;
if (this.cachedReversed) {
var v4 = this.cacheIsDirty ? this.__get__totalDuration() : this.cachedTotalDuration;
this.cachedStartTime = v3 - (v4 - time) / this.cachedTimeScale;
} else {
this.cachedStartTime = v3 - time / this.cachedTimeScale;
}
if (!this.timeline.cacheIsDirty) {
this.setDirtyCache(false);
}
if (this.cachedTotalTime != time) {
this.renderTime(time, suppressEvents, false);
}
}
};
v2.__get__delay = function () {
return this._delay;
};
v2.__set__delay = function (n) {
this.startTime += n - this._delay;
this._delay = n;
return this.__get__delay();
};
v2.__get__duration = function () {
return this.cachedDuration;
};
v2.__set__duration = function (n) {
var v2 = n / this.cachedDuration;
this.cachedTotalDuration = n;
this.cachedDuration = this.cachedTotalDuration;
this.setDirtyCache(true);
if (this.active && !this.cachedPaused && n != 0) {
this.setTotalTime(this.cachedTotalTime * v2, true);
}
return this.__get__duration();
};
v2.__get__totalDuration = function () {
return this.cachedTotalDuration;
};
v2.__set__totalDuration = function (n) {
this.__set__duration(n);
return this.__get__totalDuration();
};
v2.__get__currentTime = function () {
return this.cachedTime;
};
v2.__set__currentTime = function (n) {
this.setTotalTime(n, false);
return this.__get__currentTime();
};
v2.__get__totalTime = function () {
return this.cachedTotalTime;
};
v2.__set__totalTime = function (n) {
this.setTotalTime(n, false);
return this.__get__totalTime();
};
v2.__get__startTime = function () {
return this.cachedStartTime;
};
v2.__set__startTime = function (n) {
if (this.timeline != undefined && (n != this.cachedStartTime || this.gc)) {
this.timeline.insert(this, n - this._delay);
} else {
this.cachedStartTime = n;
}
return this.__get__startTime();
};
v2.__get__reversed = function () {
return this.cachedReversed;
};
v2.__set__reversed = function (b) {
if (b != this.cachedReversed) {
this.cachedReversed = b;
this.setTotalTime(this.cachedTotalTime, true);
}
return this.__get__reversed();
};
v2.__get__paused = function () {
return this.cachedPaused;
};
v2.__set__paused = function (b) {
if (b != this.cachedPaused && this.timeline) {
if (b) {
this.cachedPauseTime = this.timeline.rawTime;
} else {
this.cachedStartTime += this.timeline.__get__rawTime() - this.cachedPauseTime;
this.cachedPauseTime = NaN;
this.setDirtyCache(false);
}
this.cachedPaused = b;
this.active = Boolean(!this.cachedPaused && this.cachedTotalTime > 0 && this.cachedTotalTime < this.cachedTotalDuration);
}
if (!b && this.gc) {
this.setEnabled(true, false);
}
return this.__get__paused();
};
v1.version = 1.693;
v2.addProperty('currentTime', v2.__get__currentTime, v2.__set__currentTime);
v2.addProperty('delay', v2.__get__delay, v2.__set__delay);
v2.addProperty('duration', v2.__get__duration, v2.__set__duration);
v2.addProperty('paused', v2.__get__paused, v2.__set__paused);
v2.addProperty('reversed', v2.__get__reversed, v2.__set__reversed);
v2.addProperty('startTime', v2.__get__startTime, v2.__set__startTime);
v2.addProperty('totalDuration', v2.__get__totalDuration, v2.__set__totalDuration);
v2.addProperty('totalTime', v2.__get__totalTime, v2.__set__totalTime);
ASSetPropFlags(com.greensock.core.TweenCore.prototype, null, 1);
}
#endinitclip
}
movieClip 1429 __Packages.com.greensock.core.SimpleTimeline {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.SimpleTimeline) {
var v1 = function (vars) {
super(0, vars);
};
com.greensock.core.SimpleTimeline = v1;
com.greensock.core.SimpleTimeline extends com.greensock.core.TweenCore;
var v2 = v1.prototype;
v2.insert = function (tween, time) {
if (time == undefined) {
time = 0;
}
var v3 = tween.timeline;
if (!tween.cachedOrphan && v3) {
v3.remove(tween, true);
}
tween.timeline = this;
tween.cachedStartTime = Number(time) + tween.__get__delay();
if (tween.gc) {
tween.setEnabled(true, true);
}
if (tween.cachedPaused && v3 != this) {
tween.cachedPauseTime = tween.cachedStartTime + (this.__get__rawTime() - tween.cachedStartTime) / tween.cachedTimeScale;
}
if (this._lastChild) {
this._lastChild.nextNode = tween;
tween.prevNode = this._lastChild;
this._lastChild = tween;
tween.nextNode = undefined;
tween.cachedOrphan = false;
return tween;
}
this._firstChild = tween;
tween.prevNode = this._lastChild;
this._lastChild = tween;
tween.nextNode = undefined;
tween.cachedOrphan = false;
return tween;
};
v2.remove = function (tween, skipDisable) {
if (tween.cachedOrphan) {
return undefined;
} else {
if (skipDisable != true) {
tween.setEnabled(false, true);
}
}
if (tween.nextNode) {
tween.nextNode.prevNode = tween.prevNode;
} else {
if (this._lastChild == tween) {
this._lastChild = tween.prevNode;
}
}
if (tween.prevNode) {
tween.prevNode.nextNode = tween.nextNode;
} else {
if (this._firstChild == tween) {
this._firstChild = tween.nextNode;
}
}
tween.cachedOrphan = true;
};
v2.renderTime = function (time, suppressEvents, force) {
var v2 = this._firstChild;
var v4;
var v5;
this.cachedTotalTime = time;
this.cachedTime = time;
while (v2) {
v5 = v2.nextNode;
if (v2.active || time >= v2.cachedStartTime && !v2.cachedPaused && !v2.gc) {
if (!v2.cachedReversed) {
v2.renderTime((time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false);
} else {
v4 = v2.cacheIsDirty ? v2.__get__totalDuration() : v2.cachedTotalDuration;
v2.renderTime(v4 - (time - v2.cachedStartTime) * v2.cachedTimeScale, suppressEvents, false);
}
}
v2 = v5;
}
};
v2.__get__rawTime = function () {
return this.cachedTotalTime;
};
v2.addProperty('rawTime', v2.__get__rawTime, function () {});
ASSetPropFlags(com.greensock.core.SimpleTimeline.prototype, null, 1);
}
#endinitclip
}
movieClip 1430 __Packages.com.greensock.TweenLite {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.TweenLite) {
var v1 = function (target, duration, vars) {
super(duration, vars);
if (com.greensock.TweenLite._timingClip.onEnterFrame != com.greensock.TweenLite.updateAll) {
com.greensock.TweenLite.jumpStart(_root);
}
this.ratio = 0;
this.target = target;
this._targetID = com.greensock.TweenLite.getID(target, true);
if (this.vars.timeScale != undefined && this.target instanceof com.greensock.core.TweenCore) {
this.cachedTimeScale = 1;
}
this.propTweenLookup = {};
this._ease = com.greensock.TweenLite.defaultEase;
this._overwrite = (vars.overwrite == undefined || !com.greensock.TweenLite.overwriteManager.enabled && vars.overwrite > 1) ? com.greensock.TweenLite.overwriteManager.mode : Number(vars.overwrite);
var v5 = com.greensock.TweenLite.masterList[this._targetID].tweens;
if (v5.length == 0) {
v5[0] = this;
} else {
if (this._overwrite == 1) {
var v4 = v5.length;
while (--v4 > -1) {
if (!v5[v4].gc) {
v5[v4].setEnabled(false, false);
}
}
com.greensock.TweenLite.masterList[this._targetID].tweens = [this];
} else {
v5[v5.length] = this;
}
}
if (this.active || this.vars.immediateRender) {
this.renderTime(0, false, true);
}
};
com.greensock.TweenLite = v1;
com.greensock.TweenLite extends com.greensock.core.TweenCore;
var v2 = v1.prototype;
v1.initClass = function () {
com.greensock.TweenLite.rootFrame = 0;
com.greensock.TweenLite.rootTimeline = new com.greensock.core.SimpleTimeline(null);
com.greensock.TweenLite.rootFramesTimeline = new com.greensock.core.SimpleTimeline(null);
com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren = true;
com.greensock.TweenLite.rootTimeline.autoRemoveChildren = com.greensock.TweenLite.rootFramesTimeline.autoRemoveChildren;
com.greensock.TweenLite.rootTimeline.cachedStartTime = getTimer() * 0.001;
com.greensock.TweenLite.rootFramesTimeline.cachedTotalTime = 0;
com.greensock.TweenLite.rootTimeline.cachedTotalTime = 0;
com.greensock.TweenLite.rootFramesTimeline.cachedStartTime = com.greensock.TweenLite.rootFrame;
if (com.greensock.TweenLite.overwriteManager == undefined) {
com.greensock.TweenLite.overwriteManager = {'mode': 1, 'enabled': false};
}
com.greensock.TweenLite.jumpStart(_root);
};
v2.init = function () {
if (this.vars.onInit) {
this.vars.onInit.apply(null, this.vars.onInitParams);
}
var v2;
var v5;
var v3;
var v6;
var v7;
if (typeof this.vars.ease == 'function') {
this._ease = this.vars.ease;
}
if (this.vars.easeParams != undefined) {
this.vars.proxiedEase = this._ease;
this._ease = this.easeProxy;
}
this.cachedPT1 = undefined;
this.propTweenLookup = {};
for (v2 in this.vars) {
if (com.greensock.TweenLite._reservedProps[v2] && !(v2 == 'timeScale' && this.target instanceof com.greensock.core.TweenCore)) {
} else {
if (com.greensock.TweenLite.plugins[v2] && v3.onInitTween(this.target, this.vars[v2], this)) {
this.cachedPT1 = new com.greensock.core.PropTween(v3, 'changeFactor', 0, 1, (v3.overwriteProps.length == 1) ? v3.overwriteProps[0] : '_MULTIPLE_', true, this.cachedPT1);
if (this.cachedPT1.name == '_MULTIPLE_') {
v5 = v3.overwriteProps.length;
while (--v5 > -1) {
this.propTweenLookup[v3.overwriteProps[v5]] = this.cachedPT1;
}
} else {
this.propTweenLookup[this.cachedPT1.name] = this.cachedPT1;
}
if (v3.priority) {
this.cachedPT1.priority = v3.priority;
v6 = true;
}
if (v3.onDisable || v3.onEnable) {
this._notifyPluginsOfEnabled = true;
}
this._hasPlugins = true;
} else {
this.cachedPT1 = new com.greensock.core.PropTween(this.target, v2, Number(this.target[v2]), (typeof this.vars[v2] == 'number') ? Number(this.vars[v2]) - this.target[v2] : Number(this.vars[v2]), v2, false, this.cachedPT1);
this.propTweenLookup[v2] = this.cachedPT1;
}
}
}
if (v6) {
com.greensock.TweenLite.onPluginEvent('onInitAllProps', this);
}
if (this.vars.runBackwards) {
var v4 = this.cachedPT1;
while (v4) {
v4.start += v4.change;
v4.change = -v4.change;
v4 = v4.nextNode;
}
}
this._hasUpdate = Boolean(typeof this.vars.onUpdate == 'function');
if (this._overwrittenProps) {
this.killVars(this._overwrittenProps);
if (this.cachedPT1 == undefined) {
this.setEnabled(false, false);
}
}
if (this._overwrite > 1 && this.cachedPT1 && v7 && v7.length > 1) {
if (com.greensock.TweenLite.overwriteManager.manageOverwrites(this, this.propTweenLookup, v7, this._overwrite)) {
this.init();
}
}
this.initted = true;
};
v2.renderTime = function (time, suppressEvents, force) {
var v4;
var v5 = this.cachedTime;
if (time >= this.cachedDuration) {
this.cachedTime = this.cachedDuration;
this.cachedTotalTime = this.cachedTime;
this.ratio = 1;
v4 = !this.cachedReversed;
if (this.cachedDuration == 0) {
if ((time == 0 || this._rawPrevTime < 0) && this._rawPrevTime != time) {
force = true;
}
this._rawPrevTime = time;
}
} else {
if (time <= 0) {
this.ratio = 0;
this.cachedTime = 0;
this.cachedTotalTime = 0;
if (time < 0) {
this.active = false;
if (this.cachedDuration == 0) {
if (this._rawPrevTime >= 0) {
force = true;
v4 = this._rawPrevTime > 0;
}
this._rawPrevTime = time;
}
}
if (this.cachedReversed && v5 != 0) {
v4 = true;
}
} else {
this.cachedTime = time;
this.cachedTotalTime = this.cachedTime;
this.ratio = this._ease(time, 0, 1, this.cachedDuration);
}
}
if (this.cachedTime == v5 && !force) {
return undefined;
} else {
if (!this.initted) {
this.init();
if (!v4 && this.cachedTime) {
this.ratio = this._ease(this.cachedTime, 0, 1, this.cachedDuration);
}
}
}
if (!this.active && !this.cachedPaused) {
this.active = true;
}
if (v5 == 0 && this.vars.onStart && (this.cachedTime != 0 || this.cachedDuration == 0) && !suppressEvents) {
this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams);
}
var v2 = this.cachedPT1;
while (v2) {
v2.target[v2.property] = v2.start + this.ratio * v2.change;
v2 = v2.nextNode;
}
if (this._hasUpdate && !suppressEvents) {
this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams);
}
if (v4 && !this.gc) {
if (this._hasPlugins && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onComplete', this);
}
this.complete(true, suppressEvents);
}
};
v2.killVars = function (vars, permanent) {
if (this._overwrittenProps == undefined) {
this._overwrittenProps = {};
}
var v3;
var v2;
var v5;
for (v3 in vars) {
if (this.propTweenLookup[v3]) {
v2 = this.propTweenLookup[v3];
if (v2.isPlugin && v2.name == '_MULTIPLE_') {
v2.target.killProps(vars);
if (v2.target.overwriteProps.length == 0) {
v2.name = '';
}
if (v3 != v2.target.propName || v2.name == '') {
delete this.propTweenLookup[v3];
}
}
if (v2.name != '_MULTIPLE_') {
if (v2.nextNode) {
v2.nextNode.prevNode = v2.prevNode;
}
if (v2.prevNode) {
v2.prevNode.nextNode = v2.nextNode;
} else {
if (this.cachedPT1 == v2) {
this.cachedPT1 = v2.nextNode;
}
}
if (v2.isPlugin && v2.target.onDisable) {
v2.target.onDisable();
if (v2.target.activeDisable) {
v5 = true;
}
}
delete this.propTweenLookup[v3];
}
}
if (permanent != false && vars != this._overwrittenProps) {
this._overwrittenProps[v3] = 1;
}
}
return v5;
};
v2.invalidate = function () {
if (this._notifyPluginsOfEnabled) {
com.greensock.TweenLite.onPluginEvent('onDisable', this);
}
this.cachedPT1 = undefined;
this._overwrittenProps = undefined;
this._notifyPluginsOfEnabled = false;
this.active = this._notifyPluginsOfEnabled;
this.initted = this._notifyPluginsOfEnabled;
this._hasUpdate = this._notifyPluginsOfEnabled;
this.propTweenLookup = {};
};
v2.setEnabled = function (enabled, ignoreTimeline) {
if (enabled && this.gc) {
var v4 = com.greensock.TweenLite.masterList[this._targetID].tweens;
if (v4) {
var v3 = v4.length;
v4[v3] = this;
while (--v3 > -1) {
if (v4[v3] == this) {
v4.splice(v3, 1);
}
}
} else {
com.greensock.TweenLite.masterList[this._targetID] = {'target': this.target, 'tweens': [this]};
}
}
super.setEnabled(enabled, ignoreTimeline);
if (this._notifyPluginsOfEnabled && this.cachedPT1) {
return com.greensock.TweenLite.onPluginEvent(enabled ? 'onEnable' : 'onDisable', this);
}
return false;
};
v2.easeProxy = function (t, b, c, d) {
return this.vars.proxiedEase.apply(null, arguments.concat(this.vars.easeParams));
};
v1.to = function (target, duration, vars) {
return new com.greensock.TweenLite(target, duration, vars);
};
v1.from = function (target, duration, vars) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return new com.greensock.TweenLite(target, duration, vars);
};
v1.delayedCall = function (delay, onComplete, onCompleteParams, onCompleteScope, useFrames) {
return new com.greensock.TweenLite(onComplete, 0, {'delay': delay, 'onComplete': onComplete, 'onCompleteParams': onCompleteParams, 'onCompleteScope': onCompleteScope, 'immediateRender': false, 'useFrames': useFrames, 'overwrite': 0});
};
v1.updateAll = function () {
com.greensock.TweenLite.rootTimeline.renderTime((getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale, false, false);
++com.greensock.TweenLite.rootFrame;
com.greensock.TweenLite.rootFramesTimeline.renderTime((com.greensock.TweenLite.rootFrame - com.greensock.TweenLite.rootFramesTimeline.cachedStartTime) * com.greensock.TweenLite.rootFramesTimeline.cachedTimeScale, false, false);
if (!(com.greensock.TweenLite.rootFrame % 60)) {
var v3 = com.greensock.TweenLite.masterList;
var v2;
var v1;
for (var v4 in v3) {
v1 = v3[v4].tweens;
v2 = v1.length;
while (--v2 > -1) {
if (v1[v2].gc) {
v1.splice(v2, 1);
}
}
if (v1.length == 0) {
delete v3[v4];
}
}
}
};
v1.killTweensOf = function (target, complete, vars) {
var v6 = com.greensock.TweenLite.getID(target, true);
var v4 = com.greensock.TweenLite.masterList[v6].tweens;
var v3;
var v1;
if (v4 != undefined) {
v3 = v4.length;
while (--v3 > -1) {
v1 = v4[v3];
if (!v1.gc) {
if (complete == true) {
v1.complete(false, false);
}
if (vars != undefined) {
v1.killVars(vars);
}
if (vars == undefined || v1.cachedPT1 == undefined && v1.initted) {
v1.setEnabled(false, false);
}
}
}
if (vars == undefined) {
delete com.greensock.TweenLite.masterList[v6];
}
}
};
v1.getID = function (target, lookup) {
var v2;
if (lookup) {
var v1 = com.greensock.TweenLite.masterList;
if (typeof target == 'movieclip') {
if (v1[String(target)] != undefined) {
return String(target);
} else {
v2 = String(target);
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
}
++com.greensock.TweenLite._cnt;
v2 = 't' + com.greensock.TweenLite._cnt;
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
}
for (var v3 in v1) {
if (v1[v3].target == target) {
return v3;
}
}
}
++com.greensock.TweenLite._cnt;
v2 = 't' + com.greensock.TweenLite._cnt;
com.greensock.TweenLite.masterList[v2] = {'target': target, 'tweens': []};
return v2;
};
v1.easeOut = function (t, b, c, d) {
t /= d;
return -1 * t * (t - 2);
};
v1.findSubloadedSWF = function (mc) {
for (var v3 in mc) {
if (typeof mc[v3] == 'movieclip') {
if (mc[v3]._url != _root._url && mc[v3].getBytesLoaded() != undefined) {
return mc[v3];
} else {
if (com.greensock.TweenLite.findSubloadedSWF(mc[v3]) != undefined) {
return com.greensock.TweenLite.findSubloadedSWF(mc[v3]);
}
}
}
}
return undefined;
};
v1.jumpStart = function (root) {
if (com.greensock.TweenLite._timingClip != undefined) {
com.greensock.TweenLite._timingClip.removeMovieClip();
}
var v2 = (root.getBytesLoaded() == undefined) ? com.greensock.TweenLite.findSubloadedSWF(root) : root;
var v1 = 999;
while (v2.getInstanceAtDepth(v1) != undefined) {
++v1;
}
com.greensock.TweenLite._timingClip = v2.createEmptyMovieClip('__tweenLite' + ((String(com.greensock.TweenLite.version)).split('.')).join('_'), v1);
com.greensock.TweenLite._timingClip.onEnterFrame = com.greensock.TweenLite.updateAll;
com.greensock.TweenLite.to({}, 0, {});
com.greensock.TweenLite.rootTimeline.cachedTotalTime = (getTimer() * 0.001 - com.greensock.TweenLite.rootTimeline.cachedStartTime) * com.greensock.TweenLite.rootTimeline.cachedTimeScale;
com.greensock.TweenLite.rootTimeline.cachedTime = com.greensock.TweenLite.rootTimeline.cachedTotalTime;
};
v1.version = 11.698;
v1.plugins = {};
v1.killDelayedCallsTo = com.greensock.TweenLite.killTweensOf;
v1.defaultEase = com.greensock.TweenLite.easeOut;
v1.masterList = {};
v1._cnt = -16000;
v1._reservedProps = {'ease': 1, 'delay': 1, 'overwrite': 1, 'onComplete': 1, 'onCompleteParams': 1, 'useFrames': 1, 'runBackwards': 1, 'startAt': 1, 'onUpdate': 1, 'onUpdateParams': 1, 'onStart': 1, 'onStartParams': 1, 'onReverseComplete': 1, 'onReverseCompleteParams': 1, 'onRepeat': 1, 'onRepeatParams': 1, 'proxiedEase': 1, 'easeParams': 1, 'yoyo': 1, 'onCompleteListener': 1, 'onUpdateListener': 1, 'onStartListener': 1, 'orientToBezier': 1, 'timeScale': 1, 'immediateRender': 1, 'repeat': 1, 'repeatDelay': 1, 'timeline': 1, 'data': 1, 'paused': 1, 'reversed': 1};
ASSetPropFlags(com.greensock.TweenLite.prototype, null, 1);
}
#endinitclip
}
movieClip 1431 __Packages.com.greensock.core.PropTween {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.core) {
_global.com.greensock.core = new Object();
}
if (!_global.com.greensock.core.PropTween) {
var v1 = function (target, property, start, change, name, isPlugin, nextNode, priority) {
this.target = target;
this.property = property;
this.start = start;
this.change = change;
this.name = name;
this.isPlugin = isPlugin;
if (nextNode) {
nextNode.prevNode = this;
this.nextNode = nextNode;
}
this.priority = priority || 0;
};
com.greensock.core.PropTween = v1;
var v2 = v1.prototype;
ASSetPropFlags(com.greensock.core.PropTween.prototype, null, 1);
}
#endinitclip
}
movieClip 1432 __Packages.com.greensock.easing.Back {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.easing) {
_global.com.greensock.easing = new Object();
}
if (!_global.com.greensock.easing.Back) {
var v1 = function () {};
com.greensock.easing.Back = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t /= d;
return c * t * t * ((s + 1) * t - s) + b;
};
v1.easeOut = function (t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t = t / d - 1;
return c * (t * t * ((s + 1) * t + s) + 1) + b;
};
v1.easeInOut = function (t, b, c, d, s) {
if (s == undefined) {
s = 1.70158;
}
t /= d * 0.5;
if (t < 1) {
s *= 1.525;
return c * 0.5 * (t * t * ((s + 1) * t - s)) + b;
}
t -= 2;
s *= 1.525;
return c * 0.5 * (t * t * ((s + 1) * t + s) + 2) + b;
};
ASSetPropFlags(com.greensock.easing.Back.prototype, null, 1);
}
#endinitclip
}
movieClip 1433 __Packages.com.greensock.easing.Strong {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.easing) {
_global.com.greensock.easing = new Object();
}
if (!_global.com.greensock.easing.Strong) {
var v1 = function () {};
com.greensock.easing.Strong = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d) {
t /= d;
return c * t * t * t * t * t + b;
};
v1.easeOut = function (t, b, c, d) {
t = t / d - 1;
return c * (t * t * t * t * t + 1) + b;
};
v1.easeInOut = function (t, b, c, d) {
t /= d * 0.5;
if (t < 1) {
return c * 0.5 * t * t * t * t * t + b;
}
t -= 2;
return c * 0.5 * (t * t * t * t * t + 2) + b;
};
ASSetPropFlags(com.greensock.easing.Strong.prototype, null, 1);
}
#endinitclip
}
movieClip 1434 __Packages.com.greensock.plugins.TweenPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.TweenPlugin) {
var v1 = function () {
this._tweens = [];
this._changeFactor = 0;
};
com.greensock.plugins.TweenPlugin = v1;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this.addTween(target, this.propName, target[this.propName], value, this.propName);
return true;
};
v2.addTween = function (object, propName, start, end, overwriteProp) {
if (end != undefined) {
var v3 = (typeof end == 'number') ? Number(end) - start : Number(end);
if (v3 != 0) {
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(object, propName, start, v3, overwriteProp || propName);
}
}
};
v2.updateTweens = function (changeFactor) {
var v3 = this._tweens.length;
var v2;
if (this.round) {
var v4;
while (--v3 > -1) {
v2 = this._tweens[v3];
v4 = v2.start + v2.change * changeFactor;
if (v4 > 0) {
v2.target[v2.property] = v4 + 0.5 >> 0;
} else {
v2.target[v2.property] = v4 - 0.5 >> 0;
}
}
} else {
while (--v3 > -1) {
v2 = this._tweens[v3];
v2.target[v2.property] = v2.start + v2.change * changeFactor;
}
}
};
v2.__get__changeFactor = function () {
return this._changeFactor;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._changeFactor = n;
return this.__get__changeFactor();
};
v2.killProps = function (lookup) {
var v2 = this.overwriteProps.length;
while (--v2 > -1) {
if (lookup[this.overwriteProps[v2]]) {
this.overwriteProps.splice(v2, 1);
}
}
v2 = this._tweens.length;
while (--v2 > -1) {
if (lookup[this._tweens[v2].name]) {
this._tweens.splice(v2, 1);
}
}
};
v1.onTweenEvent = function (type, tween) {
var v1 = tween.cachedPT1;
var v5;
if (type == 'onInitAllProps') {
var v3 = [];
var v2 = 0;
while (v1) {
v3[v2++] = v1;
v1 = v1.nextNode;
}
v3.sortOn('priority', Array.NUMERIC | Array.DESCENDING);
while (--v2 > -1) {
v3[v2].nextNode = v3[v2 + 1];
v3[v2].prevNode = v3[v2 - 1];
}
tween.cachedPT1 = v3[0];
v1 = tween.cachedPT1;
}
while (v1) {
if (v1.isPlugin && v1.target[type]) {
if (v1.target.activeDisable) {
v5 = true;
}
v1.target[type]();
}
v1 = v1.nextNode;
}
return v5;
};
v1.activate = function (plugins) {
com.greensock.TweenLite.onPluginEvent = com.greensock.plugins.TweenPlugin.onTweenEvent;
var v1 = plugins.length;
var v3;
while (v1--) {
if (plugins[v1].API == 1) {
v3 = new plugins[v1]();
com.greensock.TweenLite.plugins[v3.propName] = plugins[v1];
}
}
return true;
};
v1.VERSION = 1.4;
v1.API = 1;
v2.priority = 0;
v2.addProperty('changeFactor', v2.__get__changeFactor, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.TweenPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1435 __Packages.com.greensock.plugins.VisiblePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.VisiblePlugin) {
var v1 = function () {
super();
this.propName = '_visible';
this.overwriteProps = ['_visible'];
};
com.greensock.plugins.VisiblePlugin = v1;
com.greensock.plugins.VisiblePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._tween = tween;
this._initVal = Boolean(this._target._visible);
this._visible = Boolean(value);
return true;
};
v2.__set__changeFactor = function (n) {
if (n == 1 && (this._tween.cachedDuration == this._tween.cachedTime || this._tween.cachedTime == 0)) {
this._target._visible = this._visible;
} else {
this._target._visible = this._initVal;
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.VisiblePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1436 __Packages.com.greensock.plugins.AutoAlphaPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.AutoAlphaPlugin) {
var v1 = function () {
super();
this.propName = 'autoAlpha';
this.overwriteProps = ['_alpha', '_visible'];
};
com.greensock.plugins.AutoAlphaPlugin = v1;
com.greensock.plugins.AutoAlphaPlugin extends com.greensock.plugins.VisiblePlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this.addTween(target, '_alpha', target._alpha, value, '_alpha');
return true;
};
v2.killProps = function (lookup) {
super.killProps(lookup);
this._ignoreVisible = Boolean(lookup._visible != undefined);
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
if (!this._ignoreVisible) {
this._target._visible = Boolean(this._target._alpha != 0);
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.AutoAlphaPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1437 __Packages.com.greensock.plugins.EndArrayPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.EndArrayPlugin) {
var v1 = function () {
super();
this.propName = 'endArray';
this.overwriteProps = ['endArray'];
this._info = [];
};
com.greensock.plugins.EndArrayPlugin = v1;
com.greensock.plugins.EndArrayPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(target instanceof Array) || !(value instanceof Array)) {
return false;
}
this.init([target][0], [value][0]);
return true;
};
v2.init = function (start, end) {
this._a = start;
var v2 = end.length;
while (v2--) {
if (start[v2] != end[v2] && start[v2] != undefined) {
this._info[this._info.length] = new com.greensock.plugins.helpers.ArrayTweenInfo(v2, this._a[v2], end[v2] - this._a[v2]);
}
}
};
v2.__set__changeFactor = function (n) {
var v3 = this._info.length;
var v2;
if (this.round) {
while (v3--) {
v2 = this._info[v3];
this._a[v2.index] = Math.round(v2.start + v2.change * n);
}
} else {
while (v3--) {
v2 = this._info[v3];
this._a[v2.index] = v2.start + v2.change * n;
}
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.EndArrayPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1438 __Packages.com.greensock.plugins.helpers.ArrayTweenInfo {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.helpers) {
_global.com.greensock.plugins.helpers = new Object();
}
if (!_global.com.greensock.plugins.helpers.ArrayTweenInfo) {
var v1 = function (index, start, change) {
this.index = index;
this.start = start;
this.change = change;
};
com.greensock.plugins.helpers.ArrayTweenInfo = v1;
var v2 = v1.prototype;
ASSetPropFlags(com.greensock.plugins.helpers.ArrayTweenInfo.prototype, null, 1);
}
#endinitclip
}
movieClip 1439 __Packages.com.greensock.plugins.FramePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FramePlugin) {
var v1 = function () {
super();
this.propName = 'frame';
this.overwriteProps = ['frame'];
this.round = true;
};
com.greensock.plugins.FramePlugin = v1;
com.greensock.plugins.FramePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' || isNaN(value)) {
return false;
}
this._target = MovieClip(target);
this.frame = this._target._currentframe;
this.addTween(this, 'frame', this.frame, value, 'frame');
return true;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._target.gotoAndStop(this.frame);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.FramePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1440 __Packages.com.greensock.plugins.TintPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.TintPlugin) {
var v1 = function () {
super();
this.propName = 'tint';
this.overwriteProps = ['tint'];
};
com.greensock.plugins.TintPlugin = v1;
com.greensock.plugins.TintPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' && !(target instanceof TextField)) {
return false;
}
var v2 = (tween.vars._alpha != undefined) ? tween.vars._alpha : ((tween.vars.autoAlpha != undefined) ? tween.vars.autoAlpha : target._alpha);
var v4 = Number(value);
if (!(value == null || tween.vars.removeTint == true)) {
var v6 = {'rb': v4 >> 16, 'gb': v4 >> 8 & 255, 'bb': v4 & 255, 'ra': 0, 'ga': 0, 'ba': 0, 'aa': v2};
this.init(target, v6);
return true;
}
var v6 = {'rb': 0, 'gb': 0, 'bb': 0, 'ab': 0, 'ra': v2, 'ga': v2, 'ba': v2, 'aa': v2};
this.init(target, v6);
return true;
};
v2.init = function (target, end) {
this._color = new Color(target);
var v3 = this._color.getTransform();
var v6;
var v2;
for (v2 in end) {
if (v3[v2] != end[v2]) {
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(v3, v2, v3[v2], end[v2] - v3[v2], 'tint', false);
}
}
};
v2.__set__changeFactor = function (n) {
var v4 = this._color.getTransform();
var v3 = this._tweens.length;
var v2;
while (v3--) {
v2 = this._tweens[v3];
v4[v2.property] = v2.start + v2.change * n;
}
this._color.setTransform(v4);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.TintPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1441 __Packages.com.greensock.plugins.RemoveTintPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.RemoveTintPlugin) {
var v1 = function () {
super();
this.propName = 'removeTint';
};
com.greensock.plugins.RemoveTintPlugin = v1;
com.greensock.plugins.RemoveTintPlugin extends com.greensock.plugins.TintPlugin;
var v2 = v1.prototype;
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.RemoveTintPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1442 __Packages.com.greensock.plugins.VolumePlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.VolumePlugin) {
var v1 = function () {
super();
this.propName = 'volume';
this.overwriteProps = ['volume'];
};
com.greensock.plugins.VolumePlugin = v1;
com.greensock.plugins.VolumePlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (isNaN(value) || typeof target != 'movieclip' && !(target instanceof Sound)) {
return false;
}
if (typeof target != 'movieclip') {
this._sound = Sound(target);
this.volume = this._sound.getVolume();
this.addTween(this, 'volume', this.volume, value, 'volume');
return true;
}
this._sound = new Sound(target);
this.volume = this._sound.getVolume();
this.addTween(this, 'volume', this.volume, value, 'volume');
return true;
};
v2.__set__changeFactor = function (n) {
this.updateTweens(n);
this._sound.setVolume(this.volume);
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.VolumePlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1443 __Packages.com.greensock.plugins.FilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FilterPlugin) {
var v1 = function () {
super();
};
com.greensock.plugins.FilterPlugin = v1;
com.greensock.plugins.FilterPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.initFilter = function (props, defaultFilter, propNames) {
var v6 = this._target.filters;
var v2;
var v3;
var v5;
var v7 = props instanceof flash.filters.BitmapFilter ? {} : props;
this._index = -1;
if (v7.index != undefined) {
this._index = v7.index;
} else {
v3 = v6.length;
while (v3--) {
if (v6[v3] instanceof this._type) {
this._index = v3;
break;
}
}
}
if (this._index == -1 || v6[this._index] == undefined || v7.addFilter == true) {
this._index = (v7.index != undefined) ? v7.index : v6.length;
v6[this._index] = defaultFilter;
this._target.filters = v6;
}
this._filter = v6[this._index];
if (v7.remove == true) {
this._remove = true;
this.onComplete = this.onCompleteTween;
}
v3 = propNames.length;
while (v3--) {
v2 = propNames[v3];
if (props[v2] != undefined && this._filter[v2] != props[v2]) {
if (v2 == 'color' || v2 == 'highlightColor' || v2 == 'shadowColor') {
v5 = new com.greensock.plugins.HexColorsPlugin();
v5.initColor(this._filter, v2, this._filter[v2], props[v2]);
this._tweens[this._tweens.length] = new com.greensock.core.PropTween(v5, 'changeFactor', 0, 1, this.propName);
} else {
if (v2 == 'quality' || v2 == 'inner' || v2 == 'knockout' || v2 == 'hideObject') {
this._filter[v2] = props[v2];
} else {
this.addTween(this._filter, v2, this._filter[v2], props[v2], this.propName);
}
}
}
}
};
v2.onCompleteTween = function () {
if (this._remove) {
var v3 = this._target.filters;
if (!(v3[this._index] instanceof this._type)) {
var v2 = v3.length;
while (v2--) {
if (v3[v2] instanceof this._type) {
v3.splice(v2, 1);
break;
}
}
} else {
v3.splice(this._index, 1);
}
this._target.filters = v3;
}
};
v2.__set__changeFactor = function (n) {
var v2 = this._tweens.length;
var v3;
var v4 = this._target.filters;
while (v2--) {
v3 = this._tweens[v2];
v3.target[v3.property] = v3.start + v3.change * n;
}
if (!(v4[this._index] instanceof this._type)) {
this._index = v4.length;
v2 = this._index;
while (v2--) {
if (v4[v2] instanceof this._type) {
this._index = v2;
break;
}
}
}
v4[this._index] = this._filter;
this._target.filters = v4;
return this.__get__changeFactor();
};
v1.VERSION = 2.03;
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.FilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1444 __Packages.com.greensock.plugins.HexColorsPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.HexColorsPlugin) {
var v1 = function () {
super();
this.propName = 'hexColors';
this.overwriteProps = [];
this._colors = [];
};
com.greensock.plugins.HexColorsPlugin = v1;
com.greensock.plugins.HexColorsPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
for (var v4 in value) {
this.initColor(target, v4, Number(target[v4]), Number(value[v4]));
}
return true;
};
v2.initColor = function (target, propName, start, end) {
if (start != end) {
var v3 = start >> 16;
var v5 = start >> 8 & 255;
var v2 = start & 255;
this._colors[this._colors.length] = [target, propName, v3, (end >> 16) - v3, v5, (end >> 8 & 255) - v5, v2, (end & 255) - v2];
this.overwriteProps[this.overwriteProps.length] = propName;
}
};
v2.killProps = function (lookup) {
var v3 = this._colors.length;
while (v3--) {
if (lookup[this._colors[v3][1]] != undefined) {
this._colors.splice(v3, 1);
}
}
super.killProps(lookup);
};
v2.__set__changeFactor = function (n) {
var v4 = this._colors.length;
var v2;
while (v4--) {
v2 = this._colors[v4];
v2[0][v2[1]] = v2[2] + n * v2[3] << 16 | v2[4] + n * v2[5] << 8 | v2[6] + n * v2[7];
}
return this.__get__changeFactor();
};
v1.API = 1;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.HexColorsPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1445 __Packages.com.greensock.plugins.BevelFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BevelFilterPlugin) {
var v1 = function () {
super();
this.propName = 'bevelFilter';
this.overwriteProps = ['bevelFilter'];
};
com.greensock.plugins.BevelFilterPlugin = v1;
com.greensock.plugins.BevelFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.BevelFilter;
this.initFilter(value, new flash.filters.BevelFilter(0, 0, 16777215, 0.5, 0, 0.5, 2, 2, 0, value.quality || 2), com.greensock.plugins.BevelFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['distance', 'angle', 'highlightColor', 'highlightAlpha', 'shadowColor', 'shadowAlpha', 'blurX', 'blurY', 'strength', 'quality'];
ASSetPropFlags(com.greensock.plugins.BevelFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1446 __Packages.com.greensock.plugins.BezierPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BezierPlugin) {
var v1 = function () {
super();
this.propName = 'bezier';
this.overwriteProps = [];
this._future = {};
};
com.greensock.plugins.BezierPlugin = v1;
com.greensock.plugins.BezierPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(value instanceof Array)) {
return false;
}
this.init(tween, [value][0], false);
return true;
};
v2.init = function (tween, beziers, through) {
this._target = tween.target;
var v7 = tween.vars;
if (v7.orientToBezier == true) {
this._orientData = [['_x', '_y', '_rotation', 0, 0.01]];
this._orient = true;
} else {
if (v7.orientToBezier instanceof Array) {
this._orientData = v7.orientToBezier;
this._orient = true;
}
}
var v3 = {};
var v4;
var v2;
var v8;
v4 = 0;
while (v4 < beziers.length) {
for (v2 in beziers[v4]) {
if (v3[v2] == undefined) {
v3[v2] = [tween.target[v2]];
}
if (typeof beziers[v4][v2] == 'number') {
v3[v2].push(beziers[v4][v2]);
} else {
v3[v2].push(tween.target[v2] + Number(beziers[v4][v2]));
}
}
++v4;
}
for (v2 in v3) {
this.overwriteProps[this.overwriteProps.length] = v2;
if (v7[v2] != undefined) {
if (typeof v7[v2] == 'number') {
v3[v2].push(v7[v2]);
} else {
v3[v2].push(tween.target[v2] + Number(v7[v2]));
}
v8 = {};
v8[v2] = true;
tween.killVars(v8, false);
delete v7[v2];
}
}
this._beziers = com.greensock.plugins.BezierPlugin.parseBeziers(v3, through);
};
v1.parseBeziers = function (props, through) {
var v2;
var v1;
var v3;
var v4;
var v6 = {};
if (through == true) {
for (v4 in props) {
v1 = props[v4];
v3 = [];
v6[v4] = v3;
if (v1.length > 2) {
v3[v3.length] = [v1[0], v1[1] - (v1[2] - v1[0]) / 4, v1[1]];
v2 = 1;
while (v2 < v1.length - 1) {
v3[v3.length] = [v1[v2], v1[v2] + (v1[v2] - v3[v2 - 1][1]), v1[v2 + 1]];
++v2;
}
} else {
v3[v3.length] = [v1[0], (v1[0] + v1[1]) / 2, v1[1]];
}
}
return v6;
}
for (v4 in props) {
v1 = props[v4];
v3 = [];
v6[v4] = v3;
if (v1.length > 3) {
v3[v3.length] = [v1[0], v1[1], (v1[1] + v1[2]) / 2];
v2 = 2;
while (v2 < v1.length - 2) {
v3[v3.length] = [v3[v2 - 2][2], v1[v2], (v1[v2] + v1[v2 + 1]) / 2];
++v2;
}
v3[v3.length] = [v3[v3.length - 1][2], v1[v1.length - 2], v1[v1.length - 1]];
} else {
if (v1.length == 3) {
v3[v3.length] = [v1[0], v1[1], v1[2]];
} else {
if (v1.length == 2) {
v3[v3.length] = [v1[0], (v1[0] + v1[1]) / 2, v1[1]];
}
}
}
}
return v6;
};
v2.killProps = function (lookup) {
for (var v4 in this._beziers) {
if (lookup[v4] != undefined) {
delete this._beziers[v4];
}
}
super.killProps(lookup);
};
v2.__set__changeFactor = function (n) {
var v3;
var v5;
var v4;
var v6;
var v7;
var v15;
var v16;
if (n == 1) {
for (v5 in this._beziers) {
v3 = this._beziers[v5].length - 1;
this._target[v5] = this._beziers[v5][v3][2];
}
} else {
for (v5 in this._beziers) {
v7 = this._beziers[v5].length;
if (n < 0) {
v3 = 0;
} else {
if (n >= 1) {
v3 = v7 - 1;
} else {
v3 = v7 * n >> 0;
}
}
v6 = (n - v3 * (1 / v7)) * v7;
v4 = this._beziers[v5][v3];
if (this.round) {
this._target[v5] = Math.round(v4[0] + v6 * (2 * (1 - v6) * (v4[1] - v4[0]) + v6 * (v4[2] - v4[0])));
} else {
this._target[v5] = v4[0] + v6 * (2 * (1 - v6) * (v4[1] - v4[0]) + v6 * (v4[2] - v4[0]));
}
}
}
if (this._orient == true) {
v3 = this._orientData.length;
var v9 = {};
var v11;
var v10;
var v2;
var v12;
while (v3-- > 0) {
v2 = this._orientData[v3];
v9[v2[0]] = this._target[v2[0]];
v9[v2[1]] = this._target[v2[1]];
}
var v13 = this._target;
var v14 = this.round;
this._target = this._future;
this.round = false;
this._orient = false;
v3 = this._orientData.length;
while (v3-- > 0) {
v2 = this._orientData[v3];
this.__set__changeFactor(n + (v2[4] || 0.01));
v12 = v2[3] || 0;
v11 = this._future[v2[0]] - v9[v2[0]];
v10 = this._future[v2[1]] - v9[v2[1]];
v13[v2[2]] = Math.atan2(v10, v11) * com.greensock.plugins.BezierPlugin._RAD2DEG + v12;
}
this._target = v13;
this.round = v14;
this._orient = true;
}
return this.__get__changeFactor();
};
v1.API = 1;
v1._RAD2DEG = 57.29577951308232;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.BezierPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1447 __Packages.com.greensock.plugins.BezierThroughPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BezierThroughPlugin) {
var v1 = function () {
super();
this.propName = 'bezierThrough';
};
com.greensock.plugins.BezierThroughPlugin = v1;
com.greensock.plugins.BezierThroughPlugin extends com.greensock.plugins.BezierPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (!(value instanceof Array)) {
return false;
}
this.init(tween, [value][0], true);
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.BezierThroughPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1448 __Packages.com.greensock.plugins.BlurFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.BlurFilterPlugin) {
var v1 = function () {
super();
this.propName = 'blurFilter';
this.overwriteProps = ['blurFilter'];
};
com.greensock.plugins.BlurFilterPlugin = v1;
com.greensock.plugins.BlurFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.BlurFilter;
this.initFilter(value, new flash.filters.BlurFilter(0, 0, value.quality || 2), com.greensock.plugins.BlurFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['blurX', 'blurY', 'quality'];
ASSetPropFlags(com.greensock.plugins.BlurFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1449 __Packages.com.greensock.plugins.ColorMatrixFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ColorMatrixFilterPlugin) {
var v1 = function () {
super();
this.propName = 'colorMatrixFilter';
this.overwriteProps = ['colorMatrixFilter'];
};
com.greensock.plugins.ColorMatrixFilterPlugin = v1;
com.greensock.plugins.ColorMatrixFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.ColorMatrixFilter;
var v3 = value;
this.initFilter({'remove': value.remove, 'index': value.index, 'addFilter': value.addFilter}, new flash.filters.ColorMatrixFilter(com.greensock.plugins.ColorMatrixFilterPlugin._idMatrix.slice()), com.greensock.plugins.ColorMatrixFilterPlugin._propNames);
this._matrix = (flash.filters.ColorMatrixFilter(this._filter)).matrix;
var v2 = [];
if (v3.matrix != undefined && v3.matrix instanceof Array) {
v2 = v3.matrix;
this._matrixTween = new com.greensock.plugins.EndArrayPlugin();
this._matrixTween.init(this._matrix, v2);
return true;
}
if (v3.relative == true) {
v2 = this._matrix.slice();
} else {
v2 = com.greensock.plugins.ColorMatrixFilterPlugin._idMatrix.slice();
}
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setBrightness(v2, v3.brightness);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setContrast(v2, v3.contrast);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setHue(v2, v3.hue);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setSaturation(v2, v3.saturation);
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.setThreshold(v2, v3.threshold);
if (!isNaN(v3.colorize)) {
v2 = com.greensock.plugins.ColorMatrixFilterPlugin.colorize(v2, v3.colorize, v3.amount);
}
this._matrixTween = new com.greensock.plugins.EndArrayPlugin();
this._matrixTween.init(this._matrix, v2);
return true;
};
v2.__set__changeFactor = function (n) {
this._matrixTween.__set__changeFactor(n);
(flash.filters.ColorMatrixFilter(this._filter)).matrix = this._matrix;
super.__set__changeFactor(n);
return this.__get__changeFactor();
};
v1.colorize = function (m, color, amount) {
if (isNaN(color)) {
return m;
var v3 = (color >> 16 & 255) / 255;
var v5 = (color >> 8 & 255) / 255;
var v2 = (color & 255) / 255;
var v4 = 1 - amount;
var v7 = [v4 + amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, v4 + amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, v4 + amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v7, m);
}
if (isNaN(amount)) {
amount = 1;
}
var v3 = (color >> 16 & 255) / 255;
var v5 = (color >> 8 & 255) / 255;
var v2 = (color & 255) / 255;
var v4 = 1 - amount;
var v7 = [v4 + amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v3 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, v4 + amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, amount * v5 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR, amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, v4 + amount * v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v7, m);
};
v1.setThreshold = function (m, n) {
if (isNaN(n)) {
return m;
}
var v2 = [com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, com.greensock.plugins.ColorMatrixFilterPlugin._lumR * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumG * 256, com.greensock.plugins.ColorMatrixFilterPlugin._lumB * 256, 0, -256 * n, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v2, m);
};
v1.setHue = function (m, n) {
if (isNaN(n)) {
return m;
}
n *= 0.0174532925199433;
var v1 = Math.cos(n);
var v2 = Math.sin(n);
var v4 = [com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumR) + v2 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR, com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v2 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v2 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumB), 0, 0, com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v2 * 0.143, com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumG) + v2 * 0.14, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v2 * -0.283, 0, 0, com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumR + v2 * -(1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumR), com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v1 * -com.greensock.plugins.ColorMatrixFilterPlugin._lumG + v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG, com.greensock.plugins.ColorMatrixFilterPlugin._lumB + v1 * (1 - com.greensock.plugins.ColorMatrixFilterPlugin._lumB) + v2 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v4, m);
};
v1.setBrightness = function (m, n) {
if (isNaN(n)) {
return m;
}
n = n * 100 - 100;
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix([1, 0, 0, 0, n, 0, 1, 0, 0, n, 0, 0, 1, 0, n, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1], m);
};
v1.setSaturation = function (m, n) {
if (isNaN(n)) {
return m;
}
var v4 = 1 - n;
var v2 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumR;
var v5 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumG;
var v1 = v4 * com.greensock.plugins.ColorMatrixFilterPlugin._lumB;
var v6 = [v2 + n, v5, v1, 0, 0, v2, v5 + n, v1, 0, 0, v2, v5, v1 + n, 0, 0, 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v6, m);
};
v1.setContrast = function (m, n) {
if (isNaN(n)) {
return m;
}
n += 0.01;
var v2 = [n, 0, 0, 0, 128 * (1 - n), 0, n, 0, 0, 128 * (1 - n), 0, 0, n, 0, 128 * (1 - n), 0, 0, 0, 1, 0];
return com.greensock.plugins.ColorMatrixFilterPlugin.applyMatrix(v2, m);
};
v1.applyMatrix = function (m, m2) {
if (!(m instanceof Array) || !(m2 instanceof Array)) {
return m2;
}
var v7 = [];
var v2 = 0;
var v5 = 0;
var v6;
var v1;
v6 = 0;
while (v6 < 4) {
v1 = 0;
while (v1 < 5) {
if (v1 == 4) {
v5 = m[v2 + 4];
} else {
v5 = 0;
}
v7[v2 + v1] = m[v2] * m2[v1] + m[v2 + 1] * m2[v1 + 5] + m[v2 + 2] * m2[v1 + 10] + m[v2 + 3] * m2[v1 + 15] + v5;
++v1;
}
v2 += 5;
++v6;
}
return v7;
};
v1.API = 1;
v1._propNames = [];
v1._idMatrix = [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0];
v1._lumR = 0.212671;
v1._lumG = 0.71516;
v1._lumB = 0.072169;
v2.addProperty('changeFactor', function () {}, v2.__set__changeFactor);
ASSetPropFlags(com.greensock.plugins.ColorMatrixFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1450 __Packages.com.greensock.plugins.ColorTransformPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ColorTransformPlugin) {
var v1 = function () {
super();
this.propName = 'colorTransform';
};
com.greensock.plugins.ColorTransformPlugin = v1;
com.greensock.plugins.ColorTransformPlugin extends com.greensock.plugins.TintPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof target != 'movieclip' && !(target instanceof TextField)) {
return false;
}
var v7 = new Color(target);
var v2 = v7.getTransform();
if (value.redMultiplier != undefined) {
v2.ra = value.redMultiplier * 100;
}
if (value.greenMultiplier != undefined) {
v2.ga = value.greenMultiplier * 100;
}
if (value.blueMultiplier != undefined) {
v2.ba = value.blueMultiplier * 100;
}
if (value.alphaMultiplier != undefined) {
v2.aa = value.alphaMultiplier * 100;
}
if (value.redOffset != undefined) {
v2.rb = value.redOffset;
}
if (value.greenOffset != undefined) {
v2.gb = value.greenOffset;
}
if (value.blueOffset != undefined) {
v2.bb = value.blueOffset;
}
if (value.alphaOffset != undefined) {
v2.ab = value.alphaOffset;
}
if (!isNaN(value.tint) || !isNaN(value.color)) {
var v4 = !isNaN(value.tint) ? value.tint : value.color;
if (v4 != null) {
v2.rb = Number(v4) >> 16;
v2.gb = Number(v4) >> 8 & 255;
v2.bb = Number(v4) & 255;
v2.ra = 0;
v2.ga = 0;
v2.ba = 0;
}
}
if (!isNaN(value.tintAmount)) {
var v5 = value.tintAmount / (1 - (v2.ra + v2.ga + v2.ba) / 300);
v2.rb *= v5;
v2.gb *= v5;
v2.bb *= v5;
v2.ba = (1 - value.tintAmount) * 100;
v2.ga = v2.ba;
v2.ra = v2.ba;
} else {
if (!isNaN(value.exposure)) {
v2.bb = 255 * (value.exposure - 1);
v2.gb = v2.bb;
v2.rb = v2.bb;
v2.ba = 100;
v2.ga = 100;
v2.ra = 100;
} else {
if (!isNaN(value.brightness)) {
v2.bb = Math.max(0, (value.brightness - 1) * 255);
v2.gb = v2.bb;
v2.rb = v2.bb;
v2.ba = (1 - Math.abs(value.brightness - 1)) * 100;
v2.ga = v2.ba;
v2.ra = v2.ba;
}
}
}
if (tween.vars._alpha != undefined && value.alphaMultiplier == undefined) {
v2.aa = tween.vars._alpha;
tween.killVars({'_alpha': 1});
}
this.init(target, v2);
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.ColorTransformPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1451 __Packages.com.greensock.plugins.DropShadowFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.DropShadowFilterPlugin) {
var v1 = function () {
super();
this.propName = 'dropShadowFilter';
this.overwriteProps = ['dropShadowFilter'];
};
com.greensock.plugins.DropShadowFilterPlugin = v1;
com.greensock.plugins.DropShadowFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.DropShadowFilter;
this.initFilter(value, new flash.filters.DropShadowFilter(0, 45, 0, 0, 0, 0, 1, value.quality || 2, value.inner, value.knockout, value.hideObject), com.greensock.plugins.DropShadowFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['distance', 'angle', 'color', 'alpha', 'blurX', 'blurY', 'strength', 'quality', 'inner', 'knockout', 'hideObject'];
ASSetPropFlags(com.greensock.plugins.DropShadowFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1452 __Packages.com.greensock.plugins.FrameLabelPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.FrameLabelPlugin) {
var v1 = function () {
super();
this.propName = 'frameLabel';
};
com.greensock.plugins.FrameLabelPlugin = v1;
com.greensock.plugins.FrameLabelPlugin extends com.greensock.plugins.FramePlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof tween.target != 'movieclip') {
return false;
}
this._target = MovieClip(target);
this.frame = this._target._currentframe;
var v2 = this._target.duplicateMovieClip('__frameLabelPluginTempMC', this._target._parent.getNextHighestDepth());
v2.gotoAndStop(value);
var v3 = v2._currentframe;
v2.removeMovieClip();
if (this.frame != v3) {
this.addTween(this, 'frame', this.frame, v3, 'frame');
}
return true;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.FrameLabelPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1453 __Packages.com.greensock.plugins.GlowFilterPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.GlowFilterPlugin) {
var v1 = function () {
super();
this.propName = 'glowFilter';
this.overwriteProps = ['glowFilter'];
};
com.greensock.plugins.GlowFilterPlugin = v1;
com.greensock.plugins.GlowFilterPlugin extends com.greensock.plugins.FilterPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._target = target;
this._type = flash.filters.GlowFilter;
this.initFilter(value, new flash.filters.GlowFilter(16777215, 0, 0, 0, value.strength || 1, value.quality || 2, value.inner, value.knockout), com.greensock.plugins.GlowFilterPlugin._propNames);
return true;
};
v1.API = 1;
v1._propNames = ['color', 'alpha', 'blurX', 'blurY', 'strength', 'quality', 'inner', 'knockout'];
ASSetPropFlags(com.greensock.plugins.GlowFilterPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1454 __Packages.com.greensock.plugins.RoundPropsPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.RoundPropsPlugin) {
var v1 = function () {
super();
this.propName = 'roundProps';
this.overwriteProps = ['roundProps'];
this.round = true;
this.priority = -1;
this.onInitAllProps = this._initAllProps;
};
com.greensock.plugins.RoundPropsPlugin = v1;
com.greensock.plugins.RoundPropsPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
this._tween = tween;
var v2 = value;
this.overwriteProps = this.overwriteProps.concat(v2);
return true;
};
v2._initAllProps = function () {
var v3;
var v4;
var v6 = this._tween.vars.roundProps;
var v2;
var v5 = v6.length;
while (--v5 > -1) {
v3 = v6[v5];
v2 = this._tween.cachedPT1;
while (v2) {
if (v2.name == v3) {
if (v2.isPlugin) {
v2.target.round = true;
} else {
this.add(v2.target, v3, v2.start, v2.change);
this._removePropTween(v2);
this._tween.propTweenLookup[v3] = this._tween.propTweenLookup.roundProps;
}
} else {
if (v2.isPlugin && v2.name == '_MULTIPLE_' && !v2.target.round) {
v4 = ' ' + v2.target.overwriteProps.join(' ') + ' ';
if (v4.indexOf(' ' + v3 + ' ') != -1) {
v2.target.round = true;
}
}
}
v2 = v2.nextNode;
}
}
};
v2._removePropTween = function (propTween) {
if (propTween.nextNode) {
propTween.nextNode.prevNode = propTween.prevNode;
}
if (propTween.prevNode) {
propTween.prevNode.nextNode = propTween.nextNode;
} else {
if (this._tween.cachedPT1 == propTween) {
this._tween.cachedPT1 = propTween.nextNode;
}
}
if (propTween.isPlugin && propTween.target.onDisable) {
propTween.target.onDisable();
}
};
v2.add = function (object, propName, start, change) {
this.addTween(object, propName, start, start + change, propName);
this.overwriteProps[this.overwriteProps.length] = propName;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.RoundPropsPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1455 __Packages.com.greensock.plugins.ShortRotationPlugin {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.plugins) {
_global.com.greensock.plugins = new Object();
}
if (!_global.com.greensock.plugins.ShortRotationPlugin) {
var v1 = function () {
super();
this.propName = 'shortRotation';
this.overwriteProps = [];
};
com.greensock.plugins.ShortRotationPlugin = v1;
com.greensock.plugins.ShortRotationPlugin extends com.greensock.plugins.TweenPlugin;
var v2 = v1.prototype;
v2.onInitTween = function (target, value, tween) {
if (typeof value == 'number') {
return false;
}
var v4 = Boolean(value.useRadians == true);
for (var v5 in value) {
if (v5 != 'useRadians') {
this.initRotation(target, v5, target[v5], (typeof value[v5] == 'number') ? Number(value[v5]) : target[v5] + Number(value[v5]), v4);
}
}
return true;
};
v2.initRotation = function (target, propName, start, end, useRadians) {
var v3 = useRadians ? 6.283185307179586 : 360;
var v2 = (end - start) % v3;
if (v2 != v2 % v3 / 2) {
v2 = v2 < 0 ? v2 + v3 : v2 - v3;
}
this.addTween(target, propName, start, start + v2, propName);
this.overwriteProps[this.overwriteProps.length] = propName;
};
v1.API = 1;
ASSetPropFlags(com.greensock.plugins.ShortRotationPlugin.prototype, null, 1);
}
#endinitclip
}
movieClip 1456 __Packages.com.greensock.OverwriteManager {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.OverwriteManager) {
var v1 = function () {};
com.greensock.OverwriteManager = v1;
var v2 = v1.prototype;
v1.init = function (defaultMode) {
if (com.greensock.TweenLite.version < 11.6) {
trace('Warning: Your TweenLite class needs to be updated to work with OverwriteManager (or you may need to clear your ASO files). Please download and install the latest version from http://www.tweenlite.com.');
}
com.greensock.TweenLite.overwriteManager = com.greensock.OverwriteManager;
if (defaultMode != undefined) {
com.greensock.OverwriteManager.mode = defaultMode;
com.greensock.OverwriteManager.enabled = true;
return com.greensock.OverwriteManager.mode;
}
com.greensock.OverwriteManager.mode = 2;
com.greensock.OverwriteManager.enabled = true;
return com.greensock.OverwriteManager.mode;
};
v1.manageOverwrites = function (tween, props, targetTweens, mode) {
var v3;
var v10;
var v1;
if (mode >= 4) {
var v17 = targetTweens.length;
v3 = 0;
while (v3 < v17) {
v1 = targetTweens[v3];
if (v1 != tween) {
if (v1.setEnabled(false, false)) {
v10 = true;
}
} else {
if (mode == 5) {
break;
}
}
++v3;
}
return v10;
}
var v5 = tween.cachedStartTime + 1.0e-010;
var v9 = [];
var v13 = [];
var v15 = 0;
var v12 = 0;
v3 = targetTweens.length;
while (--v3 > -1) {
v1 = targetTweens[v3];
if (v1 == tween || v1.gc || !v1.initted && v5 - v1.cachedStartTime <= 2.0e-010) {
} else {
if (v1.timeline != tween.timeline) {
if (!com.greensock.OverwriteManager.getGlobalPaused(v1)) {
v13[v15++] = v1;
}
} else {
if (v1.cachedStartTime <= v5 && v1.cachedStartTime + v1.__get__totalDuration() + 1.0e-010 > v5 && !v1.cachedPaused && !(tween.cachedDuration == 0 && v5 - v1.cachedStartTime <= 2.0e-010)) {
v9[v12++] = v1;
}
}
}
}
if (v15 != 0) {
var v6 = tween.cachedTimeScale;
var v7 = v5;
var v4;
var v11;
var v2;
v2 = tween.timeline;
while (v2) {
v6 *= v2.cachedTimeScale;
v7 += v2.cachedStartTime;
v2 = v2.timeline;
}
v5 = v6 * v7;
v3 = v15;
while (--v3 > -1) {
v4 = v13[v3];
v6 = v4.cachedTimeScale;
v7 = v4.cachedStartTime;
v2 = v4.timeline;
while (v2) {
v6 *= v2.cachedTimeScale;
v7 += v2.cachedStartTime;
v2 = v2.timeline;
}
v11 = v6 * v7;
if (v11 <= v5 && (v11 + v4.__get__totalDuration() * v6 + 1.0e-010 > v5 || v4.cachedDuration == 0)) {
v9[v12++] = v4;
}
}
}
if (v12 == 0) {
return v10;
}
v3 = v12;
if (mode == 2) {
while (--v3 > -1) {
v1 = v9[v3];
if (v1.killVars(props)) {
v10 = true;
}
if (v1.cachedPT1 == undefined && v1.initted) {
v1.setEnabled(false, false);
}
}
return v10;
}
while (--v3 > -1) {
if (v9[v3].setEnabled(false, false)) {
v10 = true;
}
}
return v10;
};
v1.getGlobalPaused = function (tween) {
while (tween) {
if (tween.cachedPaused) {
return true;
}
tween = tween.timeline;
}
return false;
};
v1.version = 6.1;
v1.NONE = 0;
v1.ALL_IMMEDIATE = 1;
v1.AUTO = 2;
v1.CONCURRENT = 3;
v1.ALL_ONSTART = 4;
v1.PREEXISTING = 5;
ASSetPropFlags(com.greensock.OverwriteManager.prototype, null, 1);
}
#endinitclip
}
movieClip 1457 __Packages.com.greensock.TweenMax {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.TweenMax) {
var v1 = function (target, duration, vars) {
super(target, duration, vars);
if (com.greensock.TweenLite.version < 11.2) {
trace('TweenMax warning: Please update your TweenLite class or try deleting your ASO files. TweenMax requires a more recent version. Download updates at http://www.TweenMax.com.');
}
this._cyclesComplete = 0;
this.yoyo = Boolean(this.vars.yoyo);
this._repeat = this.vars.repeat || 0;
this._repeatDelay = this.vars.repeatDelay || 0;
this.cacheIsDirty = true;
if (this.vars.timeScale != undefined && !(this.target instanceof com.greensock.core.TweenCore)) {
this.cachedTimeScale = this.vars.timeScale;
}
};
com.greensock.TweenMax = v1;
com.greensock.TweenMax extends com.greensock.TweenLite;
var v2 = v1.prototype;
v2.init = function () {
if (this.vars.startAt) {
this.vars.startAt.overwrite = 0;
this.vars.startAt.immediateRender = true;
var v3 = new com.greensock.TweenMax(this.target, 0, this.vars.startAt);
}
super.init();
};
v2.invalidate = function () {
this.yoyo = Boolean(this.vars.yoyo);
this._repeat = this.vars.repeat || 0;
this._repeatDelay = this.vars.repeatDelay || 0;
this.setDirtyCache(true);
super.invalidate();
};
v2.updateTo = function (vars, resetDuration) {
var v7 = this.ratio;
if (resetDuration && this.timeline != undefined && this.cachedStartTime < this.timeline.cachedTime) {
this.cachedStartTime = this.timeline.cachedTime;
this.setDirtyCache(false);
if (this.gc) {
this.setEnabled(true, false);
} else {
this.timeline.insert(this, this.cachedStartTime - this._delay);
}
}
for (var v6 in vars) {
this.vars[v6] = vars[v6];
}
if (this.initted) {
if (resetDuration) {
this.initted = false;
} else {
if (this._notifyPluginsOfEnabled && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onDisable', this);
}
if (this.cachedTime / this.cachedDuration > 0.998) {
var v8 = this.cachedTime;
this.renderTime(0, true, false);
this.initted = false;
this.renderTime(v8, true, false);
} else {
if (this.cachedTime > 0) {
this.initted = false;
this.init();
var v5 = 1 / (1 - v7);
var v2 = this.cachedPT1;
var v3;
while (v2) {
v3 = v2.start + v2.change;
v2.change *= v5;
v2.start = v3 - v2.change;
v2 = v2.nextNode;
}
}
}
}
}
};
v2.setDestination = function (property, value, adjustStartValues) {
var v2 = {};
v2[property] = value;
this.updateTo(v2, Boolean(adjustStartValues != false));
};
v2.killProperties = function (names) {
var v3 = {};
var v2 = names.length;
while (--v2 > -1) {
v3[names[v2]] = true;
}
this.killVars(v3);
};
v2.renderTime = function (time, suppressEvents, force) {
var v9 = this.cacheIsDirty ? this.__get__totalDuration() : this.cachedTotalDuration;
var v13 = this.cachedTime;
var v7 = this.cachedTotalTime;
var v4;
var v11;
var v6;
if (time >= v9) {
this.cachedTotalTime = v9;
this.cachedTime = this.cachedDuration;
this.ratio = 1;
v4 = !this.cachedReversed;
if (this.cachedDuration == 0) {
if ((time == 0 || this._rawPrevTime < 0) && this._rawPrevTime != time) {
force = true;
}
this._rawPrevTime = time;
}
} else {
if (time <= 0) {
if (time < 0) {
this.active = false;
if (this.cachedDuration == 0) {
if (this._rawPrevTime >= 0) {
force = true;
v4 = this._rawPrevTime > 0;
}
this._rawPrevTime = time;
}
} else {
if (time == 0 && !this.initted) {
force = true;
}
}
this.ratio = 0;
this.cachedTime = 0;
this.cachedTotalTime = 0;
if (this.cachedReversed && v7 != 0) {
v4 = true;
}
} else {
this.cachedTime = time;
this.cachedTotalTime = this.cachedTime;
v6 = true;
}
}
if (this._repeat != 0) {
var v5 = this.cachedDuration + this._repeatDelay;
var v12 = this._cyclesComplete;
v12 = this._cyclesComplete;
this._cyclesComplete = this.cachedTotalTime / v5 >> 0;
if (this._cyclesComplete == this.cachedTotalTime / v5 && this._cyclesComplete != 0) {
--this._cyclesComplete;
}
v11 = Boolean(v12 != this._cyclesComplete);
if (v4) {
if (this.yoyo && this._repeat % 2) {
this.ratio = 0;
this.cachedTime = 0;
}
} else {
if (time > 0) {
this.cachedTime = this.cachedTotalTime - this._cyclesComplete * v5;
if (this.yoyo && this._cyclesComplete % 2) {
this.cachedTime = this.cachedDuration - this.cachedTime;
} else {
if (this.cachedTime >= this.cachedDuration) {
this.cachedTime = this.cachedDuration;
this.ratio = 1;
v6 = false;
}
}
if (this.cachedTime <= 0) {
this.ratio = 0;
this.cachedTime = 0;
v6 = false;
}
} else {
this._cyclesComplete = 0;
}
}
}
if (v13 == this.cachedTime && !force) {
return undefined;
} else {
if (!this.initted) {
this.init();
}
}
if (!this.active && !this.cachedPaused) {
this.active = true;
}
if (v6) {
this.ratio = this._ease(this.cachedTime, 0, 1, this.cachedDuration);
}
if (v7 == 0 && this.vars.onStart && (this.cachedTotalTime != 0 || this.cachedDuration == 0) && !suppressEvents) {
this.vars.onStart.apply(this.vars.onStartScope, this.vars.onStartParams);
}
var v2 = this.cachedPT1;
while (v2) {
v2.target[v2.property] = v2.start + this.ratio * v2.change;
v2 = v2.nextNode;
}
if (this._hasUpdate && !suppressEvents) {
this.vars.onUpdate.apply(this.vars.onUpdateScope, this.vars.onUpdateParams);
}
if (v11 && !suppressEvents && !this.gc) {
if (this.vars.onRepeat) {
this.vars.onRepeat.apply(this.vars.onRepeatScope, this.vars.onRepeatParams);
}
}
if (v4 && !this.gc) {
if (this._hasPlugins && this.cachedPT1) {
com.greensock.TweenLite.onPluginEvent('onComplete', this);
}
this.complete(true, suppressEvents);
}
};
v1.to = function (target, duration, vars) {
return new com.greensock.TweenMax(target, duration, vars);
};
v1.from = function (target, duration, vars) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return new com.greensock.TweenMax(target, duration, vars);
};
v1.fromTo = function (target, duration, fromVars, toVars) {
toVars.startAt = fromVars;
if (fromVars.immediateRender) {
toVars.immediateRender = true;
}
return new com.greensock.TweenMax(target, duration, toVars);
};
v1.allTo = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
var v2;
var v3;
var v1;
if (stagger == undefined) {
stagger = 0;
}
var v7 = targets.length;
var v6 = [];
var v5 = vars.delay || 0;
var onCompleteProxy = vars.onComplete;
var onCompleteParamsProxy = vars.onCompleteParams;
var onCompleteScopeProxy = vars.onCompleteScope;
var v9 = v7 - 1;
v2 = 0;
while (v2 < v7) {
v3 = {};
for (v1 in vars) {
v3[v1] = vars[v1];
}
v3.delay = v5;
if (v2 == v9 && onCompleteAll != undefined) {
v3.onComplete = function () {
if (onCompleteProxy != undefined) {
onCompleteProxy.apply(onCompleteScopeProxy, onCompleteParamsProxy);
}
onCompleteAll.apply(onCompleteAllScope, onCompleteAllParams);
};
}
v6[v2] = new com.greensock.TweenMax(targets[v2], duration, v3);
v5 += stagger;
++v2;
}
return v6;
};
v1.allFrom = function (targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
vars.runBackwards = true;
if (vars.immediateRender != false) {
vars.immediateRender = true;
}
return com.greensock.TweenMax.allTo(targets, duration, vars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope);
};
v1.allFromTo = function (targets, duration, fromVars, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope) {
toVars.startAt = fromVars;
if (fromVars.immediateRender) {
toVars.immediateRender = true;
}
return com.greensock.TweenMax.allTo(targets, duration, toVars, stagger, onCompleteAll, onCompleteAllParams, onCompleteAllScope);
};
v1.delayedCall = function (delay, onComplete, onCompleteParams, onCompleteScope, useFrames) {
return new com.greensock.TweenMax(onComplete, 0, {'delay': delay, 'onComplete': onComplete, 'onCompleteParams': onCompleteParams, 'onCompleteScope': onCompleteScope, 'immediateRender': false, 'useFrames': useFrames, 'overwrite': 0});
};
v1.getTweensOf = function (target) {
var v4 = com.greensock.TweenLite.getID(target, true);
var v2 = com.greensock.TweenLite.masterList[v4].tweens;
var v3 = [];
if (v2) {
var v1 = v2.length;
while (--v1 > -1) {
if (!v2[v1].gc) {
v3[v3.length] = v2[v1];
}
}
}
return v3;
};
v1.isTweening = function (target) {
var v3 = com.greensock.TweenMax.getTweensOf(target);
var v2 = v3.length;
var v1;
while (--v2 > -1) {
v1 = v3[v2];
if (v1.active || v1.cachedStartTime == v1.timeline.cachedTime && v1.timeline.active) {
return true;
}
}
return false;
};
v1.getAllTweens = function () {
var v5 = com.greensock.TweenLite.masterList;
var v4 = 0;
var v3 = [];
var v2;
var v1;
for (var v6 in v5) {
v2 = v5[v6].tweens;
v1 = v2.length;
while (--v1 > -1) {
if (!v2[v1].gc) {
v3[v4++] = v2[v1];
}
}
}
return v3;
};
v1.killAll = function (complete, tweens, delayedCalls) {
if (tweens == undefined) {
tweens = true;
}
if (delayedCalls == undefined) {
delayedCalls = true;
}
var v2 = com.greensock.TweenMax.getAllTweens();
var v3;
var v1 = v2.length;
while (--v1 > -1) {
v3 = v2[v1].target == v2[v1].vars.onComplete;
if (v3 == delayedCalls || v3 != tweens) {
if (complete == true) {
v2[v1].complete(false, false);
} else {
v2[v1].setEnabled(false, false);
}
}
}
};
v1.killChildTweensOf = function (parent, complete) {
var v3 = com.greensock.TweenMax.getAllTweens();
var v4;
var v1;
var v2 = v3.length;
while (--v2 > -1) {
v4 = v3[v2].target;
if (v4 instanceof MovieClip) {
v1 = v4._parent;
while (v1) {
if (v1 == parent) {
if (complete == true) {
v3[v2].complete(false, false);
} else {
v3[v2].setEnabled(false, false);
}
}
v1 = v1._parent;
}
}
}
};
v1.pauseAll = function (tweens, delayedCalls) {
com.greensock.TweenMax.changePause(true, tweens, delayedCalls);
};
v1.resumeAll = function (tweens, delayedCalls) {
com.greensock.TweenMax.changePause(false, tweens, delayedCalls);
};
v1.changePause = function (pause, tweens, delayedCalls) {
if (tweens == undefined) {
tweens = true;
}
if (delayedCalls == undefined) {
delayedCalls = true;
}
var v2 = com.greensock.TweenMax.getAllTweens();
var v3;
var v1 = v2.length;
while (--v1 > -1) {
v3 = Boolean(v2[v1].target == v2[v1].vars.onComplete);
if (v3 == delayedCalls || v3 != tweens) {
v2[v1].paused = pause;
}
}
};
v2.__get__currentProgress = function () {
return this.cachedTime / this.__get__duration();
};
v2.__set__currentProgress = function (n) {
if (this._cyclesComplete == 0) {
this.setTotalTime(this.__get__duration() * n, false);
} else {
this.setTotalTime(this.__get__duration() * n + this._cyclesComplete * this.cachedDuration, false);
}
return this.__get__currentProgress();
};
v2.__get__totalProgress = function () {
return this.cachedTotalTime / this.__get__totalDuration();
};
v2.__set__totalProgress = function (n) {
this.setTotalTime(this.__get__totalDuration() * n, false);
return this.__get__totalProgress();
};
v2.__get__currentTime = function () {
return this.cachedTime;
};
v2.__set__currentTime = function (n) {
if (this._cyclesComplete == 0) {
} else {
if (this.yoyo && this._cyclesComplete % 2 == 1) {
n = this.__get__duration() - n + this._cyclesComplete * (this.cachedDuration + this._repeatDelay);
} else {
n += this._cyclesComplete * (this.__get__duration() + this._repeatDelay);
}
}
this.setTotalTime(n, false);
return this.__get__currentTime();
};
v2.__get__totalDuration = function () {
if (this.cacheIsDirty) {
this.cachedTotalDuration = (this._repeat == -1) ? 999999999999.0 : this.cachedDuration * (this._repeat + 1) + this._repeatDelay * this._repeat;
this.cacheIsDirty = false;
}
return this.cachedTotalDuration;
};
v2.__set__totalDuration = function (n) {
if (this._repeat == -1) {
return undefined;
}
this.__set__duration((n - this._repeat * this._repeatDelay) / (this._repeat + 1));
return this.__get__totalDuration();
};
v2.__get__timeScale = function () {
return this.cachedTimeScale;
};
v2.__set__timeScale = function (n) {
if (n == 0) {
n = 0.0001;
}
var v3 = (this.cachedPauseTime || this.cachedPauseTime == 0) ? this.cachedPauseTime : this.timeline.cachedTotalTime;
this.cachedStartTime = v3 - (v3 - this.cachedStartTime) * this.cachedTimeScale / n;
this.cachedTimeScale = n;
this.setDirtyCache(false);
return this.__get__timeScale();
};
v2.__get__repeat = function () {
return this._repeat;
};
v2.__set__repeat = function (n) {
this._repeat = n;
this.setDirtyCache(true);
return this.__get__repeat();
};
v2.__get__repeatDelay = function () {
return this._repeatDelay;
};
v2.__set__repeatDelay = function (n) {
this._repeatDelay = n;
this.setDirtyCache(true);
return this.__get__repeatDelay();
};
v1.__get__globalTimeScale = function () {
return (com.greensock.TweenLite.rootTimeline == undefined) ? 1 : com.greensock.TweenLite.rootTimeline.cachedTimeScale;
};
v1.__set__globalTimeScale = function (n) {
if (n == 0) {
n = 0.0001;
}
if (com.greensock.TweenLite.rootTimeline == undefined) {
com.greensock.TweenLite.to({}, 0, {});
}
var v1 = com.greensock.TweenLite.rootTimeline;
var v2 = getTimer() * 0.001;
v1.cachedStartTime = v2 - (v2 - v1.cachedStartTime) * v1.cachedTimeScale / n;
v1 = com.greensock.TweenLite.rootFramesTimeline;
v2 = com.greensock.TweenLite.rootFrame;
v1.cachedStartTime = v2 - (v2 - v1.cachedStartTime) * v1.cachedTimeScale / n;
com.greensock.TweenLite.rootTimeline.cachedTimeScale = n;
com.greensock.TweenLite.rootFramesTimeline.cachedTimeScale = com.greensock.TweenLite.rootTimeline.cachedTimeScale;
return com.greensock.TweenMax.__get__globalTimeScale();
};
v1.version = 11.698;
v1._activatedPlugins = com.greensock.plugins.TweenPlugin.activate([com.greensock.plugins.AutoAlphaPlugin, com.greensock.plugins.EndArrayPlugin, com.greensock.plugins.FramePlugin, com.greensock.plugins.RemoveTintPlugin, com.greensock.plugins.TintPlugin, com.greensock.plugins.VisiblePlugin, com.greensock.plugins.VolumePlugin, com.greensock.plugins.BevelFilterPlugin, com.greensock.plugins.BezierPlugin, com.greensock.plugins.BezierThroughPlugin, com.greensock.plugins.BlurFilterPlugin, com.greensock.plugins.ColorMatrixFilterPlugin, com.greensock.plugins.ColorTransformPlugin, com.greensock.plugins.DropShadowFilterPlugin, com.greensock.plugins.FrameLabelPlugin, com.greensock.plugins.GlowFilterPlugin, com.greensock.plugins.HexColorsPlugin, com.greensock.plugins.RoundPropsPlugin, com.greensock.plugins.ShortRotationPlugin, {}]);
v1._overwriteMode = com.greensock.OverwriteManager.enabled ? com.greensock.OverwriteManager.mode : com.greensock.OverwriteManager.init(2);
v1.killTweensOf = com.greensock.TweenLite.killTweensOf;
v1.killDelayedCallsTo = com.greensock.TweenLite.killTweensOf;
v2.addProperty('currentProgress', v2.__get__currentProgress, v2.__set__currentProgress);
v2.addProperty('currentTime', v2.__get__currentTime, v2.__set__currentTime);
v1.addProperty('globalTimeScale', v1.__get__globalTimeScale, v1.__set__globalTimeScale);
v2.addProperty('repeat', v2.__get__repeat, v2.__set__repeat);
v2.addProperty('repeatDelay', v2.__get__repeatDelay, v2.__set__repeatDelay);
v2.addProperty('timeScale', v2.__get__timeScale, v2.__set__timeScale);
v2.addProperty('totalDuration', v2.__get__totalDuration, v2.__set__totalDuration);
v2.addProperty('totalProgress', v2.__get__totalProgress, v2.__set__totalProgress);
ASSetPropFlags(com.greensock.TweenMax.prototype, null, 1);
}
#endinitclip
}
movieClip 1458 __Packages.com.greensock.easing.Expo {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.easing) {
_global.com.greensock.easing = new Object();
}
if (!_global.com.greensock.easing.Expo) {
var v1 = function () {};
com.greensock.easing.Expo = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d) {
return (t == 0) ? b : c * Math.pow(2, 10 * (t / d - 1)) + b - c * 0.001;
};
v1.easeOut = function (t, b, c, d) {
return (t == d) ? b + c : c * (-Math.pow(2, -10 * t / d) + 1) + b;
};
v1.easeInOut = function (t, b, c, d) {
if (t == 0) {
return b;
}
if (t == d) {
return b + c;
}
t /= d * 0.5;
if (t < 1) {
return c * 0.5 * Math.pow(2, 10 * (t - 1)) + b;
}
return c * 0.5 * (-Math.pow(2, -10 * --t) + 2) + b;
};
ASSetPropFlags(com.greensock.easing.Expo.prototype, null, 1);
}
#endinitclip
}
movieClip 1459 __Packages.com.greensock.easing.Sine {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.easing) {
_global.com.greensock.easing = new Object();
}
if (!_global.com.greensock.easing.Sine) {
var v1 = function () {};
com.greensock.easing.Sine = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d) {
return -c * Math.cos((t / d) * com.greensock.easing.Sine._HALF_PI) + c + b;
};
v1.easeOut = function (t, b, c, d) {
return c * Math.sin((t / d) * com.greensock.easing.Sine._HALF_PI) + b;
};
v1.easeInOut = function (t, b, c, d) {
return -c * 0.5 * (Math.cos(Math.PI * t / d) - 1) + b;
};
v1._HALF_PI = 1.570796326794897;
ASSetPropFlags(com.greensock.easing.Sine.prototype, null, 1);
}
#endinitclip
}
movieClip 1460 __Packages.com.greensock.easing.Quad {
#initclip
if (!_global.com) {
_global.com = new Object();
}
if (!_global.com.greensock) {
_global.com.greensock = new Object();
}
if (!_global.com.greensock.easing) {
_global.com.greensock.easing = new Object();
}
if (!_global.com.greensock.easing.Quad) {
var v1 = function () {};
com.greensock.easing.Quad = v1;
var v2 = v1.prototype;
v1.easeIn = function (t, b, c, d) {
t /= d;
return c * t * t + b;
};
v1.easeOut = function (t, b, c, d) {
t /= d;
return -c * t * (t - 2) + b;
};
v1.easeInOut = function (t, b, c, d) {
t /= d * 0.5;
if (t < 1) {
return c * 0.5 * t * t + b;
}
return -c * 0.5 * (--t * (t - 2) - 1) + b;
};
ASSetPropFlags(com.greensock.easing.Quad.prototype, null, 1);
}
#endinitclip
}
frame 2 {
stop();
}
movieClip 100 {
frame 1 {
onRelease = function () {
getURL('http://armor.ag/MoreGames', '_blank');
};
}
}
movieClip 102 {
frame 1 {
onRelease = function () {
getURL('http://armor.ag/MoreGames', '_blank');
};
}
}
movieClip 107 {
}
movieClip 113 {
}
movieClip 116 {
frame 1 {
_root.stop();
gotoAndPlay(2);
}
frame 225 {
_root.nextFrame();
}
}
frame 3 {
function sitelock() {
_root._visible = false;
if (urlString.indexOf('armorgames.com') > -1) {
_root._visible = true;
}
}
stop();
var snd_begin = new Sound(_root);
snd_begin.attachSound('s_begin');
var snd_block = new Sound(_root);
snd_block.attachSound('s_block');
var snd_heal = new Sound(_root);
snd_heal.attachSound('s_heal');
var snd_loose = new Sound(_root);
snd_loose.attachSound('s_loose');
var snd_main = new Sound(_root);
snd_main.attachSound('s_main');
var snd_udar1 = new Sound(_root);
snd_udar1.attachSound('s_udar1');
var snd_udar2 = new Sound(_root);
snd_udar2.attachSound('s_udar2');
var snd_win = new Sound(_root);
snd_win.attachSound('s_win');
var snd_bat = new Sound(_root);
snd_bat.attachSound('s_bat');
var crntsnd = '';
_global.playsfx = function (namestr) {
switch (namestr) {
case 'begin':
snd_bat.stop();
snd_main.stop();
snd_begin.start();
break;
case 'block':
snd_block.start();
break;
case 'heal':
snd_heal.start();
break;
case 'loose':
snd_bat.stop();
snd_main.stop();
snd_loose.start();
break;
case 'udar':
if (Math.random() > 0.5) {
snd_udar1.start();
} else {
snd_udar2.start();
}
break;
case 'win':
snd_bat.stop();
snd_main.stop();
snd_win.start();
break;
case 'bet':
snd_bat.stop();
snd_main.stop();
snd_bat.start();
snd_bat.onSoundComplete = function () {
snd_bat.start();
};
crntsnd = 'bet';
break;
case 'main':
if (crntsnd != 'main') {
snd_bat.stop();
snd_main.stop();
snd_main.start();
snd_main.onSoundComplete = function () {
snd_main.start();
};
crntsnd = 'main';
}
}
};
_global.setSound = function (no) {
var v1 = new Sound();
v1.setVolume(no);
};
var urlString = _root._url;
sitelock();
_global.onbox10 = false;
}
movieClip 120 {
}
movieClip 125 {
frame 1 {
stop();
}
}
movieClip 127 {
}
movieClip 129 {
}
movieClip 131 {
}
movieClip 133 {
}
movieClip 135 {
}
movieClip 138 {
frame 14 {
stop();
}
}
movieClip 141 {
}
movieClip 143 {
}
movieClip 145 {
}
movieClip 147 {
}
movieClip 149 {
}
movieClip 151 {
}
movieClip 153 {
}
movieClip 155 {
}
movieClip 157 {
}
movieClip 159 {
}
movieClip 160 {
frame 155 {
stop();
}
}
movieClip 162 {
}
movieClip 168 {
}
movieClip 169 {
}
movieClip 170 {
}
movieClip 171 {
}
movieClip 174 {
}
movieClip 175 {
}
movieClip 177 {
}
movieClip 179 {
}
movieClip 181 {
}
movieClip 183 {
}
movieClip 185 {
}
movieClip 192 {
}
movieClip 193 {
frame 1 {
skp_bt.onRelease = function () {
gotoAndStop('fin');
};
}
frame 242 {
stop();
_parent.gotoAndStop('cover');
}
}
movieClip 195 {
frame 1 {
onRelease = function () {
if (this._alpha == 100) {
this._alpha = 50;
_global.setSound(0);
} else {
this._alpha = 100;
_global.setSound(100);
}
};
}
}
movieClip 206 {
frame 1 {
stop();
}
}
frame 4 {
function writeSO() {
mySO.data.currentLevel = currentLevel;
mySO.data.upg = upg;
mySO.flush();
}
function showTooltip(no) {
var v5 = upg[no - 1].name_txt;
var v4 = '';
switch (upg[no - 1].addtype) {
case 'attack':
v4 = 'This gene improves your Attack! +(' + upg[no - 1].add + '-' + (upg[no - 1].add + upg[no - 1].addrandom) + ')';
break;
case 'def':
v4 = 'This gene improves your Defence! +(' + upg[no - 1].add * 100 + '%)';
break;
case 'acc':
v4 = 'This gene improves your Dexterity! +(' + upg[no - 1].add + '-' + (upg[no - 1].add + upg[no - 1].addrandom) + ')';
break;
case 'power':
v4 = 'This gene improves your Healing Power! +(' + upg[no - 1].add + '-' + (upg[no - 1].add + upg[no - 1].addrandom) + ')';
break;
case 'hp':
v4 = 'This gene improves your HP amount! +(' + upg[no - 1].add + '-' + (upg[no - 1].add + upg[no - 1].addrandom) + ')';
}
if (!_global.onbox10 && no - 1 > 25) {
v4 = 'Only on box10.com';
}
tooltip_mc.head_txt.text = v5;
tooltip_mc.body_txt.text = v4;
tooltip_mc.head_txt.autoSize = true;
tooltip_mc.body_txt.autoSize = true;
tooltip_mc.bg_mc._width = 200;
tooltip_mc.head_txt._width = 190;
tooltip_mc.body_txt._width = 190;
var v6 = tooltip_mc.head_txt._height + tooltip_mc.body_txt._height + 10;
var v7 = tooltip_mc.body_txt._width + 10;
tooltip_mc.bg_mc._height = v6;
tooltip_mc._x = -tooltip_mc._width;
tooltip_mc._y = -tooltip_mc._height;
tooltip_mc.onEnterFrame = function () {
this.tempX = pathToRoot._xmouse + paddingX;
this.tempY = pathToRoot._ymouse + paddingY;
if (this.tempX + tooltip_mc._width > gameWidth) {
this._x = this.tempX - tooltip_mc._width;
} else {
this._x = this.tempX;
}
if (this.tempY + tooltip_mc._height > gameHeight) {
this._y = this.tempY - tooltip_mc._height - paddingY;
} else {
this._y = this.tempY;
}
};
}
function hideTooltip() {
delete tooltip_mc.onEnterFrame;
tooltip_mc._x = 1000;
}
stop();
var tut = false;
var arena_no = 1;
var upg = [];
upg.push({'no': 0, 'enabled': true, 'type': 'no', 'typeno': 0, 'addtype': 'attack', 'add': 10, 'addrandom': 3, 'prel_txt': ['Strongy ', 'Strongling '], 'name_txt': 'Strength'});
upg.push({'no': 1, 'enabled': true, 'type': 'no', 'typeno': 0, 'addtype': 'def', 'add': 0.1, 'addrandom': 0, 'prel_txt': ['Biggy ', 'Bigling'], 'name_txt': 'Defence'});
upg.push({'no': 2, 'enabled': false, 'type': 'no', 'typeno': 0, 'addtype': 'acc', 'add': 0.2, 'addrandom': 0, 'prel_txt': ['Eagle ', 'Mr. '], 'name_txt': 'Dexterity'});
upg.push({'no': 3, 'enabled': true, 'type': 'no', 'typeno': 0, 'addtype': 'power', 'add': 35, 'addrandom': 15, 'prel_txt': ['Healling ', 'Healkin '], 'name_txt': 'Healer'});
upg.push({'no': 4, 'enabled': false, 'type': 'no', 'typeno': 0, 'addtype': 'hp', 'add': 80, 'addrandom': 30, 'prel_txt': ['Fatty ', 'Mr. '], 'name_txt': 'Massive'});
upg.push({'no': 5, 'enabled': true, 'type': 'arms', 'typeno': 2, 'addtype': 'attack', 'add': 5, 'addrandom': 3, 'prel_txt': ['Clutchling '], 'name_txt': 'Clutches'});
upg.push({'no': 6, 'enabled': false, 'type': 'arms', 'typeno': 3, 'addtype': 'attack', 'add': 7, 'addrandom': 3, 'prel_txt': ['Armroo ', ''], 'name_txt': 'Spider claws'});
upg.push({'no': 7, 'enabled': false, 'type': 'arms', 'typeno': 4, 'addtype': 'attack', 'add': 10, 'addrandom': 3, 'prel_txt': ['Tenty ', '', ''], 'name_txt': 'Tentacles'});
upg.push({'no': 8, 'enabled': true, 'type': 'legs', 'typeno': 2, 'addtype': 'acc', 'add': 0.1, 'addrandom': 0, 'prel_txt': ['Muskli ', '', ''], 'name_txt': 'Muscules'});
upg.push({'no': 9, 'enabled': false, 'type': 'legs', 'typeno': 3, 'addtype': 'acc', 'add': 0.2, 'addrandom': 0, 'prel_txt': ['Clawly', '', ''], 'name_txt': 'Spider claws'});
upg.push({'no': 10, 'enabled': false, 'type': 'legs', 'typeno': 4, 'addtype': 'acc', 'add': 0.3, 'addrandom': 0, 'prel_txt': ['Godzilla '], 'name_txt': 'Godzilla legs'});
upg.push({'no': 11, 'enabled': false, 'type': 'head', 'typeno': 2, 'addtype': 'attack', 'add': 5, 'addrandom': 3, 'prel_txt': ['Jawky ', '', ''], 'name_txt': 'Jaws'});
upg.push({'no': 12, 'enabled': false, 'type': 'head', 'typeno': 3, 'addtype': 'attack', 'add': 10, 'addrandom': 4, 'prel_txt': ['Croco'], 'name_txt': 'Crocodile\'s jaws'});
upg.push({'no': 13, 'enabled': false, 'type': 'head', 'typeno': 4, 'addtype': 'attack', 'add': 15, 'addrandom': 5, 'prel_txt': ['Jawsy ', ''], 'name_txt': 'Spider\'s jaws'});
upg.push({'no': 14, 'enabled': false, 'type': 'onhead', 'typeno': 2, 'addtype': 'power', 'add': 35, 'addrandom': 3, 'prel_txt': ['Uni'], 'name_txt': 'Unicorns\'s horn'});
upg.push({'no': 15, 'enabled': false, 'type': 'onhead', 'typeno': 3, 'addtype': 'power', 'add': 40, 'addrandom': 10, 'prel_txt': [''], 'name_txt': 'Horns'});
upg.push({'no': 16, 'enabled': false, 'type': 'onhead', 'typeno': 4, 'addtype': 'power', 'add': 45, 'addrandom': 15, 'prel_txt': ['Mace ', ''], 'name_txt': 'Mace horn'});
upg.push({'no': 17, 'enabled': false, 'type': 'body', 'typeno': 2, 'addtype': 'hp', 'add': 60, 'addrandom': 10, 'prel_txt': [''], 'name_txt': 'Bones'});
upg.push({'no': 18, 'enabled': false, 'type': 'body', 'typeno': 3, 'addtype': 'hp', 'add': 70, 'addrandom': 20, 'prel_txt': ['', '', ''], 'name_txt': 'Stone skin'});
upg.push({'no': 19, 'enabled': false, 'type': 'body', 'typeno': 4, 'addtype': 'hp', 'add': 80, 'addrandom': 30, 'prel_txt': [''], 'name_txt': 'Dino skin'});
upg.push({'no': 20, 'enabled': false, 'type': 'onbody', 'typeno': 2, 'addtype': 'def', 'add': 0.1, 'addrandom': 0, 'prel_txt': [''], 'name_txt': 'Wings'});
upg.push({'no': 21, 'enabled': false, 'type': 'onbody', 'typeno': 3, 'addtype': 'def', 'add': 0.15, 'addrandom': 0, 'prel_txt': ['', '', ''], 'name_txt': 'Thorns'});
upg.push({'no': 22, 'enabled': false, 'type': 'onbody', 'typeno': 4, 'addtype': 'def', 'add': 0.2, 'addrandom': 0, 'prel_txt': ['', '', ''], 'name_txt': 'Needles'});
upg.push({'no': 23, 'enabled': false, 'type': 'onback', 'typeno': 2, 'addtype': 'attack', 'add': 10, 'addrandom': 10, 'prel_txt': [''], 'name_txt': 'Mucus secrete'});
upg.push({'no': 24, 'enabled': false, 'type': 'onback', 'typeno': 3, 'addtype': 'attack', 'add': 10, 'addrandom': 10, 'prel_txt': [''], 'name_txt': 'Fire secrete'});
upg.push({'no': 25, 'enabled': false, 'type': 'onback', 'typeno': 4, 'addtype': 'attack', 'add': 10, 'addrandom': 10, 'prel_txt': [''], 'name_txt': 'Cobweb secrete'});
var currentLevel = 1;
var selectedLevel = 0;
var mySO = SharedObject.getLocal('monsterfightcupbox10flashgame');
if (!mySO.data.currentLevel) {
writeSO();
} else {
currentLevel = mySO.data.currentLevel;
upg = mySO.data.upg;
}
var open_slots = 3;
var creature_ai_1 = new Object();
creature_ai_1.head = 1;
creature_ai_1.body = 1;
creature_ai_1.arms = 1;
creature_ai_1.legs = 1;
creature_ai_1.onbody = 1;
creature_ai_1.onback = 1;
creature_ai_1.onhead = 1;
creature_ai_1.name_txt = 'Dober Gun';
creature_ai_1.attack = 20;
creature_ai_1.def = 0;
creature_ai_1.acc = 0.7;
creature_ai_1.power = 10;
creature_ai_1.hpmax = 180;
creature_ai_1.crit = 0.1;
creature_ai_1.stun = 0.1;
creature_ai_1.adddef = 1;
var creature_ai_2 = new Object();
creature_ai_2.head = 2;
creature_ai_2.body = 2;
creature_ai_2.arms = 2;
creature_ai_2.legs = 2;
creature_ai_2.onbody = 1;
creature_ai_2.onback = 1;
creature_ai_2.onhead = 1;
creature_ai_2.mc = 2;
creature_ai_2.name_txt = 'Bones Monster';
creature_ai_2.attack = 20;
creature_ai_2.def = 0;
creature_ai_2.acc = 0.7;
creature_ai_2.power = 10;
creature_ai_2.hpmax = 200;
creature_ai_2.crit = 0.1;
creature_ai_2.stun = 0.1;
creature_ai_2.adddef = 1;
var creature_ai_3 = new Object();
creature_ai_3.head = 3;
creature_ai_3.body = 3;
creature_ai_3.arms = 3;
creature_ai_3.legs = 3;
creature_ai_3.onbody = 1;
creature_ai_3.onback = 1;
creature_ai_3.onhead = 1;
creature_ai_3.mc = 3;
creature_ai_3.name_txt = 'Mad Slimy';
creature_ai_3.attack = 25;
creature_ai_3.def = 0;
creature_ai_3.acc = 0.7;
creature_ai_3.power = 15;
creature_ai_3.hpmax = 300;
creature_ai_3.crit = 0.2;
creature_ai_3.stun = 0.2;
creature_ai_3.adddef = 1;
var creature_ai_4 = new Object();
creature_ai_4.head = 1;
creature_ai_4.body = 1;
creature_ai_4.arms = 1;
creature_ai_4.legs = 1;
creature_ai_4.onbody = 1;
creature_ai_4.onback = 1;
creature_ai_4.onhead = 1;
creature_ai_4.mc = 4;
creature_ai_4.name_txt = 'Rahnodog';
creature_ai_4.attack = 25;
creature_ai_4.def = 0.1;
creature_ai_4.acc = 0.7;
creature_ai_4.power = 40;
creature_ai_4.hpmax = 250;
creature_ai_4.crit = 0.1;
creature_ai_4.stun = 0.2;
creature_ai_4.adddef = 1;
var creature_ai_5 = new Object();
creature_ai_5.head = 2;
creature_ai_5.body = 2;
creature_ai_5.arms = 2;
creature_ai_5.legs = 2;
creature_ai_5.onbody = 1;
creature_ai_5.onback = 1;
creature_ai_5.onhead = 1;
creature_ai_5.mc = 5;
creature_ai_5.name_txt = 'Asterix';
creature_ai_5.attack = 25;
creature_ai_5.def = 0.2;
creature_ai_5.acc = 0.7;
creature_ai_5.power = 40;
creature_ai_5.hpmax = 300;
creature_ai_5.crit = 0.1;
creature_ai_5.stun = 0.2;
creature_ai_5.adddef = 1;
var creature_ai_6 = new Object();
creature_ai_6.head = 3;
creature_ai_6.body = 3;
creature_ai_6.arms = 3;
creature_ai_6.legs = 3;
creature_ai_6.onbody = 1;
creature_ai_3.onback = 1;
creature_ai_3.onhead = 1;
creature_ai_6.mc = 6;
creature_ai_6.name_txt = 'Gigant Spider';
creature_ai_6.attack = 30;
creature_ai_6.def = 0.3;
creature_ai_6.acc = 0.7;
creature_ai_6.power = 30;
creature_ai_6.hpmax = 400;
creature_ai_6.crit = 0.2;
creature_ai_6.stun = 0.2;
creature_ai_6.adddef = 1;
var creature_ai_7 = new Object();
creature_ai_7.head = 1;
creature_ai_7.body = 1;
creature_ai_7.arms = 1;
creature_ai_7.legs = 1;
creature_ai_7.onbody = 1;
creature_ai_7.onback = 1;
creature_ai_7.onhead = 1;
creature_ai_7.mc = 7;
creature_ai_7.name_txt = 'Krokodog';
creature_ai_7.attack = 30;
creature_ai_7.def = 0.2;
creature_ai_7.acc = 0.7;
creature_ai_7.power = 60;
creature_ai_7.hpmax = 400;
creature_ai_7.crit = 0.1;
creature_ai_7.stun = 0.2;
creature_ai_7.adddef = 1;
var creature_ai_8 = new Object();
creature_ai_8.head = 2;
creature_ai_8.body = 2;
creature_ai_8.arms = 2;
creature_ai_8.legs = 2;
creature_ai_8.onbody = 1;
creature_ai_8.onback = 1;
creature_ai_8.onhead = 1;
creature_ai_8.mc = 8;
creature_ai_8.name_txt = 'Krokus';
creature_ai_8.attack = 30;
creature_ai_8.def = 0.25;
creature_ai_8.acc = 0.7;
creature_ai_8.power = 50;
creature_ai_8.hpmax = 400;
creature_ai_8.crit = 0.1;
creature_ai_8.stun = 0.2;
creature_ai_8.adddef = 1;
var creature_ai_9 = new Object();
creature_ai_9.head = 3;
creature_ai_9.body = 3;
creature_ai_9.arms = 3;
creature_ai_9.legs = 3;
creature_ai_9.onbody = 1;
creature_ai_9.onback = 1;
creature_ai_9.onhead = 1;
creature_ai_9.mc = 1;
creature_ai_9.name_txt = 'Krokker';
creature_ai_9.attack = 40;
creature_ai_9.def = 0.3;
creature_ai_9.acc = 0.7;
creature_ai_9.power = 50;
creature_ai_9.hpmax = 500;
creature_ai_9.crit = 0.1;
creature_ai_9.stun = 0.2;
creature_ai_9.adddef = 1;
var creature_ai_10 = new Object();
creature_ai_10.head = 1;
creature_ai_10.body = 1;
creature_ai_10.arms = 1;
creature_ai_10.legs = 1;
creature_ai_10.onbody = 1;
creature_ai_10.onback = 1;
creature_ai_10.onhead = 1;
creature_ai_10.mc = 1;
creature_ai_10.name_txt = 'Leo';
creature_ai_10.attack = 40;
creature_ai_10.def = 0.3;
creature_ai_10.acc = 0.7;
creature_ai_10.power = 50;
creature_ai_10.hpmax = 400;
creature_ai_10.crit = 0.1;
creature_ai_10.stun = 0.2;
creature_ai_10.adddef = 1;
var creature_ai_11 = new Object();
creature_ai_11.head = 2;
creature_ai_11.body = 2;
creature_ai_11.arms = 2;
creature_ai_11.legs = 2;
creature_ai_11.onbody = 1;
creature_ai_11.onback = 1;
creature_ai_11.onhead = 1;
creature_ai_11.mc = 1;
creature_ai_11.name_txt = 'Killeo';
creature_ai_11.attack = 40;
creature_ai_11.def = 0.33;
creature_ai_11.acc = 0.7;
creature_ai_11.power = 60;
creature_ai_11.hpmax = 300;
creature_ai_11.crit = 0.1;
creature_ai_11.stun = 0.2;
creature_ai_11.adddef = 1;
var creature_ai_12 = new Object();
creature_ai_12.head = 3;
creature_ai_12.body = 3;
creature_ai_12.arms = 3;
creature_ai_12.legs = 3;
creature_ai_12.onbody = 1;
creature_ai_12.onback = 1;
creature_ai_12.onhead = 1;
creature_ai_12.mc = 1;
creature_ai_12.name_txt = 'Firecorp';
creature_ai_12.attack = 45;
creature_ai_12.def = 0.4;
creature_ai_12.acc = 0.7;
creature_ai_12.power = 50;
creature_ai_12.hpmax = 500;
creature_ai_12.crit = 0.1;
creature_ai_12.stun = 0.2;
creature_ai_12.adddef = 1;
var creature_ai_13 = new Object();
creature_ai_13.head = 1;
creature_ai_13.body = 1;
creature_ai_13.arms = 1;
creature_ai_13.legs = 1;
creature_ai_13.onbody = 1;
creature_ai_13.onback = 1;
creature_ai_13.onhead = 1;
creature_ai_13.mc = 1;
creature_ai_13.name_txt = 'Mokk';
creature_ai_13.attack = 55;
creature_ai_13.def = 0.55;
creature_ai_13.acc = 0.7;
creature_ai_13.power = 90;
creature_ai_13.hpmax = 500;
creature_ai_13.crit = 0.1;
creature_ai_13.stun = 0.2;
creature_ai_13.adddef = 1;
var creature_ai_14 = new Object();
creature_ai_14.head = 2;
creature_ai_14.body = 2;
creature_ai_14.arms = 2;
creature_ai_14.legs = 2;
creature_ai_14.onbody = 1;
creature_ai_14.onback = 1;
creature_ai_14.onhead = 1;
creature_ai_14.mc = 1;
creature_ai_14.name_txt = 'Slugger';
creature_ai_14.attack = 65;
creature_ai_14.def = 0.55;
creature_ai_14.acc = 0.7;
creature_ai_14.power = 90;
creature_ai_14.hpmax = 500;
creature_ai_14.crit = 0.2;
creature_ai_14.stun = 0.2;
creature_ai_14.adddef = 1;
var creature_ai_15 = new Object();
creature_ai_15.head = 3;
creature_ai_15.body = 3;
creature_ai_15.arms = 3;
creature_ai_15.legs = 3;
creature_ai_15.onbody = 1;
creature_ai_15.onback = 1;
creature_ai_15.onhead = 1;
creature_ai_15.mc = 1;
creature_ai_15.name_txt = 'Stone Slug';
creature_ai_15.attack = 75;
creature_ai_15.def = 0.65;
creature_ai_15.acc = 0.7;
creature_ai_15.power = 50;
creature_ai_15.hpmax = 600;
creature_ai_15.crit = 0.2;
creature_ai_15.stun = 0.2;
creature_ai_15.adddef = 1;
var creature_ai_16 = new Object();
creature_ai_16.head = 1;
creature_ai_16.body = 1;
creature_ai_16.arms = 1;
creature_ai_16.legs = 1;
creature_ai_16.onbody = 1;
creature_ai_16.onback = 1;
creature_ai_16.onhead = 1;
creature_ai_16.mc = 1;
creature_ai_16.name_txt = 'Godzillator';
creature_ai_16.attack = 85;
creature_ai_16.def = 0.85;
creature_ai_16.acc = 0.8;
creature_ai_16.power = 90;
creature_ai_16.hpmax = 900;
creature_ai_16.crit = 0.2;
creature_ai_16.stun = 0.2;
creature_ai_16.adddef = 1;
var pathToRoot = _root;
var tooltip_mc;
var paddingX = 0;
var paddingY = 20;
var gameWidth = 640;
var gameHeight = 480;
_global.playsfx('main');
intro_mc.gotoAndStop('fin');
cover_mc._y = 100;
com.greensock.TweenLite.to(cover_mc, 0.7, {'_y': 0, 'ease': com.greensock.easing.Back.easeOut});
}
movieClip 209 {
}
movieClip 211 {
}
movieClip 219 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 227 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 229 {
}
movieClip 236 {
frame 1 {
stop();
onRelease = function () {
getURL('http://armor.ag/MoreGames', '_blank');
};
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 244 {
}
movieClip 245 {
frame 1 {
var thi = this;
closeMc.onRelease = function () {
thi._visible = false;
};
}
}
movieClip 246 {
frame 1 {
a_bt.onRelease = function () {
ab._visible = true;
};
mg_bt.onRelease = function () {};
pl_bt.onRelease = function () {
_root.gotoAndStop('map');
};
ab._visible = false;
}
}
frame 5 {
stop();
_global.playsfx('main');
writeSO();
}
movieClip 251 {
frame 1 {
stop();
}
}
movieClip 255 {
frame 1 {
stop();
}
}
movieClip 259 {
frame 1 {
stop();
}
}
movieClip 263 {
frame 1 {
stop();
}
}
movieClip 267 {
frame 1 {
stop();
}
}
movieClip 268 {
}
movieClip 274 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 279 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 284 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 289 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 294 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 299 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 304 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 306 {
}
movieClip 309 {
}
movieClip 313 {
}
movieClip 314 {
}
movieClip 316 {
frame 1 {
stop();
this.hitArea = hitMc;
}
}
movieClip 319 {
}
movieClip 320 {
}
movieClip 321 {
frame 1 {
stop();
this.hitArea = hitMc;
}
}
movieClip 322 {
}
movieClip 333 {
}
movieClip 335 {
}
movieClip 336 {
frame 1 {
function selectLevel(no) {
var v2 = 1;
while (v2 < 17) {
thi['q' + v2].enabled = false;
++v2;
}
_root.selectedLevel = no;
com.greensock.TweenLite.to(thi, 1.5, {'_xscale': 150, '_yscale': 150, '_alpha': 20, 'ease': com.greensock.easing.Strong.easeIn, 'onComplete': function () {
_root.gotoAndStop('lab');
}});
}
stop();
var thi = this;
thi._yscale = 150;
thi._xscale = 150;
com.greensock.TweenLite.to(thi, 2, {'_xscale': 100, '_yscale': 100});
com.greensock.TweenLite.to(thi.m6, 1, {'delay': 1, '_xscale': 70, '_yscale': 70, '_y': -185, 'ease': com.greensock.easing.Back.easeIn, 'onComplete': function () {
if (_root.currentLevel <= 16) {
m6.filters = mtest.filters;
cupMc.swapDepths(102);
} else {
thi.bb6.gotoAndStop(2);
}
}});
var i = 1;
while (i < 17) {
thi['q' + i].gotoAndStop(1);
thi['q' + i].no = i;
if (_root.currentLevel >= i) {
thi['q' + i].gotoAndStop(3);
thi['q' + i].onRelease = function () {
selectLevel(this.no);
};
}
++i;
}
var i = 1;
while (i < 6) {
if (_root.currentLevel > i * 3) {
thi['bb' + i].gotoAndStop(2);
thi['m' + i].filters = null;
earth_mc['q' + i].gotoAndStop(2);
}
++i;
}
thi['q' + _root.currentLevel].gotoAndStop(2);
thi['q' + _root.currentLevel].swapDepths(100);
m6.swapDepths(101);
tut._visible = false;
com.greensock.TweenLite.delayedCall(7, function () {
tut._xscale = 150;
tut._alpha = 0;
tut._visible = true;
com.greensock.TweenLite.to(tut, 1, {'_xscale': 100, '_alpha': 100});
});
a_bt.onRelease = function () {
_root.gotoAndStop('cover');
};
}
}
frame 6 {
function newCreature(obj) {
obj.head = 1;
obj.onhead = 1;
obj.body = 1;
obj.onbody = 1;
obj.onback = 1;
obj.arms = 1;
obj.legs = 1;
obj.box10 = 1;
obj.name_txt = '';
obj.attack = 0;
obj.def = 0;
obj.acc = 0;
obj.power = 0;
obj.hp = 0;
obj.hpmax = 0;
obj.crit = 0.1;
obj.stun = 0.2;
obj.adddef = 1;
}
function doCreature() {
creature.head = creatureTMP.head;
creature.onhead = creatureTMP.onhead;
creature.body = creatureTMP.body;
creature.onbody = creatureTMP.onbody;
creature.onback = creatureTMP.onback;
creature.arms = creatureTMP.arms;
creature.legs = creatureTMP.legs;
creature.box10 = creatureTMP.box10;
creature.name_txt = creatureTMP.name_txt;
creature.attack = creatureTMP.attack;
creature.def = creatureTMP.def;
creature.acc = creatureTMP.acc;
creature.power = creatureTMP.power;
creature.hp = creatureTMP.hp;
creature.hpmax = creatureTMP.hpmax;
creature.crit = creatureTMP.crit;
creature.stun = creatureTMP.stun;
creature.adddef = creatureTMP.adddef;
try {
lab_mc.enablebtn();
}
}
stop();
_global.playsfx('main');
arena_no = Math.floor(Math.random() * 3 + 1);
trace(arena_no);
var current_ai_creature = _root['creature_ai_' + _root.selectedLevel];
var creature = new Object();
var creatureTMP = new Object();
newCreature(creature);
newCreature(creatureTMP);
}
movieClip 341 {
}
movieClip 342 {
}
movieClip 348 {
}
movieClip 350 {
}
movieClip 351 {
}
movieClip 352 {
}
movieClip 353 {
}
movieClip 354 {
}
movieClip 355 {
frame 1 {
stop();
}
frame 106 {
gotoAndPlay(2);
}
}
movieClip 357 {
}
movieClip 359 {
}
movieClip 361 {
}
movieClip 365 {
}
movieClip 369 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 374 {
frame 1 {
stop();
}
}
movieClip 376 {
frame 1 {
stop();
}
}
movieClip 378 {
}
movieClip 380 {
}
movieClip 388 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 389 {
}
movieClip 396 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 400 {
frame 1 {
stop();
onRelease = function () {
getURL('http://armor.ag/MoreGames', '_blank');
};
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 407 {
}
movieClip 411 {
}
movieClip 416 {
}
movieClip 423 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 435 {
}
movieClip 436 {
}
movieClip 438 {
}
movieClip 440 {
}
movieClip 443 {
}
movieClip 445 {
}
movieClip 447 {
}
movieClip 449 {
}
movieClip 450 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 452 {
}
movieClip 454 {
}
movieClip 457 {
}
movieClip 459 {
}
movieClip 461 {
}
movieClip 463 {
}
movieClip 465 {
}
movieClip 466 {
}
movieClip 468 {
}
movieClip 469 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 472 {
}
movieClip 473 {
}
movieClip 475 {
}
movieClip 477 {
}
movieClip 479 {
}
movieClip 480 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 483 {
}
movieClip 485 {
}
movieClip 487 {
}
movieClip 488 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 490 {
}
movieClip 492 {
}
movieClip 494 {
}
movieClip 495 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 497 {
}
movieClip 499 {
}
movieClip 502 {
}
movieClip 504 {
}
movieClip 511 {
}
movieClip 512 {
}
movieClip 514 {
}
movieClip 515 {
frame 12 {
_parent.gotoAndStop(1);
}
}
movieClip 516 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 518 {
}
movieClip 521 {
}
movieClip 522 {
}
movieClip 524 {
}
movieClip 535 {
}
movieClip 536 {
}
movieClip 537 {
}
movieClip 539 {
}
movieClip 540 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 541 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 543 {
}
movieClip 546 {
}
movieClip 553 {
}
movieClip 554 {
}
movieClip 557 {
}
movieClip 559 {
frame 17 {
_parent.gotoAndStop(1);
}
}
movieClip 560 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 562 {
}
movieClip 564 {
}
movieClip 566 {
}
movieClip 572 {
}
movieClip 573 {
}
movieClip 575 {
}
movieClip 576 {
frame 12 {
_parent.gotoAndStop(1);
}
}
movieClip 577 {
frame 1 {
stop();
}
}
movieClip 578 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 580 {
}
movieClip 582 {
}
movieClip 584 {
}
movieClip 585 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 586 {
}
movieClip 587 {
}
movieClip 589 {
}
movieClip 615 {
}
movieClip 616 {
}
movieClip 620 {
}
movieClip 622 {
}
movieClip 623 {
}
movieClip 625 {
}
movieClip 626 {
}
movieClip 627 {
}
movieClip 628 {
}
movieClip 629 {
}
movieClip 630 {
}
movieClip 632 {
}
movieClip 633 {
}
movieClip 651 {
}
movieClip 652 {
}
movieClip 653 {
frame 1 {
stop();
}
}
movieClip 654 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
}
movieClip 655 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 656 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 657 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 658 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 659 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 660 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 40 {
}
}
movieClip 661 {
frame 1 {
arm.gotoAndStop(_root.creature.arms);
arm1.gotoAndStop(_root.creature.arms);
leg.gotoAndStop(_root.creature.legs);
leg1.gotoAndStop(_root.creature.legs);
head.gotoAndStop(_root.creature.head);
onHead.gotoAndStop(_root.creature.onhead);
body.gotoAndStop(_root.creature.body);
onBody.gotoAndStop(_root.creature.onbody);
onBack.gotoAndStop(_root.creature.onback);
box10.gotoAndStop(_root.creature.box10);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 662 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 664 {
}
movieClip 666 {
}
movieClip 668 {
}
movieClip 672 {
}
movieClip 675 {
frame 1 {
stop();
}
frame 91 {
stop();
_parent._parent._parent.enablebtn();
}
}
movieClip 676 {
frame 1 {
stop();
}
frame 50 {
_root.doCreature();
_parent._parent.char.gotoAndStop('blank');
_parent._parent.char.gotoAndStop('idle');
}
}
movieClip 677 {
frame 1 {
stop();
}
}
movieClip 678 {
}
movieClip 680 {
}
movieClip 682 {
}
movieClip 684 {
}
movieClip 686 {
}
movieClip 688 {
}
movieClip 690 {
}
movieClip 692 {
}
movieClip 694 {
}
movieClip 716 {
frame 1 {
stop();
}
}
movieClip 721 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 725 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 726 {
frame 1 {
function prepare() {
skp_bt.txt.text = 'SKIP';
skp2_bt._visible = false;
a1._alpha = 0;
a2._alpha = 0;
a3._alpha = 0;
s2_1._alpha = 100;
s2_2._alpha = 100;
s1_1._alpha = 100;
s1_2._alpha = 100;
s1_3._alpha = 100;
s3_1._alpha = 0;
s3_b._alpha = 0;
it2._alpha = 0;
it3._alpha = 0;
it1._alpha = 100;
it1._x = it1.x;
it1._y = it1.y;
}
function beginTut() {
prepare();
com.greensock.TweenLite.delayedCall(1, step1);
}
function step1() {
com.greensock.TweenLite.to(a1, 0.5, {'_alpha': 100});
com.greensock.TweenLite.to(it1, 2, {'delay': 0.5, '_x': 315, '_y': 185});
com.greensock.TweenLite.delayedCall(4, step2);
}
function step2() {
s1_1._alpha = 0;
s1_2._alpha = 0;
com.greensock.TweenLite.to(a2, 0.5, {'_alpha': 100});
com.greensock.TweenLite.to(it2, 0.5, {'delay': 0.5, '_alpha': 100});
com.greensock.TweenLite.to(it3, 0.5, {'delay': 0.5, '_alpha': 100});
com.greensock.TweenLite.delayedCall(3, step3);
}
function step3() {
com.greensock.TweenLite.to(a3, 0.5, {'_alpha': 100});
com.greensock.TweenLite.to(s3_1, 0.5, {'delay': 0.5, '_alpha': 100});
com.greensock.TweenLite.to(s3_b, 0.5, {'delay': 0.5, '_alpha': 100});
com.greensock.TweenLite.to(s2_1, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(s2_2, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(s1_3, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(it1, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(it2, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(it3, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.delayedCall(3, step4);
}
function step4() {
com.greensock.TweenLite.to(s3_1, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.to(s3_b, 0.5, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenLite.delayedCall(0.3, function () {
skp_bt.txt.text = 'PLAY';
skp2_bt._visible = true;
});
}
stop();
it1.gotoAndStop(6);
it2.gotoAndStop(2);
it1.x = it1._x;
it1.y = it1._y;
var thi = this;
prepare();
bg.useHandCursor = false;
bg.onRelease = function () {};
skp_bt.onRelease = function () {
thi._visible = false;
thi.gotoAndStop(2);
};
skp2_bt.onRelease = function () {
beginTut();
};
}
}
movieClip 729 {
}
movieClip 730 {
frame 1 {
function dragItem(_item) {
_root.hideTooltip();
if (_item.slot != null) {
_item.slot.it = null;
}
++uniqueItemId;
_item.swapDepths(uniqueItemId);
_item.nowX = _item._x;
_item.nowY = _item._y;
_item.startDrag(true);
_item.onMouseMove = updateDrag;
}
function dropItem(_item) {
++uniqueItemId;
ttt.swapDepths(uniqueItemId);
_item.stopDrag();
delete _item.onMouseMove;
var ok = false;
var i = 0;
while (i < slots_array.length) {
var currentSlot = slots_array[i];
if (eval(_item._droptarget) == currentSlot) {
if (currentSlot.it == null) {
_item._x = currentSlot._x;
_item._y = currentSlot._y;
currentSlot.it = _item;
_item.slot = currentSlot;
ok = true;
checkOkSlot();
return undefined;
}
} else {
_item._x = _item.nowX;
_item._y = _item.nowY;
}
++i;
}
if (!ok) {
if (_item.slot != null) {
_item.slot.it = null;
}
_item.slot = null;
_item._x = _item.q._x;
_item._y = _item.q._y;
}
checkOkSlot();
}
function updateDrag() {
updateAfterEvent();
}
function checkOkSlot() {
go_bt.enabled = true;
go_bt.gotoAndStop(1);
killHim = false;
slotOk = true;
errorTxt = '';
var v9 = 0;
while (v9 < slots_array.length) {
var v10 = slots_array[v9];
v10.bg.gotoAndStop(1);
++v9;
}
v9 = 0;
while (v9 < slots_array.length) {
v10 = slots_array[v9];
if (v10.it == null) {
slotOk = false;
v10.bg.gotoAndStop(2);
errorTxt = 'Fill all the gene containers!';
go_bt.enabled = false;
go_bt.gotoAndStop('disabled');
}
++v9;
}
v9 = 0;
while (v9 < slots_array.length) {
var v3 = slots_array[v9];
var v4 = 0;
while (v4 < slots_array.length) {
var v2 = slots_array[v4];
if (v3 != v2 && v3.it != null && v2.it != null) {
var v8 = v3.it.myName;
var v7 = v2.it.myName;
var v6 = _root.upg[v8];
var v5 = _root.upg[v7];
if (v6.type != 'no' && v5.type != 'no') {
if (v6.type == v5.type) {
v3.bg.gotoAndStop(3);
v2.bg.gotoAndStop(3);
slotOk = false;
errorTxt = 'Genome is not compatible, the probability of death!';
killHim = true;
}
}
}
++v4;
}
++v9;
}
if (!slotOk) {
all_mc.txt.text = errorTxt;
} else {
all_mc.txt.text = '';
}
}
function createInventoryItem() {
var v5 = 0;
while (v5 < slots_array.length) {
var v6 = slots_array[v5];
v6.no = v5;
v6.item = null;
v6.X = v6._x;
v6.Y = v6._y;
++v5;
}
v5 = 0;
while (v5 < 29) {
var v8 = _root.upg[v5];
if (v8.enabled) {
var v4 = attachMovie('item', 'item' + uniqueItemId, this.getNextHighestDepth());
var v7 = this['q' + v5];
v4._x = v7._x;
v4._y = v7._y;
v4.gotoAndStop(v5 + 1);
v4.q = v7;
v4.slot = null;
v4.myName = v5;
if (v5 <= 25 || _global.onbox10) {
v4.onPress = function () {
dragItem(this);
};
v4.onReleaseOutside = function () {
dropItem(this);
};
v4.onRelease = v4.onReleaseOutside;
} else {
v4.onRelease = function () {
_root.getSitelockedLink();
};
}
items_array.push(v4);
++uniqueItemId;
}
++v5;
}
++uniqueItemId;
ttt.swapDepths(uniqueItemId);
animateIn();
checkOkSlot();
++uniqueItemId;
tut.swapDepths(uniqueItemId);
}
function animateIn() {
var v3 = 0;
while (v3 < slots_array.length) {
var v2 = slots_array[v3];
v2._alpha = 0;
v2._yscale = 150;
v2._xscale = 150;
v2._y = v2.Y - 30;
com.greensock.TweenLite.to(v2, 1, {'delay': v3 * 0.15, '_xscale': 100, '_yscale': 100, '_alpha': 100, '_y': v2.Y, 'ease': com.greensock.easing.Back.easeOut});
++v3;
}
v3 = 0;
while (v3 < 29) {
var v4 = this['q' + v3];
v4._alpha = 0;
v4._yscale = 0;
v4._xscale = 0;
com.greensock.TweenLite.to(v4, 1, {'delay': v3 * 0.01, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
++v3;
}
v3 = 0;
while (v3 < items_array.length) {
v2 = items_array[v3];
v2._alpha = 0;
v2._yscale = 50;
v2._xscale = 50;
com.greensock.TweenLite.to(v2, 2, {'delay': v3 * 0.02, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
v4 = this['q' + v2.myName];
v4._alpha = 0;
v4._yscale = 0;
v4._xscale = 0;
com.greensock.TweenLite.to(v4, 1, {'delay': v3 * 0.01, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
++v3;
}
}
function addToCreature(nn) {
var v3 = _root.creatureTMP;
v3.attack += 4;
v3.def += 0.05;
v3.power += 3;
v3.hp += 10;
var v2 = _root.upg[nn];
if (v2.type != 'no') {
v3[v2.type] = v2.typeno;
}
v3[v2.addtype] += v2.add;
v3[v2.addtype] += Math.floor(Math.random() * v2.addrandom);
var v4 = v2.prel_txt[Math.floor(Math.random() * (v2.prel_txt.length - 1))];
namesArray.push(v4);
}
function showCreature() {
var v1 = 0;
while (v1 < 29) {
++v1;
}
v1 = 0;
while (v1 < items_array.length) {
var v2 = items_array[v1];
v2.enabled = false;
if (v2.slot == null) {
} else {
com.greensock.TweenLite.to(v2, 1.5, {'_x': 280, '_y': 240, '_alpha': 0});
}
++v1;
}
v1 = 0;
while (v1 < slots_array.length) {
v2 = slots_array[v1];
com.greensock.TweenLite.to(v2, 1.5, {'_x': 280, '_y': 240, '_alpha': 0});
++v1;
}
all_mc.colba.lightMc.gotoAndPlay(2);
all_mc.colba.lightMc._yscale = 0;
all_mc.colba.lightMc._xscale = 0;
com.greensock.TweenLite.to(all_mc.colba.lightMc, 0.5, {'delay': 1, '_xscale': 100, '_yscale': 100});
res_bt.enabled = false;
go_bt.enabled = false;
go_bt.gotoAndStop('disabled');
map_bt.enabled = false;
showAll();
}
function showAll() {
com.greensock.TweenLite.to(thi, 3, {'delay': 0.5, '_x': 752, 'ease': com.greensock.easing.Strong.easeInOut});
fi_mc._visible = true;
var v4 = '';
fi_mc.name_txt.text = '';
while (namesArray.length > 2) {
namesArray.splice(Math.floor(Math.random() * (namesArray.length - 1)), 1);
}
var v2 = 0;
while (v2 < namesArray.length) {
var v3 = v4;
v4 = v3 + namesArray[v2];
++v2;
}
var v6 = 'Dog';
var v7 = Math.random();
if (v7 > 0.8) {
v6 = 'Haunt';
} else {
if (v7 > 0.6) {
v6 = 'Bandog';
} else {
if (v7 > 0.4) {
v6 = 'Hunter';
} else {
if (v7 > 0.2) {
v6 = 'Retriever';
}
}
}
}
fi_mc.txts.name_txt.text = v4 + v6;
var v5 = _root.creatureTMP;
v5.name_txt = fi_mc.txts.name_txt.text;
v5.attack += 5 + Math.floor(Math.random() * 5);
v5.def += 0.05 + Math.floor(Math.random() * 0.05);
v5.power += 10 + Math.floor(Math.random() * 10);
v5.acc += 0.6;
v5.hp += 200 + Math.floor(Math.random() * 50);
v5.hpmax = v5.hp;
if (!killHim) {
fi_mc.txts.tt._visible = true;
fi_mc.txts.att_txt.text = v5.attack;
fi_mc.txts.def_txt.text = String(Math.floor(v5.def * 1000) / 10) + '%';
fi_mc.txts.acc_txt.text = v5.acc;
fi_mc.txts.pow_txt.text = v5.power;
fi_mc.txts.hp_txt.text = v5.hp;
} else {
fi_mc.txts.tt._visible = false;
fi_mc.txts.att_txt.text = '';
fi_mc.txts.def_txt.text = '';
fi_mc.txts.acc_txt.text = '';
fi_mc.txts.pow_txt.text = '';
fi_mc.txts.hp_txt.text = '';
fi_mc.txts.name_txt.text = 'Dead body... Press \'reset\'';
}
fi_mc.txts._alpha = 0;
fi_mc.go_bt.enabled = false;
fi_mc.go_bt.gotoAndStop('disabled');
fi_mc.char.gotoAndStop('blank');
fi_mc.char.gotoAndStop('idle');
fi_mc.hold.mc1._visible = true;
fi_mc.hold.mc1.gotoAndStop(1);
fi_mc.hold.mc2._visible = false;
com.greensock.TweenLite.delayedCall(3, function () {
all_mc.colba.lightMc.gotoAndStop(1);
if (!killHim) {
fi_mc.hold.mc1.gotoAndPlay(2);
} else {
fi_mc.hold.mc2._visible = true;
fi_mc.hold.mc2.gotoAndPlay(2);
fi_mc.hold.mc1._visible = false;
}
});
}
function enablebtn() {
if (!killHim) {
fi_mc.go_bt.enabled = true;
fi_mc.go_bt.gotoAndStop(1);
}
com.greensock.TweenLite.to(fi_mc.txts, 1, {'_alpha': 100});
}
function showTut() {
com.greensock.TweenLite.delayedCall(2, function () {
if (!tut._visible && !tut2._visible) {
tut2._xscale = 150;
tut2._alpha = 0;
tut2._visible = true;
com.greensock.TweenLite.to(tut2, 1, {'_xscale': 100, '_alpha': 100});
}
});
}
_root.open_slots = Math.floor((_root.currentLevel - 1) / 3) + 3;
stop();
var thi = this;
fi_mc._visible = false;
var slots_array = [];
var i = 0;
while (i < 8) {
thi['slot' + i]._visible = false;
++i;
}
var i = 0;
while (i < _root.open_slots) {
slots_array.push(thi['slot' + i]);
thi['slot' + i]._visible = true;
++i;
}
var items_array = [];
var uniqueItemId = 0;
var slotOk = true;
var errorTxt = '';
var killHim = false;
createInventoryItem();
fi_mc.res2_bt.onRelease = function () {
_root.newCreature(_root.creatureTMP);
_root.newCreature(_root.creature);
com.greensock.TweenLite.to(thi, 3, {'_x': 0, 'ease': com.greensock.easing.Strong.easeOut});
var v3 = 0;
while (v3 < slots_array.length) {
if (slots_array[v3].it != null) {
slots_array[v3].it._x = slots_array[v3].it.q._x;
slots_array[v3].it._y = slots_array[v3].it.q._y;
slots_array[v3].it.slot = null;
slots_array[v3].it = null;
}
slots_array[v3].bg.gotoAndStop(1);
slots_array[v3]._x = slots_array[v3].X;
slots_array[v3]._y = slots_array[v3].Y;
slots_array[v3]._visible = true;
slots_array[v3]._alpha = 100;
++v3;
}
v3 = 0;
while (v3 < items_array.length) {
var v2 = items_array[v3];
v2.enabled = true;
v2._visible = true;
v2._alpha = 100;
++v3;
}
res_bt.enabled = true;
res_bt._alpha = 100;
go_bt.enabled = true;
go_bt._alpha = 100;
go_bt.gotoAndStop(1);
map_bt.enabled = true;
map_bt._alpha = 100;
all_mc._visible = true;
ttt._visible = true;
checkOkSlot();
animateIn();
};
res_bt.onRelease = fi_mc.res2_bt.onRelease;
var namesArray = [];
go_bt.onRelease = function () {
namesArray = [];
var v1 = 0;
while (v1 < slots_array.length) {
if (slots_array[v1].it != null) {
var v2 = slots_array[v1].it.myName;
addToCreature(v2);
}
++v1;
}
showCreature();
};
fi_mc.go_bt.onRelease = function () {
_root.gotoAndStop('fight');
};
fi_mc.map_bt.onRelease = function () {
_root.gotoAndStop('map');
};
map_bt.onRelease = fi_mc.map_bt.onRelease;
tut._visible = false;
if (_root.selectedLevel == 1 && !_root.tut) {
_root.tut = true;
tut._visible = true;
tut._alpha = 0;
com.greensock.TweenLite.to(tut, 0.5, {'delay': 1, '_alpha': 100, 'onComplete': function () {
tut.beginTut();
}});
}
tut2._visible = false;
com.greensock.TweenLite.delayedCall(7, function () {
if (!tut._visible && !tut2._visible && !_root.tut) {
tut2._xscale = 150;
tut2._alpha = 0;
tut2._visible = true;
com.greensock.TweenLite.to(tut2, 1, {'_xscale': 100, '_alpha': 100});
}
});
tut2.onRelease = function () {
tut2._visible = false;
tut.gotoAndStop(1);
tut._visible = true;
tut._alpha = 0;
com.greensock.TweenLite.to(tut, 0.5, {'_alpha': 100, 'onComplete': function () {
tut.beginTut();
}});
};
}
}
frame 7 {
stop();
fight_mc._visible = false;
_global.playsfx('begin');
}
movieClip 737 {
frame 1 {
stop();
}
}
movieClip 740 {
}
movieClip 745 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
}
movieClip 749 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 750 {
frame 1 {
repl_bt.onRelease = function () {
_root.gotoAndStop('blank_fight');
};
lab_bt.onRelease = function () {
_root.gotoAndStop('lab');
};
}
}
movieClip 755 {
}
// unknown tag 88 length 68
movieClip 760 {
}
movieClip 762 {
}
movieClip 764 {
}
movieClip 765 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 767 {
}
movieClip 769 {
}
movieClip 770 {
frame 1 {
stop();
}
}
movieClip 773 {
}
movieClip 774 {
}
movieClip 776 {
}
movieClip 778 {
}
movieClip 779 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 781 {
}
movieClip 783 {
}
movieClip 785 {
}
movieClip 786 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 788 {
}
movieClip 790 {
}
movieClip 792 {
}
movieClip 793 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 795 {
}
movieClip 797 {
}
movieClip 798 {
}
movieClip 800 {
}
movieClip 810 {
}
movieClip 811 {
}
movieClip 813 {
}
movieClip 814 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 815 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 817 {
frame 1 {
stop();
}
}
movieClip 819 {
}
movieClip 821 {
}
movieClip 822 {
}
movieClip 823 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 824 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 825 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 826 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 827 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 828 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 829 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 830 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 831 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 832 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 834 {
}
movieClip 836 {
}
movieClip 838 {
}
movieClip 840 {
}
movieClip 842 {
}
movieClip 843 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 844 {
frame 1 {
stop();
}
}
movieClip 846 {
}
movieClip 848 {
}
movieClip 850 {
}
movieClip 851 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 853 {
}
movieClip 855 {
}
movieClip 857 {
}
movieClip 858 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 860 {
}
movieClip 862 {
}
movieClip 864 {
}
movieClip 865 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 867 {
}
movieClip 869 {
}
movieClip 871 {
}
movieClip 876 {
}
movieClip 877 {
}
movieClip 878 {
}
movieClip 880 {
}
movieClip 881 {
frame 12 {
_parent.gotoAndStop(1);
}
}
movieClip 882 {
frame 1 {
stop();
}
}
movieClip 883 {
}
movieClip 884 {
}
movieClip 885 {
frame 12 {
_parent.gotoAndStop(1);
}
}
movieClip 886 {
frame 1 {
stop();
}
}
movieClip 888 {
frame 1 {
stop();
}
}
movieClip 889 {
}
movieClip 891 {
}
movieClip 892 {
}
movieClip 893 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 894 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 895 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 896 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 897 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 898 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 899 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 900 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 901 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 902 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 904 {
}
movieClip 906 {
}
movieClip 908 {
}
movieClip 910 {
}
movieClip 911 {
}
movieClip 913 {
}
movieClip 914 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 915 {
frame 1 {
stop();
}
}
movieClip 917 {
}
movieClip 919 {
}
movieClip 921 {
}
movieClip 922 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 924 {
}
movieClip 926 {
}
movieClip 928 {
}
movieClip 929 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 931 {
}
movieClip 933 {
}
movieClip 935 {
}
movieClip 936 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 937 {
}
movieClip 938 {
}
movieClip 940 {
}
movieClip 950 {
}
movieClip 951 {
}
movieClip 953 {
}
movieClip 954 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 955 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 956 {
frame 1 {
stop();
}
}
movieClip 957 {
}
movieClip 959 {
}
movieClip 960 {
}
movieClip 961 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 962 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 963 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 964 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 965 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 966 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 967 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 968 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 969 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 970 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 972 {
}
movieClip 974 {
}
movieClip 976 {
}
movieClip 977 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 979 {
}
movieClip 981 {
}
movieClip 982 {
frame 1 {
stop();
}
}
movieClip 984 {
}
movieClip 986 {
}
movieClip 988 {
}
movieClip 989 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 991 {
}
movieClip 993 {
}
movieClip 995 {
}
movieClip 996 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 998 {
}
movieClip 1000 {
}
movieClip 1002 {
}
movieClip 1003 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1005 {
}
movieClip 1006 {
}
movieClip 1008 {
}
movieClip 1018 {
}
movieClip 1019 {
}
movieClip 1021 {
}
movieClip 1022 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 1023 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1026 {
frame 1 {
stop();
}
}
movieClip 1027 {
}
movieClip 1029 {
}
movieClip 1030 {
}
movieClip 1031 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1032 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 1033 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 1034 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 1035 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 1036 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 1037 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 1038 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 1039 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 1040 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 1042 {
}
movieClip 1045 {
}
movieClip 1047 {
}
movieClip 1049 {
}
movieClip 1051 {
}
movieClip 1053 {
}
movieClip 1055 {
}
movieClip 1056 {
}
movieClip 1058 {
}
movieClip 1059 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 1061 {
}
movieClip 1063 {
}
movieClip 1065 {
}
movieClip 1066 {
frame 1 {
stop();
}
}
movieClip 1068 {
}
movieClip 1070 {
}
movieClip 1072 {
}
movieClip 1073 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1075 {
}
movieClip 1077 {
}
movieClip 1079 {
}
movieClip 1080 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1082 {
}
movieClip 1084 {
}
movieClip 1086 {
}
movieClip 1087 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1089 {
}
movieClip 1091 {
}
movieClip 1092 {
}
movieClip 1102 {
}
movieClip 1103 {
}
movieClip 1105 {
}
movieClip 1106 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 1107 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1110 {
frame 1 {
stop();
}
}
movieClip 1112 {
}
movieClip 1114 {
}
movieClip 1115 {
}
movieClip 1116 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1117 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 1118 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 1119 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 1120 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 1121 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 1122 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 1123 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 1124 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 1125 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 1127 {
}
movieClip 1129 {
}
movieClip 1131 {
}
movieClip 1132 {
frame 1 {
stop();
}
frame 2 {
stop();
}
}
movieClip 1134 {
}
movieClip 1136 {
}
movieClip 1138 {
}
movieClip 1139 {
frame 1 {
stop();
}
}
movieClip 1141 {
}
movieClip 1143 {
}
movieClip 1145 {
}
movieClip 1146 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1148 {
}
movieClip 1150 {
}
movieClip 1152 {
}
movieClip 1153 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1155 {
}
movieClip 1157 {
}
movieClip 1159 {
}
movieClip 1160 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1162 {
}
movieClip 1165 {
}
movieClip 1166 {
}
movieClip 1167 {
}
movieClip 1169 {
}
movieClip 1170 {
frame 9 {
_parent.gotoAndStop(1);
}
}
movieClip 1171 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
}
movieClip 1174 {
frame 1 {
stop();
}
}
movieClip 1175 {
}
movieClip 1177 {
}
movieClip 1178 {
}
movieClip 1179 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
}
movieClip 1180 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
}
movieClip 1181 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 22 {
_parent.gotoAndStop('idle');
}
}
movieClip 1182 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 37 {
_parent.gotoAndStop('idle');
}
}
movieClip 1183 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(3);
}
frame 24 {
_parent.gotoAndStop('idle');
}
}
movieClip 1184 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 21 {
_parent.gotoAndStop('idle');
}
}
movieClip 1185 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 23 {
_parent.gotoAndStop('idle');
}
}
movieClip 1186 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 40 {
}
}
movieClip 1187 {
frame 1 {
arm.gotoAndStop(_root.current_ai_creature.arms);
arm1.gotoAndStop(_root.current_ai_creature.arms);
leg.gotoAndStop(_root.current_ai_creature.legs);
leg1.gotoAndStop(_root.current_ai_creature.legs);
head.gotoAndStop(_root.current_ai_creature.head);
onHead.gotoAndStop(_root.current_ai_creature.onhead);
body.gotoAndStop(_root.current_ai_creature.body);
onBody.gotoAndStop(_root.current_ai_creature.onbody);
onBack.gotoAndStop(_root.current_ai_creature.onback);
}
frame 3 {
head.mc.gotoAndStop(2);
}
frame 19 {
stop();
}
}
movieClip 1188 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
}
movieClip 1189 {
frame 1 {
stop();
}
frame 6 {
stop();
}
}
movieClip 1191 {
}
movieClip 1193 {
}
movieClip 1195 {
}
movieClip 1197 {
}
movieClip 1199 {
}
movieClip 1201 {
}
movieClip 1204 {
frame 1 {
stop();
}
}
movieClip 1223 {
frame 1 {
stop();
}
}
movieClip 1225 {
}
movieClip 1227 {
}
movieClip 1234 {
}
movieClip 1238 {
}
movieClip 1239 {
}
movieClip 1240 {
frame 1 {
stop();
}
}
movieClip 1242 {
}
movieClip 1243 {
frame 17 {
_parent.gotoAndStop(1);
}
}
movieClip 1245 {
}
movieClip 1247 {
}
movieClip 1249 {
frame 17 {
_parent.gotoAndStop(1);
}
}
movieClip 1258 {
frame 24 {
_parent.gotoAndStop(1);
}
}
movieClip 1261 {
}
movieClip 1263 {
}
movieClip 1266 {
frame 23 {
_parent.gotoAndStop(1);
}
}
movieClip 1268 {
}
movieClip 1270 {
}
movieClip 1271 {
frame 30 {
_parent.gotoAndStop(1);
}
}
movieClip 1273 {
}
movieClip 1274 {
frame 30 {
_parent.gotoAndStop(1);
}
}
movieClip 1277 {
frame 23 {
_parent.gotoAndStop(1);
}
}
movieClip 1279 {
}
movieClip 1281 {
}
movieClip 1282 {
frame 21 {
_parent.gotoAndStop(1);
}
}
movieClip 1291 {
frame 24 {
_parent.gotoAndStop(1);
}
}
movieClip 1296 {
}
movieClip 1299 {
}
movieClip 1303 {
frame 25 {
_parent.gotoAndStop(1);
}
}
movieClip 1304 {
frame 50 {
_parent.gotoAndStop(1);
}
}
movieClip 1306 {
}
movieClip 1307 {
frame 25 {
_parent.gotoAndStop(1);
}
}
movieClip 1310 {
}
movieClip 1332 {
frame 28 {
_parent.gotoAndStop(1);
}
}
movieClip 1334 {
}
movieClip 1335 {
frame 23 {
_parent.gotoAndStop(1);
}
}
movieClip 1337 {
}
movieClip 1339 {
}
movieClip 1340 {
frame 17 {
_parent.gotoAndStop(1);
}
}
movieClip 1342 {
}
movieClip 1345 {
}
movieClip 1352 {
frame 25 {
_parent.gotoAndStop(1);
}
}
movieClip 1354 {
}
movieClip 1357 {
}
movieClip 1358 {
}
movieClip 1359 {
frame 27 {
_parent.gotoAndStop(1);
}
}
movieClip 1360 {
frame 1 {
stop();
}
frame 2 {
stop();
}
frame 3 {
stop();
}
frame 4 {
stop();
}
frame 5 {
stop();
}
frame 6 {
stop();
}
frame 7 {
stop();
}
frame 8 {
stop();
}
frame 9 {
stop();
}
frame 10 {
stop();
}
frame 11 {
stop();
}
frame 12 {
stop();
}
frame 13 {
stop();
}
frame 14 {
stop();
}
frame 15 {
stop();
}
frame 16 {
stop();
}
frame 17 {
stop();
}
frame 18 {
stop();
}
frame 19 {
stop();
}
}
movieClip 1368 {
}
movieClip 1377 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 1381 {
frame 3 {
head.mc.gotoAndStop(3);
}
}
movieClip 1384 {
frame 1 {
stop();
onRelease = function () {
getURL('http://armor.ag/MoreGames', '_blank');
};
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
}
movieClip 1398 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 1407 {
frame 1 {
stop();
}
frame 2 {
play();
}
frame 6 {
stop();
}
frame 7 {
play();
}
frame 11 {
gotoAndStop(1);
}
frame 12 {
stop();
}
}
movieClip 1410 {
frame 1 {
stop();
go_bt.onRelease = function () {
_root.gotoAndStop('map');
};
}
frame 2 {
stop();
b_bt.onRelease = function () {
_root.gotoAndStop('map');
};
repl_bt.onRelease = function () {
_root.gotoAndStop('blank_fight');
};
cn_bt.onRelease = function () {
_root.gotoAndStop('lab');
};
}
}
movieClip 1411 {
frame 1 {
function addSelectors() {
q3.enabled = true;
q2.enabled = q3.enabled;
q1.enabled = q3.enabled;
var v2 = 1;
while (v2 < 4) {
var v1 = thi['q' + v2];
v1._y = v1.y - 30;
v1._alpha = 0;
v1.enabled = true;
v1._visible = true;
v1.ss = Math.floor(Math.random() * 10 + 1);
if (Math.random() < 0.1) {
if (Math.random() > 0.5) {
if (creature.onhead == 2) {
v1.ss = 11;
}
if (creature.onhead == 3) {
v1.ss = 12;
}
if (creature.onhead == 4) {
v1.ss = 13;
}
} else {
if (creature.onback == 2) {
v1.ss = 15;
}
if (creature.onback == 3) {
v1.ss = 14;
}
if (creature.onback == 4) {
v1.ss = 16;
}
}
}
v1.gotoAndStop(v1.ss);
v1.bg.gotoAndStop(1);
com.greensock.TweenMax.to(v1, 0.7, {'delay': 0.2 * v2, '_y': v1.y, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
++v2;
}
}
function playerMove() {
if (!dead) {
who = 'player';
animateMc(t_pm, 2, addSelectors);
com.greensock.TweenMax.to(inter.light, 0.5, {'_x': -195, 'ease': com.greensock.easing.Strong.easeOut});
}
}
function aiMove() {
if (!dead) {
com.greensock.TweenMax.to(inter.light, 0.5, {'_x': 227, 'ease': com.greensock.easing.Strong.easeOut});
who = 'ai';
selectedAtt = Math.floor(Math.random() * 10 + 1);
switch (_root.selectedLevel) {
case 3:
if (superUsed == 0) {
if (creature_ai.hp < creature_ai.hpmax / 2) {
++superUsed;
selectedAtt = 17;
}
}
break;
case 6:
if (superUsed == 0) {
if (creature_ai.hp < creature_ai.hpmax / 2) {
++superUsed;
selectedAtt = 18;
}
}
break;
case 9:
if (superUsed == 0) {
if (creature_ai.hp < creature_ai.hpmax / 2) {
++superUsed;
selectedAtt = 19;
}
} else {
if (superUsed == 1) {
if (creature_ai.hp < creature_ai.hpmax / 4) {
++superUsed;
selectedAtt = 19;
}
}
}
break;
case 12:
if (superUsed == 0) {
if (creature_ai.hp < creature_ai.hpmax / 2) {
++superUsed;
selectedAtt = 20;
}
} else {
if (superUsed == 1) {
if (creature_ai.hp < creature_ai.hpmax / 4) {
++superUsed;
selectedAtt = 20;
}
}
}
break;
case 15:
if (superUsed == 0) {
if (creature_ai.hp < creature_ai.hpmax * 2 / 3) {
++superUsed;
selectedAtt = 21;
}
} else {
if (superUsed < 3) {
if (creature_ai.hp < creature_ai.hpmax / 2) {
++superUsed;
selectedAtt = 21;
}
}
}
break;
case 16:
if (superUsed < 4) {
if (Math.random > 0.8) {
++superUsed;
selectedAtt = 22;
}
}
}
switch (selectedAtt) {
case 1:
case 2:
case 3:
case 6:
case 7:
case 10:
case 11:
case 12:
case 13:
case 14:
case 15:
case 16:
case 17:
case 18:
case 19:
case 20:
case 21:
case 22:
t_ai.txt.text = 'attack!';
break;
case 4:
case 5:
t_ai.txt.text = 'defence!';
break;
case 8:
case 9:
t_ai.txt.text = 'heal!';
}
animateMc(t_ai, 1);
com.greensock.TweenMax.delayedCall(2, makeMove);
}
}
function animateMc(mc, ani, fnc, customDelay) {
if (!customDelay) {
customDelay = 0;
}
switch (ani) {
case 0:
mc._visible = true;
mc._alpha = 0;
mc._yscale = 0;
mc._xscale = 0;
com.greensock.TweenMax.to(mc, 0.2, {'delay': customDelay, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
com.greensock.TweenMax.delayedCall(0.4 + customDelay, function () {
com.greensock.TweenMax.to(mc, 0.5, {'_xscale': 130, '_yscale': 130, '_alpha': 0});
}, [mc]);
com.greensock.TweenMax.delayedCall(1, fnc);
break;
case 1:
mc._visible = true;
mc._alpha = 0;
mc._yscale = 0;
mc._xscale = 0;
com.greensock.TweenMax.to(mc, 0.8, {'_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
com.greensock.TweenMax.delayedCall(1, function () {
com.greensock.TweenMax.to(mc, 0.9, {'_alpha': 0});
}, [mc]);
com.greensock.TweenMax.delayedCall(1, fnc);
break;
case 2:
mc._visible = true;
mc._alpha = 0;
mc._yscale = 150;
mc._xscale = 150;
com.greensock.TweenMax.to(mc, 2, {'_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Expo.easeOut});
com.greensock.TweenMax.delayedCall(1.5, function () {
com.greensock.TweenMax.to(mc, 0.5, {'_xscale': 80, '_yscale': 80, '_alpha': 0});
}, [mc]);
com.greensock.TweenMax.delayedCall(1.5, fnc);
}
}
function makeMove() {
var v2 = creature;
var v6 = creature_ai;
var v5 = 1;
var v4 = 0;
var v3 = char;
var vict_mc = char_ai.mc;
var v10 = eff;
var vict_eff = eff_ai;
if (who == 'ai') {
v5 = -1;
v4 = 640;
v2 = creature_ai;
v6 = creature;
v3 = char_ai.mc;
vict_mc = char;
v10 = eff_ai;
vict_eff = eff;
}
var v9 = 1;
if (Math.random() < v2.crit) {
if (selectedAtt != 4 && selectedAtt != 5) {
var v12 = 1;
var v11 = 0;
if (who == 'player') {
v12 = -1;
v11 = 640;
}
t_crit._x = 640 - t_crit.x * v12 - v11;
animateMc(t_crit, 0, null, aniDelay2);
}
v9 = 2;
}
if (selectedAtt == 10) {
t_stun._x = 640 - t_stun.x * v5 - v4;
animateMc(t_stun, 0, null, aniDelay2 + aniDelay);
if (who == 'ai') {
com.greensock.TweenMax.delayedCall(3, aiMove);
} else {
com.greensock.TweenMax.delayedCall(2, playerMove);
}
if (who == 'ai') {
eff.stunMc.gotoAndPlay(2);
} else {
eff_ai.stunMc.gotoAndPlay(2);
}
} else {
if (selectedAtt != 4 && selectedAtt != 5 && selectedAtt != 8 && selectedAtt != 9) {
if (Math.random() < v2.stun) {
t_stun._x = 640 - t_stun.x * v5 - v4;
animateMc(t_stun, 0, null, aniDelay2 + aniDelay);
if (who == 'ai') {
com.greensock.TweenMax.delayedCall(3, aiMove);
} else {
com.greensock.TweenMax.delayedCall(2, playerMove);
}
if (who == 'ai') {
eff.stunMc.gotoAndPlay(2);
} else {
eff_ai.stunMc.gotoAndPlay(2);
}
} else {
if (who == 'ai') {
com.greensock.TweenMax.delayedCall(2, playerMove);
} else {
com.greensock.TweenMax.delayedCall(3, aiMove);
}
}
} else {
if (who == 'ai') {
com.greensock.TweenMax.delayedCall(3, playerMove);
} else {
com.greensock.TweenMax.delayedCall(3, aiMove);
}
}
}
switch (selectedAtt) {
case 1:
case 2:
case 6:
case 7:
case 10:
var v8 = Math.floor((v2.attack - v2.attack * v6.def) * v9);
v8 += Math.floor(Math.random() * v8 / 4);
v8 = Math.floor(v8 / v6.adddef);
if (selectedAtt == 6 || selectedAtt == 7) {
v8 += Math.floor(v2.attack - v2.attack * v6.def);
}
v6.adddef = 1;
if (v8 < 0) {
v8 = 0;
}
if (Math.random() < 0.5) {
t_dmg1.txt.text = v8;
t_dmg1._x = 640 - t_dmg1.x * v5 - v4;
animateMc(t_dmg1, 0, null, aniDelay2);
} else {
t_dmg2.txt.text = v8;
t_dmg2._x = 640 - t_dmg2.x * v5 - v4;
animateMc(t_dmg2, 0, null, aniDelay2);
}
bbarmc(v8);
if (selectedAtt == 1 || selectedAtt == 6) {
v3.gotoAndStop('hand_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('hand');
});
}
if (selectedAtt == 2 || selectedAtt == 7) {
v3.gotoAndStop('leg_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('leg');
});
}
if (selectedAtt == 10) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('stun');
});
}
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_mc.gotoAndStop('damage');
});
com.greensock.TweenMax.delayedCall(aniDelay, _global.playsfx('udar'));
break;
case 3:
if (selectedAtt == 3) {
t_dd._x = 640 - t_dd.x * v5 - v4;
animateMc(t_dd, 0, null, aniDelay + aniDelay2);
}
var v8 = Math.floor((v2.attack - v2.attack * v6.def) * v9);
v8 += Math.floor(Math.random() * v8 / 4);
v8 = Math.floor(v8 / v6.adddef);
v6.adddef = 1;
if (v8 < 0) {
v8 = 0;
}
t_dmg1.txt.text = v8;
t_dmg1._x = 640 - t_dmg1.x * v5 - v4;
animateMc(t_dmg1, 0, null, aniDelay2);
var v7 = Math.floor((v2.attack - v2.attack * v6.def) * v9);
v7 += Math.floor(Math.random() * v7 / 4);
v7 = Math.floor(v7 / v6.adddef);
v6.adddef = 1;
if (v7 < 0) {
v7 = 0;
}
t_dmg2.txt.text = v7;
t_dmg2._x = 640 - t_dmg2.x * v5 - v4;
animateMc(t_dmg2, 0, null, 0.2 + aniDelay2);
v8 += v7;
bbarmc(v8);
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('teeth');
});
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_mc.gotoAndStop('damage');
});
com.greensock.TweenMax.delayedCall(aniDelay, _global.playsfx('udar'));
break;
case 4:
case 5:
v2.adddef = 4;
if (selectedAtt == 5) {
v2.adddef = 7;
}
v3.gotoAndStop('defense');
v10.gotoAndStop('defense');
_global.playsfx('block');
break;
case 8:
case 9:
var v8 = v2.power * v9;
v8 += Math.floor(Math.random() * v8 / 2);
t_heal.txt.text = '+' + v8;
v5 = -1;
v4 = 640;
if (who == 'ai') {
v5 = 1;
v4 = 0;
}
t_heal._x = 640 - t_heal.x * v5 - v4;
animateMc(t_heal, 1);
v2.hp += v8;
if (v2.hp > v2.hpmax) {
v2.hp = v2.hpmax;
}
v10.gotoAndStop('heal');
_global.playsfx('heal');
break;
case 11:
case 12:
case 13:
case 14:
case 15:
case 16:
case 17:
case 18:
case 19:
case 20:
case 21:
case 22:
var v8 = Math.floor((v2.attack * 2 - v2.attack * v6.def / 2) * v9);
v8 += Math.floor(Math.random() * v8 / 2);
v6.adddef = 1;
if (v8 < 0) {
v8 = 0;
}
if (Math.random() < 0.5) {
t_dmg1.txt.text = v8;
t_dmg1._x = 640 - t_dmg1.x * v5 - v4;
animateMc(t_dmg1, 0, null, aniDelay2);
} else {
t_dmg2.txt.text = v8;
t_dmg2._x = 640 - t_dmg2.x * v5 - v4;
animateMc(t_dmg2, 0, null, aniDelay2);
}
bbarmc(v8);
if (selectedAtt == 11) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('unicorn');
});
}
if (selectedAtt == 12) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('bullHorns');
});
}
if (selectedAtt == 13) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('mace');
});
}
if (selectedAtt == 14) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('fire');
});
}
if (selectedAtt == 15) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('acid');
});
}
if (selectedAtt == 16) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('web');
});
}
if (selectedAtt == 17) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('bones');
});
}
if (selectedAtt == 18) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('needle');
});
}
if (selectedAtt == 19) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('crok');
});
}
if (selectedAtt == 20) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('fire');
});
}
if (selectedAtt == 21) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('stones');
});
}
if (selectedAtt == 22) {
v3.gotoAndStop('teeth_attack');
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_eff.gotoAndStop('drill');
});
}
com.greensock.TweenMax.delayedCall(aniDelay, function () {
vict_mc.gotoAndStop('damage');
});
com.greensock.TweenMax.delayedCall(aniDelay, _global.playsfx('udar'));
}
}
function bbarmc(uron) {
var v1 = creature_ai;
if (who == 'ai') {
v1 = creature;
barmc._width = (uron * 100 / v1.hpmax) * 250 / 100;
barmc._x = hbar._x + hbar._width - barmc._width;
barmc._y = hbar._y;
barmc._alpha = 0;
com.greensock.TweenMax.delayedCall(aniDelay, function () {
barmc._alpha = 100;
});
com.greensock.TweenMax.to(barmc, 0.5, {'delay': 0.5 + aniDelay, '_alpha': 0});
} else {
barmc._width = (uron * 100 / v1.hpmax) * 250 / 100;
barmc._x = hbar_ai._x - hbar_ai._width;
barmc._y = hbar_ai._y;
barmc._alpha = 0;
com.greensock.TweenMax.delayedCall(aniDelay, function () {
barmc._alpha = 100;
});
com.greensock.TweenMax.to(barmc, 0.5, {'delay': 0.5 + aniDelay, '_alpha': 0});
}
bb_vict = v1;
bb_uron = uron;
com.greensock.TweenMax.delayedCall(aniDelay, function () {
bb_vict.hp -= bb_uron;
if (bb_vict.hp <= 0) {
bb_vict.hp = 0;
die();
}
hbar._xscale = creature.hp * 100 / creature.hpmax;
hbar_ai._xscale = creature_ai.hp * 100 / creature_ai.hpmax;
});
}
function die() {
dead = true;
com.greensock.TweenMax.delayedCall(aniDelay2, afterDeath);
}
function afterDeath() {
var v6 = false;
var v4 = 0;
var v5 = 0;
var v3 = 0;
if (_root.currentLevel == _root.selectedLevel && who != 'ai') {
v6 = true;
switch (_root.currentLevel) {
case 1:
v3 = 14;
_root.upg[14].enabled = true;
break;
case 2:
v3 = 17;
_root.upg[17].enabled = true;
break;
case 3:
v3 = 4;
v4 = 11;
_root.upg[4].enabled = true;
_root.upg[11].enabled = true;
break;
case 4:
v3 = 15;
_root.upg[15].enabled = true;
break;
case 5:
v3 = 2;
_root.upg[2].enabled = true;
break;
case 6:
v3 = 18;
v4 = 16;
_root.upg[18].enabled = true;
_root.upg[16].enabled = true;
break;
case 7:
v3 = 6;
_root.upg[6].enabled = true;
break;
case 8:
v3 = 12;
_root.upg[12].enabled = true;
break;
case 9:
v3 = 20;
v4 = 9;
_root.upg[20].enabled = true;
_root.upg[9].enabled = true;
break;
case 10:
v3 = 13;
_root.upg[13].enabled = true;
break;
case 11:
v3 = 10;
_root.upg[10].enabled = true;
break;
case 12:
v3 = 23;
v4 = 7;
_root.upg[23].enabled = true;
_root.upg[7].enabled = true;
break;
case 13:
v3 = 19;
_root.upg[19].enabled = true;
break;
case 14:
v3 = 21;
_root.upg[21].enabled = true;
break;
case 15:
v3 = 22;
v4 = 24;
v5 = 25;
_root.upg[22].enabled = true;
_root.upg[24].enabled = true;
_root.upg[25].enabled = true;
break;
case 16:
v5 = 100;
}
++_root.currentLevel;
}
if (who == 'ai') {
_global.playsfx('loose');
char_ai.mc.gotoAndStop('win');
char.gotoAndStop('death');
win_mc.gotoAndStop(2);
} else {
_global.playsfx('win');
char_ai.mc.gotoAndStop('death');
char.gotoAndStop('win');
win_mc.gotoAndStop(1);
}
com.greensock.TweenMax.to(inter, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(name_txt, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(name_ai_txt, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(hbar, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(hbar_ai, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(hp, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(hp_ai, 1, {'delay': 0.5, '_alpha': 0});
com.greensock.TweenMax.to(hhh, 1, {'delay': 0.5, '_alpha': 0});
win_mc._alpha = 0;
win_mc._visible = true;
win_mc.ngu_mc._visible = true;
com.greensock.TweenMax.to(win_mc, 1, {'delay': 3.5, '_alpha': 100});
win_mc.g1._visible = false;
win_mc.g2._visible = false;
win_mc.g3._visible = false;
win_mc.g3.enabled = false;
win_mc.g2.enabled = win_mc.g3.enabled;
win_mc.g1.enabled = win_mc.g3.enabled;
win_mc.kubok._visible = false;
if (v6 && v5 != 100) {
win_mc.g1.gotoAndStop(v3 + 1);
win_mc.g1._visible = true;
if (v4 != 0) {
win_mc.g2._visible = true;
win_mc.g2.gotoAndStop(v4 + 1);
win_mc.kubok._visible = true;
}
if (v5 != 0) {
win_mc.g3._visible = true;
win_mc.g3.gotoAndStop(v5 + 1);
}
win_mc.g3._alpha = 0;
win_mc.g2._alpha = 0;
win_mc.g1._alpha = 0;
win_mc.g3._yscale = 150;
win_mc.g3._xscale = 150;
win_mc.g2._yscale = 150;
win_mc.g2._xscale = 150;
win_mc.g1._yscale = 150;
win_mc.g1._xscale = 150;
com.greensock.TweenMax.to(win_mc.g1, 1, {'delay': 4.2, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
com.greensock.TweenMax.to(win_mc.g2, 1, {'delay': 4.7, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut});
com.greensock.TweenMax.to(win_mc.g3, 1, {'delay': 5.2, '_xscale': 100, '_yscale': 100, '_alpha': 100, 'ease': com.greensock.easing.Back.easeOut, 'onComplete': function () {
win_mc.g3.enabled = true;
win_mc.g2.enabled = win_mc.g3.enabled;
win_mc.g1.enabled = win_mc.g3.enabled;
}});
}
if (v5 == 100) {
win_mc.kubok._visible = true;
win_mc.ngu_mc._visible = false;
}
}
stop();
bg.gotoAndStop(_root.arena_no);
var thi = this;
var action = false;
q1.x = q1._x;
q1.y = q1._y;
q2.x = q2._x;
q2.y = q2._y;
q3.x = q3._x;
q3.y = q3._y;
q3.enabled = false;
q2.enabled = q3.enabled;
q1.enabled = q3.enabled;
t_crit._visible = false;
t_ai._visible = t_crit._visible;
t._visible = t_crit._visible;
t_pm._visible = t_crit._visible;
t_heal._visible = t_crit._visible;
t_stun._visible = t_crit._visible;
t_dd._visible = t_crit._visible;
t_miss._visible = t_crit._visible;
t_dmg2._visible = t_crit._visible;
t_dmg1._visible = t_crit._visible;
q3._visible = t_crit._visible;
q2._visible = t_crit._visible;
q1._visible = t_crit._visible;
win_mc._visible = t_crit._visible;
t_dmg1.x = t_dmg1._x;
t_dmg1.y = t_dmg1._y;
t_dmg2.x = t_dmg2._x;
t_dmg2.y = t_dmg2._y;
t_miss.x = t_miss._x;
t_miss.y = t_miss._y;
t_dd.x = t_dd._x;
t_dd.y = t_dd._y;
t_stun.x = t_stun._x;
t_stun.y = t_stun._y;
t_heal.x = t_heal._x;
t_heal.y = t_heal._y;
t_pm.x = t_pm._x;
t_pm.y = t_pm._y;
t.x = t._x;
t.y = t._y;
t_ai.x = t_ai._x;
t_ai.y = t_ai._y;
t_crit.x = t_crit._x;
t_crit.y = t_crit._y;
q1.no = 1;
q2.no = 2;
q3.no = 3;
var creature = _root.creature;
char.gotoAndStop('blank');
char.gotoAndStop('idle');
creature.hp = creature.hpmax;
var creature_ai = _root['creature_ai_' + _root.selectedLevel];
char_ai.gotoAndStop('blank');
switch (_root.selectedLevel) {
case 1:
case 2:
case 3:
char_ai.gotoAndStop(1);
break;
case 4:
case 5:
case 6:
char_ai.gotoAndStop(2);
break;
case 7:
case 8:
case 9:
char_ai.gotoAndStop(3);
break;
case 10:
case 11:
case 12:
char_ai.gotoAndStop(4);
break;
case 13:
case 14:
case 15:
char_ai.gotoAndStop(5);
break;
case 16:
char_ai.gotoAndStop(6);
}
creature_ai.hp = creature_ai.hpmax;
var hp_tmp = 0;
var hp_ai_tmp = 0;
name_txt.text = creature.name_txt;
name_ai_txt.text = creature_ai.name_txt;
hp.text = '0';
hp_ai.text = '0';
q3.onRelease = function () {
q3.enabled = false;
q2.enabled = q3.enabled;
q1.enabled = q3.enabled;
this.bg.gotoAndStop(2);
selectedAtt = this.ss;
var v2 = 1;
while (v2 < 4) {
if (thi['q' + v2] != this) {
com.greensock.TweenMax.to(thi['q' + v2], 0.5, {'_y': thi['q' + v2].y + 30, '_alpha': 0, 'ease': com.greensock.easing.Expo.easeIn});
}
++v2;
}
com.greensock.TweenMax.to(this, 1, {'_alpha': 0, 'ease': com.greensock.easing.Expo.easeIn});
switch (this.ss) {
case 1:
case 2:
case 3:
case 6:
case 7:
case 10:
case 11:
case 12:
case 13:
case 14:
case 15:
case 16:
t.txt.text = 'attack!';
break;
case 4:
case 5:
t.txt.text = 'defence!';
break;
case 8:
case 9:
t.txt.text = 'heal!';
}
animateMc(t, 1);
com.greensock.TweenMax.delayedCall(1.5, makeMove);
};
q2.onRelease = q3.onRelease;
q1.onRelease = q3.onRelease;
var who = 'player';
var selectedAtt = 0;
var superUsed = 0;
var endfight = false;
var aniDelay = 0.5;
var aniDelay2 = 1;
onEnterFrame = function () {
if (action) {
if (hp_tmp < creature.hp) {
hp_tmp += Math.floor(creature.hpmax / 100);
if (hp_tmp > creature.hp) {
hp_tmp = creature.hp;
}
hbar._xscale = hp_tmp * 100 / creature.hpmax;
} else {
if (hp_tmp > creature.hp) {
hp_tmp -= Math.floor(creature.hpmax / 100);
if (hp_tmp < creature.hp) {
hp_tmp = creature.hp;
}
}
}
if (hp_ai_tmp < creature_ai.hp) {
hp_ai_tmp += Math.floor(creature_ai.hpmax / 100);
if (hp_ai_tmp > creature_ai.hp) {
hp_ai_tmp = creature_ai.hp;
}
hbar_ai._xscale = hp_ai_tmp * 100 / creature_ai.hpmax;
} else {
if (hp_ai_tmp > creature_ai.hp) {
hp_ai_tmp -= Math.floor(creature_ai.hpmax / 100);
if (hp_ai_tmp < creature_ai.hp) {
hp_ai_tmp = creature_ai.hp;
}
}
}
hp.text = hp_tmp;
hp_ai.text = hp_ai_tmp;
}
};
var bb_vict = null;
var bb_uron = 0;
var dead = false;
}
}
movieClip 1413 {
}
movieClip 1418 {
frame 1 {
stop();
}
}
movieClip 1419 {
frame 1 {
bg.gotoAndStop(_root.arena_no);
}
}
movieClip 1420 {
}
movieClip 1421 {
frame 13 {
stop();
}
}
movieClip 1423 {
}
movieClip 1425 {
}
movieClip 1426 {
}
movieClip 1427 {
frame 1 {
function backGo() {
com.greensock.TweenLite.to(char, 0.5, {'_x': -char._width - 200, 'ease': com.greensock.easing.Back.easeIn});
com.greensock.TweenLite.to(enemy, 0.5, {'_x': 640 + enemy._width + 200, 'ease': com.greensock.easing.Back.easeIn});
com.greensock.TweenLite.to(vs_mc, 4, {'_xscale': 50, '_yscale': 50, '_alpha': 0, 'ease': com.greensock.easing.Quad.easeOut});
com.greensock.TweenLite.to(name_txt, 0.5, {'_x': 0, '_alpha': 0, 'ease': com.greensock.easing.Quad.easeOut});
com.greensock.TweenLite.to(name_ai_txt, 0.5, {'_x': 640, '_alpha': 0, 'ease': com.greensock.easing.Quad.easeOut});
com.greensock.TweenLite.to(thi, 1, {'delay': 0.5, '_alpha': 0, 'onComplete': function () {
thi._visible = false;
_global.playsfx('bet');
}});
_parent.fight_mc._alpha = 0;
_parent.fight_mc._visible = true;
com.greensock.TweenLite.to(_parent.fight_mc, 0.3, {'delay': 1.2, '_alpha': 100});
com.greensock.TweenLite.delayedCall(2, _parent.fight_mc.playerMove);
_parent.fight_mc.action = true;
}
stop();
var thi = this;
thi._alpha = 0;
com.greensock.TweenLite.to(thi, 0.5, {'_alpha': 100});
char.gotoAndStop('blank');
char.gotoAndStop('idle');
name_txt.txt.text = _root.creature.name_txt;
enemy.gotoAndStop('blank');
switch (_root.selectedLevel) {
case 1:
case 2:
case 3:
enemy.gotoAndStop(1);
break;
case 4:
case 5:
case 6:
enemy.gotoAndStop(2);
break;
case 7:
case 8:
case 9:
enemy.gotoAndStop(3);
break;
case 10:
case 11:
case 12:
enemy.gotoAndStop(4);
break;
case 13:
case 14:
case 15:
enemy.gotoAndStop(5);
break;
case 16:
enemy.gotoAndStop(6);
}
name_ai_txt.txt.text = _root.current_ai_creature.name_txt;
char.X = char._x;
enemy.X = enemy._x;
char._x = -char._width;
enemy._x = 640 + enemy._width;
com.greensock.TweenLite.to(char, 0.5, {'_x': char.X, 'ease': com.greensock.easing.Quad.easeOut});
com.greensock.TweenLite.to(enemy, 0.5, {'_x': enemy.X, 'ease': com.greensock.easing.Quad.easeOut});
vs_mc._alpha = 0;
vs_mc._yscale = 260;
vs_mc._xscale = 260;
com.greensock.TweenLite.to(name_txt, 1, {'delay': 0.3, '_x': 303, 'ease': com.greensock.easing.Sine.easeOut});
com.greensock.TweenLite.to(name_ai_txt, 1, {'delay': 0.3, '_x': 336, 'ease': com.greensock.easing.Sine.easeOut});
com.greensock.TweenLite.to(vs_mc, 0.5, {'delay': 0.3, '_xscale': 120, '_yscale': 120, '_alpha': 100, 'ease': com.greensock.easing.Sine.easeOut, 'onComplete': function () {
com.greensock.TweenLite.to(vs_mc, 1.8, {'_xscale': 100, '_yscale': 100, 'ease': com.greensock.easing.Sine.easeOut});
}});
com.greensock.TweenLite.delayedCall(2.5, backGo);
}
}
frame 8 {
stop();
}
frame 9 {
com.greensock.TweenMax.killAll(true, true, true);
_root.gotoAndStop('fight');
}