Section 1
//BaseBoss (abstract.enemy.boss.BaseBoss)
package abstract.enemy.boss {
import flash.display.*;
import xinnix.event.*;
import object.*;
import xinnix.utils.*;
import flash.geom.*;
import abstract.*;
import state.boss.*;
import flash.media.*;
import object.gfx.*;
public dynamic class BaseBoss extends BaseObject {
public var timeShakeScreen:Number;// = 0
public var hp:Number;
public var _attackName:String;// = ""
public var hurtColor:ColorTransform;
public var curentState:BaseBossState;
public var bumpper:HitValue;
public var consistace:Number;// = 5
public var isKill:Boolean;
public var data:Array;
public var isWalkLeft:Boolean;
public var isWalkRight:Boolean;
public var defaluatColor:ColorTransform;
public var isIgnoreUpdateBossHPgage:Boolean;// = false
public var consistaceMax:Number;// = 5
public var historyHit:Iterator;
public var consistHurt:Number;// = 5
public var consistHurtValue:Number;
public var stateContainer:Object;
public var speedX:Number;
public var speedY:Number;
public var isJump:Boolean;
public var timeColorTran:Number;// = 0
public function BaseBoss(){
data = new Array();
super();
this.addEventListener(GameEvent.SUCCESS, onActionSucess);
this.addEventListener(GameEvent.HITOBJECT, onHitObject);
isKill = false;
isWalkLeft = false;
isWalkRight = false;
speedX = 2;
speedY = 3;
defaluatColor = new ColorTransform();
hurtColor = new ColorTransform(1, 0.3, 0.3);
hp = 10;
historyHit = new Iterator();
isJump = false;
consistHurtValue = consistHurt;
this.setLocation(800, Environment.ground);
initState();
curentState = stateContainer[Enum.stand];
}
public function die():void{
curentState.die();
}
public function size(_arg1:Number):void{
this.scaleX = _arg1;
this.scaleY = _arg1;
}
public function setLocationY(_arg1:Number):void{
setLocation(this.x, _arg1);
}
public function getCurrentState():Object{
return (curentState);
}
public function hurt(_arg1:Object):void{
var _local2:HitValue;
if (curentState != stateContainer[Enum.die]){
this.transform.colorTransform = hurtColor;
timeColorTran = 10;
_local2 = (_arg1 as HitValue);
if (historyHit.contain(_local2.hit)){
if ((Environment.data.time - _local2.hit.time) > 10){
this.bumpper = _local2;
historyHit.removeElement(_local2.hit);
gotoHurt(_local2);
};
} else {
_local2.hit.time = Environment.data.time;
historyHit.addElement(_local2.hit);
this.bumpper = _local2;
gotoHurt(_local2);
};
};
}
public function onActionSucess(_arg1:GameEvent):void{
stand();
}
public function onHitObject(_arg1:GameEvent):void{
this.hurt(_arg1.Sender);
}
public function turnRight():void{
this.scaleX = Math.abs(this.scaleX);
}
public function gotoHurt(_arg1:HitValue):void{
hp = (hp - bumpper.hit.damage);
if (!isIgnoreUpdateBossHPgage){
Environment.data.uiControl.updateBossGage(hp);
};
var _local2:gfxHitDamage = new gfx_hitNumber();
_local2.x = this.x;
_local2.y = (this.y - this.height);
_local2.setText(bumpper.hit.damage);
var _local3:MovieClip = new m_gfx_enemy_hit();
var _local4:Number = Random.next(2, 6);
var _local5:Point = bumpper.hit.parent.localToGlobal(new Point(bumpper.hit.x, bumpper.hit.y));
var _local6:Point = Environment.data.sceneManager.scene.localToGlobal(_local5);
_local3.x = this.x;
_local3.y = (_local6.y + 200);
_local3.scaleX = _local4;
_local3.scaleY = _local4;
_local3.transform.colorTransform = hurtColor;
_local3.rotation = Random.next(0, 360);
var _local7:Sound = new Puached();
_local7.play();
Environment.data.uiControl.setCombo(Environment.data.combo++);
Environment.data.lastTimeCombo = Environment.data.time;
Environment.data.world.GFxLayer.addChild(_local3);
Environment.data.world.GFxLayer.addChild(_local2);
if ((((_arg1.nameHit == Enum.attack_normal)) || ((consistace > 0)))){
consistace--;
} else {
consistace = consistaceMax;
curentState.hurt();
};
}
public function jump():void{
curentState.airPhase();
}
public function setLocation(_arg1:Number, _arg2:Number):void{
if (_arg1 < (Environment.secLeft + 20)){
if (this.scaleX > 0){
data.push("hitL");
};
this.x = (Environment.secLeft + 20);
} else {
if (_arg1 > ((Environment.worldWidth + Environment.data.offsetScreen) - 40)){
this.x = ((Environment.worldWidth + Environment.data.offsetScreen) - 40);
if (this.scaleX < 0){
data.push("hitR");
};
} else {
this.x = _arg1;
};
};
this.y = _arg2;
}
public function turnLeft():void{
this.scaleX = (Math.abs(this.scaleX) * -1);
}
public function getPosition():Point{
return (new Point(this.x, this.y));
}
public function onGround():void{
}
public function attack():void{
curentState.attack();
}
public function setState(_arg1:Object):void{
curentState = (_arg1 as BaseBossState);
}
public function walkRight():void{
isWalkLeft = false;
isWalkRight = true;
}
public function stand():void{
isWalkLeft = false;
isWalkRight = false;
curentState.stand();
}
public function update():void{
curentState.update();
if ((((hp <= 0)) && (!((curentState == stateContainer[Enum.die]))))){
this.die();
};
if (timeColorTran != 0){
timeColorTran--;
if (timeColorTran == 0){
this.transform.colorTransform = defaluatColor;
};
};
if (timeShakeScreen != 0){
timeShakeScreen--;
Environment.data.world.y = (Environment.data.world.y + Random.next(-10, 20));
Environment.data.world.x = (Environment.data.world.x + Random.next(-10, 20));
};
}
public function kill():void{
}
public function initState():void{
stateContainer = new Object();
stateContainer[Enum.walk] = new BossWalkState(this);
stateContainer[Enum.stand] = new BossStandState(this);
stateContainer[Enum.attack] = new BossAttackState(this);
stateContainer[Enum.air] = new BossAirState(this);
stateContainer[Enum.hurt] = new BossHurtState(this);
stateContainer[Enum.die] = new BossDieState(this);
}
public function set attackName(_arg1:String):void{
this._attackName = _arg1;
}
public function getState(_arg1:String):Object{
return (stateContainer[_arg1]);
}
public function notify():void{
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this));
}
public function get attackName():String{
return (_attackName);
}
public function doCommnad(_arg1:String){
}
public function walkLeft():void{
isWalkLeft = true;
isWalkRight = false;
}
}
}//package abstract.enemy.boss
Section 2
//Boss2 (abstract.enemy.boss.Boss2)
package abstract.enemy.boss {
import state.boss.*;
import state.boss.Boss2.*;
public class Boss2 extends BaseBoss {
override public function initState():void{
stateContainer = new Object();
stateContainer[Enum.walk] = new BossWalkState(this);
stateContainer[Enum.stand] = new BossStandState(this);
stateContainer[Enum.attack] = new Boss2AttackState(this);
stateContainer[Enum.air] = new BossAirState(this);
stateContainer[Enum.hurt] = new BossHurtState(this);
stateContainer[Enum.die] = new BossDieState(this);
}
}
}//package abstract.enemy.boss
Section 3
//Boss3 (abstract.enemy.boss.Boss3)
package abstract.enemy.boss {
import state.boss.*;
import state.boss.Boss3.*;
public class Boss3 extends BaseBoss {
override public function initState():void{
stateContainer = new Object();
stateContainer[Enum.walk] = new BossWalkState(this);
stateContainer[Enum.stand] = new BossStandState(this);
stateContainer[Enum.attack] = new Boass3AttackState(this);
stateContainer[Enum.air] = new BossAirState(this);
stateContainer[Enum.hurt] = new BossHurtState(this);
stateContainer[Enum.die] = new BossDieState(this);
}
}
}//package abstract.enemy.boss
Section 4
//Boss4 (abstract.enemy.boss.Boss4)
package abstract.enemy.boss {
import state.boss.*;
import state.boss.Boss3.*;
public class Boss4 extends BaseBoss {
override public function initState():void{
stateContainer = new Object();
stateContainer[Enum.walk] = new BossWalkState(this);
stateContainer[Enum.stand] = new BossStandState(this);
stateContainer[Enum.attack] = new Boss4AttackState(this);
stateContainer[Enum.air] = new BossAirStateBoss4(this);
stateContainer[Enum.hurt] = new BossHurtState(this);
stateContainer[Enum.die] = new BossDieState(this);
}
}
}//package abstract.enemy.boss
Section 5
//Boss5 (abstract.enemy.boss.Boss5)
package abstract.enemy.boss {
import state.boss.*;
import state.boss.Boss5.*;
public class Boss5 extends BaseBoss {
override public function initState():void{
stateContainer = new Object();
stateContainer[Enum.walk] = new BossWalkState(this);
stateContainer[Enum.stand] = new BossStandState(this);
stateContainer[Enum.attack] = new Boss5AttackState(this);
var _local1:BossAirState = new BossAirState(this);
_local1.isshakeScreen = true;
stateContainer[Enum.air] = _local1;
stateContainer[Enum.hurt] = new BossHurtState(this);
stateContainer[Enum.die] = new BossDieState(this);
}
}
}//package abstract.enemy.boss
Section 6
//BaseMinorController (abstract.enemy.minor.BaseMinorController)
package abstract.enemy.minor {
import flash.display.*;
import flash.events.*;
import object.*;
import xinnix.utils.*;
import flash.media.*;
import object.gfx.*;
public dynamic class BaseMinorController extends EventDispatcher {
public var _model:BaseMinorModel;
public var time:Number;
public var historyHit:Iterator;
public function BaseMinorController(_arg1:BaseMinorModel){
this.model = _arg1;
historyHit = new Iterator();
}
public function die():void{
model.doCommnad("die");
}
public function walkRight():void{
model.isPressRight = true;
model.isPressLeft = false;
}
public function attack():void{
model.currentState.attack();
}
public function update():void{
model.update();
if (model.hp <= 0){
die();
};
if (time != 0){
time--;
};
}
public function get model():BaseMinorModel{
return (_model);
}
public function jump():void{
model.currentState.jumpPhase();
}
public function hurt(_arg1:Object):void{
var _local2:HitValue = (_arg1 as HitValue);
if (historyHit.contain(_local2.hit)){
if ((Environment.data.time - _local2.hit.time) > 5){
model.bumpper = _local2;
historyHit.removeElement(_local2.hit);
time = 30;
gotoHurt(_local2);
};
} else {
_local2.hit.time = Environment.data.time;
historyHit.addElement(_local2.hit);
model.bumpper = _local2;
gotoHurt(_local2);
};
}
public function walkLeft():void{
model.isPressLeft = true;
model.isPressRight = false;
}
public function set model(_arg1:BaseMinorModel):void{
_model = _arg1;
}
public function viewStateNotify(_arg1:String):void{
if (_arg1 == "die"){
model.isKill = true;
} else {
model.actionName = "stand";
};
}
public function stand():void{
model.isPressRight = false;
model.isPressLeft = false;
model.currentState.stand();
}
public function get isJump():Boolean{
return (model.isJump);
}
public function gotoHurt(_arg1:HitValue):void{
model.hp = (model.hp - _arg1.hit.damage);
model.currentState.hurt();
var _local2:gfxHitDamage = new gfx_hitNumber();
_local2.x = model.location.x;
_local2.y = (model.location.y - model.mcHeight);
_local2.setText(_arg1.hit.damage);
var _local3:Number = Random.next(2, 5);
var _local4:MovieClip = new m_gfx_enemy_hit();
_local4.scaleX = _local3;
_local4.scaleY = _local3;
_local4.x = model.location.x;
_local4.y = (model.location.y - (model.mcHeight / 2));
_local4.rotation = Random.next(0, 360);
var _local5:Sound = new Puached();
_local5.play();
if (_arg1.hit.name == "FistOfKing"){
Environment.data.sceneManager.notifyProceed(Enum.proc_hurt_enemy2);
} else {
Environment.data.sceneManager.notifyProceed(Enum.proc_hurt_enemy);
};
Environment.data.world.GFxLayer.addChild(_local2);
Environment.data.world.GFxLayer.addChild(_local4);
}
public function doCommnad(_arg1:String=""):void{
}
}
}//package abstract.enemy.minor
Section 7
//BaseMinorModel (abstract.enemy.minor.BaseMinorModel)
package abstract.enemy.minor {
import xinnix.event.*;
import flash.events.*;
import object.*;
import xinnix.utils.*;
import flash.geom.*;
import state.minor.*;
public class BaseMinorModel extends EventDispatcher {
public var speedX:Number;// = 0
public var jumpState:BaseMinorState;
public var hp:Number;
public var totalFrame:Number;
public var previousAction:String;
public var score:Number;
public var currentState:BaseMinorState;
private var _iskill:Boolean;
public var attackState:BaseMinorState;
public var data:Array;
public var bumpper:HitValue;
public var location:Point;
public var consist:Number;
public var speed:Number;
public var walkState:BaseMinorState;
public var colorTransform;
public var gravityX:Number;// = 2
public var gravityY:Number;// = 2
public var scaleX:Number;
public var scaleY:Number;
public var mcWidth:Number;
public var hurtState:BaseMinorState;
public var specialAction:String;
public var standState:BaseMinorState;
public var mcHeight:Number;
public var alpha:Number;// = 1
public var actionName:String;
public var consistNumber:Number;
public var isPressRight:Boolean;
public var airState:BaseMinorState;
public var isPressLeft:Boolean;
public var dieState:BaseMinorState;
public var mass:Number;
public var stateContainer:Object;
public var isJump:Boolean;// = false
public var speedY:Number;// = 0
public var rotation:Number;
public function BaseMinorModel(){
colorTransform = new ColorTransform();
super();
standState = new MinorStandState(this);
walkState = new MinorWalkState(this);
attackState = new MinorAttackState(this);
hurtState = new MinorHurtState(this);
dieState = new MinorDieState(this);
airState = new MinorAirState(this);
jumpState = new MinorJumpState(this);
currentState = standState;
stateContainer = new Object();
stateContainer["standState"] = standState;
stateContainer["walkState"] = walkState;
stateContainer["attackState"] = attackState;
stateContainer["hurtState"] = hurtState;
stateContainer["dieState"] = dieState;
stateContainer["airState"] = airState;
stateContainer["jumpState"] = jumpState;
location = new Point(900, Environment.ground);
var _local1:HitValue = new HitValue(0, new Hit());
_local1.direction = Random.next(0, 2);
this.bumpper = _local1;
location.y = (location.y - 500);
scaleX = 1;
scaleY = 1;
speed = 5;
hp = 5;
consist = 10;
score = 10;
consistNumber = 10;
mass = Random.next(1, 10);
_iskill = false;
isPressLeft = false;
isPressRight = false;
data = new Array();
}
public function size(_arg1:Number):void{
this.scaleX = _arg1;
this.scaleY = _arg1;
notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleX"));
notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleY"));
}
public function setState(_arg1:BaseMinorState):void{
currentState = _arg1;
}
public function getCurrentState():BaseMinorState{
return (currentState);
}
public function get isKill():Boolean{
return (_iskill);
}
public function veiwChange(_arg1:String=""):void{
notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, _arg1));
}
public function setLocation(_arg1:Number, _arg2:Number){
if ((((location.x <= 0)) && ((_arg1 < 0)))){
location.x = 0;
data.push("hitL");
} else {
if ((((location.x >= (Environment.worldWidth - 20))) && ((_arg1 > (Environment.worldWidth - 20))))){
location.x = (Environment.worldWidth - 20);
data.push("hitR");
} else {
location.x = _arg1;
};
};
location.y = _arg2;
dispatchEvent(new Event(Event.CHANGE));
}
public function notifyViewUpdateData():void{
notifyEvent(new Event(Event.CHANGE));
}
public function onGround():Boolean{
if (((((location.y + 10) > Environment.ground)) || (((location.y - 10) < Environment.ground)))){
return (true);
};
return (false);
}
public function set isKill(_arg1:Boolean):void{
_iskill = _arg1;
}
public function update():void{
currentState.update();
}
public function kill():void{
dispatchEvent(new GameEvent(GameEvent.DEAD, "dead"));
}
public function doCommnad(_arg1:String){
if (_arg1 == "die"){
if (this.currentState != getState("dieState")){
this.currentState = getState("dieState");
this.currentState.init();
Environment.data.score = (Environment.data.score + this.score);
Environment.data.uiControl.updateScore();
};
};
}
public function notifyEvent(_arg1:Event){
dispatchEvent(_arg1);
}
public function getState(_arg1:String):BaseMinorState{
if (stateContainer[_arg1] != undefined){
return (stateContainer[_arg1]);
};
return (null);
}
}
}//package abstract.enemy.minor
Section 8
//BaseMinorView (abstract.enemy.minor.BaseMinorView)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
public class BaseMinorView {
public var model:BaseMinorModel;
public var mc:MovieClip;
public var control:BaseMinorController;
public function BaseMinorView(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
_arg3.x = _arg1.location.x;
_arg3.y = _arg1.location.y;
_arg1.addEventListener(Event.CHANGE, update);
_arg1.addEventListener(GameEvent.CHANGE_STATUS, onChange);
_arg3.addEventListener(GameEvent.SUCCESS, onActionSuccess);
_arg3.addEventListener(GameEvent.HITOBJECT, onHitObject);
_arg1.addEventListener(GameEvent.DEAD, onDead);
this.model = _arg1;
this.control = _arg2;
this.mc = _arg3;
this.model.rotation = _arg3.rotation;
this.model.mcHeight = _arg3.height;
this.model.mcWidth = _arg3.width;
}
public function stop():void{
mc.stop();
}
public function onDead(_arg1:GameEvent):void{
var _local2:DisplayObjectContainer = mc.parent;
delete ??getglobalscope
[_local2.removeChild(mc)];
}
public function gotoStop(_arg1:String){
var actionName = _arg1;
if (mc.currentLabel != actionName){
try {
mc.gotoAndStop(actionName);
} catch(e:Error) {
};
};
}
public function update(_arg1:Event=null):void{
mc.x = model.location.x;
mc.y = model.location.y;
}
public function onActionSuccess(_arg1:GameEvent){
control.viewStateNotify((_arg1.Sender as String));
}
public function onChange(_arg1:GameEvent):void{
if (_arg1.Sender == "action"){
gotoPlay(model.actionName);
} else {
if (_arg1.Sender == "scaleX"){
mc.scaleX = model.scaleX;
} else {
if (_arg1.Sender == "scaleY"){
mc.scaleY = model.scaleY;
} else {
if (_arg1.Sender == "color"){
mc.transform.colorTransform = model.colorTransform;
} else {
if (_arg1.Sender == "stop"){
stop();
};
};
};
};
};
}
public function play():void{
mc.play();
}
public function gotoPlay(_arg1:String){
var actionName = _arg1;
if (mc.currentLabel != actionName){
try {
mc.gotoAndPlay(actionName);
} catch(e:Error) {
};
};
}
public function onHitObject(_arg1:GameEvent):void{
control.hurt(_arg1.Sender);
}
}
}//package abstract.enemy.minor
Section 9
//MinorCactus (abstract.enemy.minor.MinorCactus)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
import object.bullet.*;
public class MinorCactus extends BaseMinorView {
public function MinorCactus(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
super(_arg1, _arg2, _arg3);
}
override public function onChange(_arg1:GameEvent):void{
var _local2:*;
var _local3:Bullet_maid;
var _local4:Number;
super.onChange(_arg1);
if (_arg1.Sender == "action"){
if (model.actionName == Enum.attack){
_local2 = -1;
while (_local2 < 2) {
_local3 = new m_enemy_cactus_bullet();
_local3.x = (model.location.x - (5 * Math.abs(mc.scaleX)));
_local3.y = (model.location.y - (20 * mc.scaleY));
_local4 = (Random.next(1, 4) / Random.next(1, 3));
_local3.scaleX = _local4;
_local3.scaleY = _local4;
_local3.angle = (_local3.angle + (20 * _local2));
_local3.duration = Random.next(20, 60);
if ((((model.scaleX > 1)) || ((model.scaleX < -1)))){
_local3.scaleX = 1.5;
_local3.scaleY = 1.5;
};
if (model.scaleX > 0){
_local3.speed = (Math.abs(_local3.speed) * -1);
};
if (model.scaleX < 0){
_local3.speed = Math.abs(_local3.speed);
_local3.x = (model.location.x + (5 * Math.abs(mc.scaleX)));
};
Environment.data.sceneManager.processList.push(_local3);
Environment.data.world.enemyDamageLayer.addChild(_local3);
_local2++;
};
};
};
}
}
}//package abstract.enemy.minor
Section 10
//MinorDollView (abstract.enemy.minor.MinorDollView)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import xinnix.utils.*;
import object.bullet.*;
public class MinorDollView extends BaseMinorView {
public function MinorDollView(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
super(_arg1, _arg2, _arg3);
}
override public function update(_arg1:Event=null):void{
super.update(_arg1);
}
override public function onChange(_arg1:GameEvent):void{
var _local2:Number;
var _local3:*;
var _local4:Bullet_maid;
super.onChange(_arg1);
if (_arg1.Sender == "action"){
if (model.actionName == Enum.attack){
_local2 = Random.next(2, 4);
_local3 = -1;
while (_local3 < _local2) {
_local4 = new m_enemy_doll_bullet();
_local4.x = (model.location.x - 30);
_local4.y = (model.location.y - 20);
_local4.duration = 100;
_local4.angle = (_local4.angle + (10 * _local3));
_local4.scaleX = 1.5;
_local4.scaleY = 1.5;
if (model.scaleX > 0){
_local4.speed = (Math.abs(_local4.speed) * -1);
};
if (model.scaleX < 0){
_local4.speed = Math.abs(_local4.speed);
_local4.x = (model.location.x + 30);
_local4.scaleX = (_local4.scaleX * -1);
};
Environment.data.sceneManager.processList.push(_local4);
Environment.data.world.enemyDamageLayer.addChild(_local4);
_local3++;
};
};
};
}
}
}//package abstract.enemy.minor
Section 11
//MinorGuardAView (abstract.enemy.minor.MinorGuardAView)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
import object.bullet.*;
public class MinorGuardAView extends BaseMinorView {
public function MinorGuardAView(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
super(_arg1, _arg2, _arg3);
}
override public function onChange(_arg1:GameEvent):void{
var _local2:Bullet_Gaurd;
super.onChange(_arg1);
if (_arg1.Sender == "action"){
if (model.actionName == Enum.attack){
_local2 = new m_bullet_guard();
_local2.x = (model.location.x - (80 * Math.abs(mc.scaleX)));
_local2.y = (model.location.y - (50 * mc.scaleY));
_local2.scaleX = 1;
_local2.scaleY = 1;
_local2.duration = Random.next(30, 60);
if ((((model.scaleX > 1)) || ((model.scaleX < -1)))){
_local2.scaleX = 1.5;
_local2.scaleY = 1.5;
};
if (model.scaleX > 0){
_local2.speed = (Math.abs(_local2.speed) * -1);
};
if (model.scaleX < 0){
_local2.speed = Math.abs(_local2.speed);
_local2.x = (model.location.x + (80 * Math.abs(mc.scaleX)));
};
Environment.data.sceneManager.processList.push(_local2);
Environment.data.world.enemyDamageLayer.addChild(_local2);
};
};
}
}
}//package abstract.enemy.minor
Section 12
//MinorMaidA (abstract.enemy.minor.MinorMaidA)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import object.bullet.*;
public class MinorMaidA extends BaseMinorView {
public function MinorMaidA(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
super(_arg1, _arg2, _arg3);
}
override public function onChange(_arg1:GameEvent):void{
var _local2:*;
var _local3:Bullet_maid;
super.onChange(_arg1);
if (_arg1.Sender == "action"){
if (model.actionName == Enum.attack){
_local2 = -1;
while (_local2 < 2) {
_local3 = new m_bullet_maid();
_local3.x = (model.location.x - 80);
_local3.y = (model.location.y - 20);
_local3.duration = 12;
_local3.angle = (_local3.angle + (10 * _local2));
if (model.scaleX > 0){
_local3.speed = (Math.abs(_local3.speed) * -1);
};
if (model.scaleX < 0){
_local3.speed = Math.abs(_local3.speed);
_local3.x = (model.location.x + 80);
_local3.scaleX = (_local3.scaleX * -1);
};
Environment.data.sceneManager.processList.push(_local3);
Environment.data.world.enemyDamageLayer.addChild(_local3);
_local2++;
};
};
};
}
}
}//package abstract.enemy.minor
Section 13
//MinorRobot (abstract.enemy.minor.MinorRobot)
package abstract.enemy.minor {
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
import object.bullet.*;
public class MinorRobot extends BaseMinorView {
public function MinorRobot(_arg1:BaseMinorModel, _arg2:BaseMinorController, _arg3:MovieClip){
super(_arg1, _arg2, _arg3);
}
override public function onChange(_arg1:GameEvent):void{
var _local2:Bullet_robot;
var _local3:Number;
super.onChange(_arg1);
if (_arg1.Sender == "action"){
if (model.actionName == Enum.attack){
_local2 = new m_enemy_robot_missile();
_local3 = (Random.next(1, 4) / Random.next(1, 3));
_local2.x = (model.location.x + (20 * Math.abs((mc.scaleX + _local3))));
_local2.y = (model.location.y - (30 * mc.scaleY));
_local2.scaleX = _local3;
_local2.scaleY = _local3;
_local2.duration = Random.next(200, 300);
_local2.varOfAngle = Random.next(1, 5);
if (_local2.varOfAngle > 2){
_local2.duration = Random.next(30, 50);
};
if ((((model.scaleX > 1)) || ((model.scaleX < -1)))){
_local2.scaleX = 1.5;
_local2.scaleY = 1.5;
};
if (model.scaleX > 0){
_local2.speedX = (Math.abs(_local2.speed) * -1);
_local2.speedY = (Math.abs(_local2.speed) * -1);
};
if (model.scaleX < 0){
_local2.scaleX = (Math.abs(_local2.scaleX) * -1);
_local2.angle = 270;
_local2.x = (model.location.x - (10 * Math.abs(mc.scaleX)));
};
Environment.data.sceneManager.processList.push(_local2);
Environment.data.world.enemyDamageLayer.addChild(_local2);
};
};
}
}
}//package abstract.enemy.minor
Section 14
//BaseAction (abstract.BaseAction)
package abstract {
public class BaseAction {
public var actionName:String;// = ""
public var NAT:String;// = "NAT"
public var processing:String;// = "processing"
public var undefine:String;// = "undefine"
public var action:String;// = "NAT"
public function parse(_arg1:Array):String{
return ("");
}
}
}//package abstract
Section 15
//BaseCommand (abstract.BaseCommand)
package abstract {
import flash.events.*;
public dynamic class BaseCommand extends EventDispatcher {
public var parameter:Object;
public var data:String;// = ""
public var duration:Number;// = 0
public var controller:Object;
public function BaseCommand(){
parameter = new Object();
super();
}
public function onDuration():Boolean{
if (duration <= 0){
return (false);
};
return (true);
}
public function execute():void{
}
public function expire():void{
this.duration = -1;
}
}
}//package abstract
Section 16
//BaseHero (abstract.BaseHero)
package abstract {
import flash.display.*;
import object.*;
import xinnix.utils.*;
public class BaseHero extends BaseObject {
public var hit_RisngSun:Hitchild;
override public function getHit():Array{
var _local3:DisplayObject;
var _local4:HitValue;
var _local1:Array = new Array();
var _local2:* = 0;
while (_local2 < this.numChildren) {
_local3 = this.getChildAt(_local2);
if ((_local3 is Hit)){
_local4 = new HitValue(Random.next(1, 5), (_local3 as Hit));
_local4.mcOwner = this;
_local4.nameHit = this.currentLabel;
if (this.scaleX > 0){
if ((_local3 as Hit).valuePoint == 1){
_local4.direction = 0;
} else {
_local4.direction = 1;
};
} else {
if ((_local3 as Hit).valuePoint == 0){
_local4.direction = 0;
} else {
_local4.direction = 1;
};
};
_local4.hit.damage = Math.floor((_local4.hit.tempDamage + Environment.data.STR));
if (this.currentLabel == Enum.attack_counter){
_local4.hit.damage = Environment.data.powerCount;
_local4.hit.tempDamage = Environment.data.powerCount;
};
_local1.push(_local4);
};
_local2++;
};
return (_local1);
}
}
}//package abstract
Section 17
//BaseObject (abstract.BaseObject)
package abstract {
import flash.display.*;
import xinnix.event.*;
import object.*;
import xinnix.utils.*;
import flash.geom.*;
import xinnix.*;
public class BaseObject extends MovieClip {
public var mcHeight:Number;
public var numOfDevRotation:Number;
public function BaseObject(){
numOfDevRotation = 4;
mcHeight = this.height;
}
public function getAoE():Array{
var _local4:HitValue;
var _local1:Array = getHit();
var _local2:Array = new Array();
var _local3:* = 0;
while (_local3 < _local1.length) {
_local4 = (_local1[_local3] as HitValue);
if (_local4.hit.type == "AoE"){
_local2.push(_local4);
};
_local3++;
};
return (_local2);
}
public function hitTest(_arg1:BaseObject):Boolean{
var _local5:HitValue;
var _local6:MovieClip;
var _local7:*;
var _local8:HitValue;
var _local9:MovieClip;
var _local2:Array = _arg1.getAoE();
var _local3:Array = this.getDamage();
var _local4:* = 0;
while (_local4 < _local2.length) {
_local5 = (_local2[_local4] as HitValue);
_local6 = _local5.hit;
_local7 = 0;
while (_local7 < _local3.length) {
_local8 = (_local3[_local7] as HitValue);
_local9 = _local8.hit;
if ((((_local9.parent is mobj_hero)) && ((_local6.parent is m_boss2_bullet)))){
};
if (_local9.hitTestObject(_local6)){
this.notifyHitter(_arg1);
_arg1.notifyHit(_local8);
return (true);
};
_local7++;
};
_local4++;
};
return (false);
}
public function notifyHit(_arg1:Object):void{
dispatchEvent(new GameEvent(GameEvent.HITOBJECT, _arg1));
}
public function remove():void{
if (this.parent != null){
this.parent.removeChild(this);
};
}
public function getDamage():Array{
var _local4:HitValue;
var _local1:Array = getHit();
var _local2:Array = new Array();
var _local3:* = 0;
while (_local3 < _local1.length) {
_local4 = (_local1[_local3] as HitValue);
if (_local4.hit.type == "damage"){
_local2.push(_local4);
};
_local3++;
};
return (_local2);
}
public function scaltion(_arg1:Number, _arg2:Number){
var _local3:Matrix = this.transform.matrix.clone();
MatrixTransformer.setScaleX(_local3, _arg1);
MatrixTransformer.setScaleY(_local3, _arg2);
this.transform.matrix = _local3;
}
public function translation(_arg1:Number, _arg2:Number):void{
var _local3:Matrix = this.transform.matrix;
_local3.translate(_arg1, _arg2);
this.transform.matrix = _local3;
}
public function rotationPoint(_arg1:Number):void{
var _local2:Matrix = this.transform.matrix;
MatrixTransformer.rotateAroundInternalPoint(_local2, 0, (-(mcHeight) / numOfDevRotation), _arg1);
this.transform.matrix = _local2;
}
public function gotoPlay(_arg1:String):void{
if (this.currentLabel != _arg1){
gotoAndPlay(_arg1);
};
}
public function getHit():Array{
var _local3:DisplayObject;
var _local4:HitValue;
var _local1:Array = new Array();
var _local2:* = 0;
while (_local2 < this.numChildren) {
_local3 = this.getChildAt(_local2);
if ((_local3 is Hit)){
_local4 = new HitValue(Random.next(1, 5), (_local3 as Hit));
_local4.mcOwner = this;
if (this.scaleX > 0){
if ((_local3 as Hit).valuePoint == 1){
_local4.direction = 0;
} else {
_local4.direction = 1;
};
} else {
if ((_local3 as Hit).valuePoint == 0){
_local4.direction = 0;
} else {
_local4.direction = 1;
};
};
_local4.hit.damage = (_local4.hit.tempDamage + Random.next(0, 20));
_local1.push(_local4);
};
_local2++;
};
return (_local1);
}
public function notifyHitter(_arg1:Object):void{
}
}
}//package abstract
Section 18
//ActionCounter (action.hero.ActionCounter)
package action.hero {
import abstract.*;
public class ActionCounter extends BaseAction {
public function ActionCounter(){
this.actionName = Enum.attack_counter;
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.guard){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.punch){
action = actionName;
return (action);
};
};
};
if (_arg1[_local2].keycode == KeyConfig.punch){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.guard){
action = actionName;
return (action);
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 19
//ActionDashLeft (action.hero.ActionDashLeft)
package action.hero {
import abstract.*;
public class ActionDashLeft extends BaseAction {
public function ActionDashLeft(){
this.actionName = "dashLeft";
}
override public function parse(_arg1:Array):String{
var _local3:*;
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.left){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.left){
_local3 = (_arg1[(_local2 + 1)].time - _arg1[_local2].time);
if (_local3 < 2){
action = actionName;
return (action);
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 20
//ActionDashRight (action.hero.ActionDashRight)
package action.hero {
import abstract.*;
public class ActionDashRight extends BaseAction {
public function ActionDashRight(){
this.actionName = "dashRight";
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.right){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.right){
action = actionName;
return (action);
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 21
//ActionFistOfKing (action.hero.ActionFistOfKing)
package action.hero {
import abstract.*;
public class ActionFistOfKing extends BaseAction {
public function ActionFistOfKing(){
this.actionName = Enum.attack_FistOfKing;
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.down){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.righting){
if (_arg1[(_local2 + 2)] != undefined){
if (_arg1[(_local2 + 2)].keycode == KeyConfig.down){
if (_arg1[(_local2 + 3)] != undefined){
if (_arg1[(_local2 + 3)].keycode == KeyConfig.punch){
if (Environment.data.isFistOfKingEnable){
action = actionName;
};
return (action);
};
};
};
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 22
//ActionFistOfStrom (action.hero.ActionFistOfStrom)
package action.hero {
import abstract.*;
public class ActionFistOfStrom extends BaseAction {
public function ActionFistOfStrom(){
this.actionName = Enum.attack_FistOfStrome;
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.down){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.righting){
if (_arg1[(_local2 + 2)] != undefined){
if (_arg1[(_local2 + 2)].keycode == KeyConfig.punch){
if (Environment.data.isFistOfStromEnable){
action = actionName;
};
_arg1 = new Array();
return (action);
};
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 23
//ActionMightOfHeavent (action.hero.ActionMightOfHeavent)
package action.hero {
import abstract.*;
public class ActionMightOfHeavent extends BaseAction {
public function ActionMightOfHeavent(){
this.actionName = Enum.attack_MightOfHeavent1;
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.down){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.up){
if (_arg1[(_local2 + 2)] != undefined){
if (_arg1[(_local2 + 2)].keycode == KeyConfig.punch){
if (Environment.data.isMightOfHeaventEnable){
action = actionName;
};
return (action);
};
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 24
//ActionRisingSun (action.hero.ActionRisingSun)
package action.hero {
import abstract.*;
public class ActionRisingSun extends BaseAction {
public function ActionRisingSun(){
this.actionName = Enum.attack_RisngSun;
}
override public function parse(_arg1:Array):String{
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.down){
if (_arg1[(_local2 + 1)] != undefined){
if (_arg1[(_local2 + 1)].keycode == KeyConfig.down){
if (_arg1[(_local2 + 2)] != undefined){
if (_arg1[(_local2 + 2)].keycode == KeyConfig.punch){
if (Environment.data.isRisingSunEnable){
action = actionName;
};
return (action);
};
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 25
//ActionTigerDance (action.hero.ActionTigerDance)
package action.hero {
import abstract.*;
public class ActionTigerDance extends BaseAction {
var oldList:Array;
public function ActionTigerDance(){
oldList = new Array();
this.actionName = Enum.attack_normal;
}
override public function parse(_arg1:Array):String{
var _local3:*;
var _local4:*;
action = NAT;
var _local2:* = 0;
while (_local2 < _arg1.length) {
if (_arg1[_local2].keycode == KeyConfig.punch){
oldList.push(_arg1[_local2]);
if (oldList.length == 1){
action = actionName;
return (action);
};
if (oldList[0] != undefined){
if (oldList[0].keycode == KeyConfig.punch){
_local3 = (_arg1[_local2].time - oldList[0].time);
if (_local3 < 1.4){
if (oldList[1] != undefined){
if (oldList[1].keycode == KeyConfig.punch){
_local4 = (oldList[0].time - oldList[1].time);
if (_local4 < 1.4){
oldList = new Array();
action = Enum.attack_TigerDance;
return (action);
};
};
};
} else {
oldList = new Array();
};
};
};
};
_local2++;
};
return (action);
}
}
}//package action.hero
Section 26
//AIBoss (ai.AIBoss)
package ai {
import xinnix.event.*;
import xinnix.utils.*;
import abstract.enemy.boss.*;
import abstract.*;
import command.*;
public class AIBoss {
public var com_left:String;// = "left"
public var versionNum:Number;
public var numSult:Number;// = 3
public var com_gotoCenter:String;// = "gotoCenter"
public var com_stand:String;// = "stand"
public var commandKeeper:Object;
public var com_jump:String;// = "jump"
var charecter:BaseBoss;
public var com_follow:String;// = "follow"
public var commander:BaseCommand;
var range:Number;
public var random:RandomWeight;
public var com_attack:String;// = "attack"
public var time:Number;// = 0
public var commandArray:Object;
public var com_turnTohero:String;// = "com_tuenTohero"
public var com_right:String;// = "right"
public var commandSuite:Iterator;
private var direction:String;
public function AIBoss(_arg1:BaseBoss){
this.versionNum = 1;
this.charecter = _arg1;
this.commandArray = new Array();
commandSuite = new Iterator();
random = new RandomWeight();
init();
}
public function computeDirection():void{
var _local1:CommandData;
var _local2:BaseCommand;
if (commandSuite.hasNext()){
_local1 = (commandSuite.next() as CommandData);
_local2 = (commandKeeper[_local1.name] as BaseCommand);
_local2.duration = _local1.duration;
_local2.data = _local1.data;
commander = _local2;
} else {
newCommandSuit();
};
}
public function init():void{
initCommand();
initCommandArray();
newCommandSuit();
computeDirection();
}
public function initCommand():void{
commander = new BaseCommand();
commandKeeper = new Object();
if (versionNum == 2){
addCommand(new CommandWalkLeft(charecter), com_left);
addCommand(new CommandWalkRight(charecter), com_right);
addCommand(new CommandStand(charecter), com_stand);
addCommand(new CommandAttackBoss2(charecter), com_attack);
addCommand(new CommandFollowHero(charecter), com_follow);
addCommand(new CommandJump(charecter), com_jump);
addCommand(new CommandTurnToHero(charecter), com_turnTohero);
} else {
if (versionNum == 4){
addCommand(new CommandWalkLeft(charecter), com_left);
addCommand(new CommandWalkRight(charecter), com_right);
addCommand(new CommandStand(charecter), com_stand);
addCommand(new CommandAttackBoss4(charecter), com_attack);
addCommand(new CommandFollowHero(charecter), com_follow);
addCommand(new CommandJump(charecter), com_jump);
addCommand(new CommandTurnToHero(charecter), com_turnTohero);
} else {
if (versionNum == 3){
addCommand(new CommandWalkLeft(charecter), com_left);
addCommand(new CommandWalkRight(charecter), com_right);
addCommand(new CommandStand(charecter), com_stand);
addCommand(new CommandAttackBoss3(charecter), com_attack);
addCommand(new CommandFollowHero(charecter), com_follow);
addCommand(new CommandJump(charecter), com_jump);
addCommand(new CommandTurnToHero(charecter), com_turnTohero);
} else {
if (versionNum == 5){
addCommand(new CommandWalkLeft(charecter), com_left);
addCommand(new CommandWalkRight(charecter), com_right);
addCommand(new CommandStand(charecter), com_stand);
addCommand(new CommandAttack(charecter), com_attack);
addCommand(new CommandFollowHero(charecter), com_follow);
addCommand(new CommandJump(charecter), com_jump);
addCommand(new CommandTurnToHero(charecter), com_turnTohero);
} else {
addCommand(new CommandWalkLeft(charecter), com_left);
addCommand(new CommandWalkRight(charecter), com_right);
addCommand(new CommandStand(charecter), com_stand);
addCommand(new CommandAttackBoss1(charecter), com_attack);
addCommand(new CommandFollowHero(charecter), com_follow);
addCommand(new CommandJump(charecter), com_jump);
addCommand(new CommandTurnToHero(charecter), com_turnTohero);
};
};
};
};
addCommand(new CommandGoToCenterOfScreen(charecter), com_gotoCenter);
}
public function onCommnadComplete(_arg1:GameEvent){
computeDirection();
}
public function isKill():Boolean{
return (charecter.isKill);
}
public function selectCommand(_arg1:String):void{
commandSuite = commandArray[_arg1];
}
public function compute():void{
var _local1:Number;
var _local2:Number;
var _local3:*;
if ((((charecter.getState(Enum.hurt) == charecter.getCurrentState())) || ((charecter.getState(Enum.die) == charecter.getCurrentState())))){
} else {
time++;
if ((time % 400) == 0){
initRandomWeight();
};
_local1 = 0;
_local2 = 0;
_local3 = 0;
while (_local3 < charecter.data.length) {
if (charecter.data[_local3] == "hitL"){
_local1++;
} else {
if (charecter.data[_local3] == "hitR"){
_local2++;
};
};
_local3++;
};
if (_local1 > 3){
commander.duration = 0;
charecter.data = new Array();
};
if (_local2 > 3){
commander.duration = 0;
charecter.data = new Array();
};
commander.execute();
};
charecter.update();
}
public function newCommandSuit():void{
var _local1:* = Random.next(1, (numSult + 1)).toString();
selectCommand(_local1);
commandSuite.reset();
}
public function update():void{
compute();
}
public function initRandomWeight():void{
}
public function nextCommand():void{
commander.expire();
computeDirection();
}
public function getCommandSuite(_arg1:String):Object{
var _local2:Iterator = new Iterator();
if (versionNum == 1){
this.numSult = 5;
switch (_arg1){
case "1":
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_1));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_jump, 10));
_local2.addElement(new CommandData(com_attack, 10, Enum.attack_3));
_local2.addElement(new CommandData(com_gotoCenter, 20));
break;
case "2":
_local2.addElement(new CommandData(com_gotoCenter, 50));
_local2.addElement(new CommandData(com_jump, 100));
break;
case "3":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_follow, 50));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
break;
case "4":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_follow, 50));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
break;
case "5":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_1));
_local2.addElement(new CommandData(com_gotoCenter, 10));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_1));
_local2.addElement(new CommandData(com_gotoCenter, 10));
break;
case "6":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_1));
_local2.addElement(new CommandData(com_gotoCenter, 10));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_1));
_local2.addElement(new CommandData(com_gotoCenter, 10));
break;
};
} else {
if (versionNum == 2){
this.numSult = 6;
switch (_arg1){
case "1":
_local2.addElement(new CommandData(com_gotoCenter, 10));
_local2.addElement(new CommandData(com_left, 10));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_right, 20));
break;
case "2":
_local2.addElement(new CommandData(com_gotoCenter, 20));
_local2.addElement(new CommandData(com_attack, 25, Enum.attack));
_local2.addElement(new CommandData(com_attack, 25, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_gotoCenter, 20));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 10, Enum.attack_1));
break;
case "3":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
break;
case "4":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
break;
case "5":
_local2.addElement(new CommandData(com_gotoCenter, 30));
break;
case "6":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_jump, 10));
_local2.addElement(new CommandData(com_jump, 10));
break;
};
} else {
if (versionNum == 3){
this.numSult = 6;
switch (_arg1){
case "1":
_local2.addElement(new CommandData(com_attack, 4, Enum.attack_1));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 7, Enum.attack_1));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 6, Enum.attack_1));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 70, Enum.attack_1));
break;
case "2":
_local2.addElement(new CommandData(com_attack, 20, Enum.call_minion));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_gotoCenter, 20));
_local2.addElement(new CommandData(com_attack, 20, Enum.call_minion));
break;
case "3":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 50, Enum.chargePower));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_2));
break;
case "4":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_jump, 10));
break;
case "5":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
break;
case "6":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_attack, 50, Enum.chargePower));
_local2.addElement(new CommandData(com_attack, 50, Enum.attack_2));
break;
};
} else {
if (versionNum == 4){
this.numSult = 6;
switch (_arg1){
case "1":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_left, 10));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
if (Random.next(1, 5) == 2){
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
};
_local2.addElement(new CommandData(com_right, 20));
break;
case "2":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 25, Enum.attack));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_gotoCenter, 20));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 10, Enum.attack_1));
break;
case "3":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
if (Random.next(1, 5) == 2){
_local2.addElement(new CommandData(com_attack, 8, Enum.attack));
};
break;
case "4":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
if (Random.next(1, 5) == 2){
_local2.addElement(new CommandData(com_attack, 8, Enum.attack_3));
};
break;
case "5":
_local2.addElement(new CommandData(com_gotoCenter, 30));
break;
case "6":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_jump, 10));
_local2.addElement(new CommandData(com_jump, 10));
break;
};
} else {
if (versionNum == 5){
this.numSult = 8;
switch (_arg1){
case "1":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_jump, 10));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_jump, 10));
break;
case "2":
_local2.addElement(new CommandData(com_follow, 30));
break;
case "3":
_local2.addElement(new CommandData(com_gotoCenter, 50));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 40, Enum.attack_2));
break;
case "4":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 60, Enum.attack_3));
break;
case "5":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 20, Enum.attack));
_local2.addElement(new CommandData(com_attack, 20, Enum.attack));
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 20, Enum.attack));
_local2.addElement(new CommandData(com_attack, 20, Enum.attack));
break;
case "6":
_local2.addElement(new CommandData(com_follow, 20));
_local2.addElement(new CommandData(com_jump, 10));
_local2.addElement(new CommandData(com_jump, 10));
break;
case "7":
_local2.addElement(new CommandData(com_right, 10));
_local2.addElement(new CommandData(com_left, 10));
break;
case "8":
_local2.addElement(new CommandData(com_turnTohero, 5));
_local2.addElement(new CommandData(com_attack, 40, Enum.call_minion));
break;
};
};
};
};
};
};
return (_local2);
}
public function addCommand(_arg1:Object, _arg2:String){
commandKeeper[_arg2] = _arg1;
(commandKeeper[_arg2] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
}
public function kill():void{
charecter.kill();
}
public function initCommandArray():void{
var _local1:* = 1;
while (_local1 <= numSult) {
commandArray[_local1.toString()] = getCommandSuite(_local1.toString());
_local1++;
};
}
}
}//package ai
Section 27
//AInumberOne (ai.AInumberOne)
package ai {
import abstract.enemy.minor.*;
import xinnix.event.*;
import xinnix.utils.*;
import abstract.*;
import command.*;
public class AInumberOne {
public var random:RandomWeight;
public var left:String;// = "left"
public var attack:String;// = "attack"
public var time:Number;// = 0
public var stand:String;// = "stand"
private var direction:String;
public var right:String;// = "right"
public var control:BaseMinorController;
public var commandKeeper:Object;
public var commander:BaseCommand;
public var model:BaseMinorModel;
public var varsion:Number;
public var jump:String;// = "jump"
public var follow:String;// = "follow"
public var frequencyTimeAI:Number;// = 10
public var range:Number;
public function AInumberOne(_arg1:Number, _arg2:BaseMinorController, _arg3:BaseMinorModel){
this.control = _arg2;
this.model = _arg3;
this.range = _arg1;
varsion = 0;
initCommand();
initRandomWeight();
Environment.data.sceneManager.enemyModelList.push(_arg2);
computeDirection();
}
public function initRandomWeight():void{
random = new RandomWeight();
if (varsion == 0){
random.add(left, 5);
random.add(right, 5);
random.add(stand, 3);
random.add(attack, 10);
random.add(follow, 15);
} else {
if (varsion == 1){
random.add(left, 6);
random.add(right, 6);
random.add(stand, 5);
random.add(attack, 3);
random.add(follow, 7);
} else {
if (varsion == 2){
random.add(left, 2);
random.add(right, 3);
random.add(stand, 10);
random.add(attack, 5);
random.add(follow, 3);
} else {
if (varsion == 3){
random.add(jump, 20);
random.add(left, 10);
random.add(right, 10);
random.add(stand, 10);
random.add(attack, 20);
random.add(follow, 3);
} else {
if (varsion == 4){
random.add(jump, 10);
random.add(left, 4);
random.add(right, 5);
random.add(stand, 10);
random.add(attack, 20);
random.add(follow, 20);
} else {
if (varsion == 5){
random.add(left, 2);
random.add(right, 3);
random.add(stand, 10);
random.add(attack, 20);
random.add(follow, 3);
} else {
if (varsion == 6){
random.add(left, 3);
random.add(right, 3);
random.add(stand, 10);
random.add(attack, 10);
random.add(follow, 7);
};
};
};
};
};
};
};
random.refesh();
}
public function getHeroLocation():HeroModel{
return (Environment.data.heroModel);
}
public function computeDirection():void{
direction = (random.next() as String);
if (direction == left){
commander = commandKeeper["left"];
commander.duration = Random.next(10, 15);
} else {
if (direction == right){
commander = commandKeeper["right"];
commander.duration = Random.next(10, 15);
} else {
if (direction == stand){
commander = commandKeeper["stand"];
commander.duration = Random.next(10, 10);
} else {
if (direction == attack){
commander = commandKeeper["attack"];
commander.duration = 10;
} else {
if (direction == follow){
commander = commandKeeper["follow"];
commander.duration = Random.next(10, 100);
} else {
commander = commandKeeper[direction];
commander.duration = Random.next(10, 20);
};
};
};
};
};
}
public function update():void{
compute();
}
public function initCommand():void{
commander = new BaseCommand();
commandKeeper = new Object();
commandKeeper["left"] = new CommandWalkLeft(control);
commandKeeper["right"] = new CommandWalkRight(control);
commandKeeper["stand"] = new CommandStand(control);
commandKeeper["attack"] = new CommandAttack(control);
commandKeeper["follow"] = new CommandFollowHero(control);
commandKeeper["jump"] = new CommandJump(control);
(commandKeeper["left"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
(commandKeeper["right"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
(commandKeeper["stand"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
(commandKeeper["attack"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
(commandKeeper["follow"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
(commandKeeper["jump"] as BaseCommand).addEventListener(GameEvent.COMPLETE, onCommnadComplete);
}
public function kill():void{
model.kill();
}
public function onCommnadComplete(_arg1:GameEvent){
computeDirection();
}
public function isKill():Boolean{
return (model.isKill);
}
public function compute():void{
time++;
if ((time % 400) == 0){
initRandomWeight();
};
var _local1:Number = 0;
var _local2:Number = 0;
var _local3:* = 0;
while (_local3 < model.data.length) {
if (model.data[_local3] == "hitL"){
_local1++;
} else {
if (model.data[_local3] == "hitR"){
_local2++;
};
};
_local3++;
};
if (_local1 > 3){
model.data = new Array();
random.add(right, ((random.getWeight(right) as Number) + 100));
direction = right;
random.refesh();
};
if (_local2 > 3){
model.data = new Array();
random.add(left, ((random.getWeight(left) as Number) + 100));
direction = left;
random.refesh();
};
commander.execute();
control.update();
}
}
}//package ai
Section 28
//CommandAttack (command.CommandAttack)
package command {
import xinnix.event.*;
import abstract.*;
public class CommandAttack extends BaseCommand {
public function CommandAttack(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
this.duration--;
if (controller.attackName != undefined){
controller.attackName = this.data;
};
if (this.onDuration()){
controller.attack();
} else {
if (controller.stand != undefined){
controller.stand();
};
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandAttack"));
};
}
}
}//package command
Section 29
//CommandAttackBoss1 (command.CommandAttackBoss1)
package command {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
import abstract.*;
import ai.*;
public class CommandAttackBoss1 extends BaseCommand {
public function CommandAttackBoss1(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
this.duration--;
if (duration == 5){
if (controller.attackName == Enum.attack_3){
addEnemy();
};
};
if (controller.attackName != undefined){
controller.attackName = this.data;
};
if (this.onDuration()){
controller.attack();
} else {
if (controller.stand != undefined){
controller.stand();
};
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandAttack"));
};
}
public function addEnemy():void{
var _local2:*;
var _local3:Object;
var _local4:MovieClip;
var _local5:BaseMinorModel;
var _local6:AInumberOne;
var _local1:GameFactory = new GameFactory();
if (Environment.data.world.enemyLayer.numChildren < 3){
_local2 = 0;
while (_local2 < 2) {
_local3 = _local1.cCharacter(Enum.enemy_guard_B);
_local4 = _local3["mc"];
_local5 = (_local3["model"] as BaseMinorModel);
_local5.size(1.2);
_local5.hp = 30;
_local5.location.x = Random.next(10, 500);
_local6 = (_local3["ai"] as AInumberOne);
_local6.varsion = 0;
_local6.initRandomWeight();
Environment.data.sceneManager.processList.push(_local3["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local3["mc"]);
_local2++;
};
};
}
}
}//package command
Section 30
//CommandAttackBoss2 (command.CommandAttackBoss2)
package command {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import ai.*;
public class CommandAttackBoss2 extends CommandAttackBoss1 {
public function CommandAttackBoss2(_arg1:Object){
super(_arg1);
}
override public function addEnemy():void{
var _local2:*;
var _local3:Object;
var _local4:MovieClip;
var _local5:BaseMinorModel;
var _local6:AInumberOne;
var _local1:GameFactory = new GameFactory();
if (Environment.data.world.enemyLayer.numChildren < 2){
_local2 = 0;
while (_local2 < 2) {
_local3 = _local1.cCharacter(Enum.enemy_maid_A);
_local4 = _local3["mc"];
_local5 = (_local3["model"] as BaseMinorModel);
_local5.size(1.2);
_local5.hp = 30;
_local5.location.x = Random.next(10, 500);
_local6 = (_local3["ai"] as AInumberOne);
_local6.varsion = 0;
_local6.initRandomWeight();
Environment.data.sceneManager.processList.push(_local3["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local3["mc"]);
_local2++;
};
};
}
}
}//package command
Section 31
//CommandAttackBoss3 (command.CommandAttackBoss3)
package command {
public class CommandAttackBoss3 extends CommandAttackBoss1 {
public function CommandAttackBoss3(_arg1:Object){
super(_arg1);
}
override public function addEnemy():void{
}
}
}//package command
Section 32
//CommandAttackBoss4 (command.CommandAttackBoss4)
package command {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import ai.*;
public class CommandAttackBoss4 extends CommandAttackBoss1 {
public function CommandAttackBoss4(_arg1:Object){
super(_arg1);
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
super.execute();
if (duration == 5){
if (controller.attackName == Enum.attack_3){
addEnemy();
};
};
}
override public function addEnemy():void{
var _local2:*;
var _local3:Object;
var _local4:MovieClip;
var _local5:BaseMinorModel;
var _local6:AInumberOne;
var _local1:GameFactory = new GameFactory();
if (Environment.data.world.enemyLayer.numChildren < 5){
_local2 = 0;
while (_local2 < 3) {
_local3 = _local1.cCharacter(Enum.enemy_office_girl_B);
_local4 = _local3["mc"];
_local5 = (_local3["model"] as BaseMinorModel);
_local5.size(1.5);
_local5.hp = 10;
_local5.location.x = Random.next(50, 1500);
_local6 = (_local3["ai"] as AInumberOne);
_local6.varsion = 0;
_local6.initRandomWeight();
Environment.data.sceneManager.processList.push(_local3["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local3["mc"]);
_local2++;
};
_local2 = 0;
while (_local2 < 3) {
_local3 = _local1.cCharacter(Enum.enemy_m_object_bear_A);
_local4 = _local3["mc"];
_local5 = (_local3["model"] as BaseMinorModel);
_local5.size(1.5);
_local5.hp = 30;
_local5.location.x = Random.next(50, 1500);
_local6 = (_local3["ai"] as AInumberOne);
_local6.varsion = 0;
_local6.initRandomWeight();
Environment.data.sceneManager.processList.push(_local3["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local3["mc"]);
_local2++;
};
};
}
}
}//package command
Section 33
//CommandData (command.CommandData)
package command {
public class CommandData {
public var duration:Number;
public var data:String;// = ""
public var name:String;
public function CommandData(_arg1:String, _arg2:Number, _arg3:String="attack"){
this.name = _arg1;
this.duration = _arg2;
this.data = _arg3;
}
}
}//package command
Section 34
//CommandFollowHero (command.CommandFollowHero)
package command {
import xinnix.event.*;
import flash.geom.*;
import abstract.*;
public class CommandFollowHero extends BaseCommand {
public function CommandFollowHero(_arg1:Object){
this.controller = _arg1;
this.duration = 1000;
}
public function getHeroModel():HeroModel{
return (Environment.data.heroModel);
}
override public function execute():void{
var _local1:Point;
var _local2:Point;
this.duration--;
if (this.onDuration()){
_local1 = new Point(0, 0);
if (controller.model != undefined){
_local1 = this.controller.model.location;
} else {
if (controller.getPosition != undefined){
_local1 = controller.getPosition();
};
};
_local2 = getHeroModel().location;
if (Math.abs((_local1.x - _local2.x)) < 50){
this.duration = 0;
} else {
if (_local1.x < _local2.x){
controller.walkRight();
} else {
if (_local1.x > _local2.x){
controller.walkLeft();
};
};
};
} else {
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandFollowHero"));
};
}
}
}//package command
Section 35
//CommandGoToCenterOfScreen (command.CommandGoToCenterOfScreen)
package command {
import xinnix.event.*;
import flash.geom.*;
import abstract.*;
public class CommandGoToCenterOfScreen extends BaseCommand {
public function CommandGoToCenterOfScreen(_arg1:Object){
this.controller = _arg1;
this.duration = 3000;
}
override public function execute():void{
var _local1:Point;
var _local2:*;
this.duration--;
if (this.onDuration()){
_local1 = new Point(0, 0);
if (controller.model != undefined){
_local1 = this.controller.model.location;
} else {
if (controller.getPosition != undefined){
_local1 = controller.getPosition();
};
};
_local2 = new Point((Environment.data.world.width / 2), 0);
if (Math.abs((_local1.x - _local2.x)) < 100){
this.duration = 0;
} else {
if (_local1.x < _local2.x){
controller.walkRight();
} else {
if (_local1.x > _local2.x){
controller.walkLeft();
};
};
};
} else {
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandFollowHero"));
};
}
}
}//package command
Section 36
//CommandJump (command.CommandJump)
package command {
import xinnix.event.*;
import abstract.*;
public class CommandJump extends BaseCommand {
public var isInit:Boolean;
public function CommandJump(_arg1:Object){
this.isInit = true;
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
if (isInit){
isInit = false;
controller.jump();
};
if (controller.isJump != undefined){
if (!controller.isJump){
isInit = true;
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandJump"));
};
};
}
}
}//package command
Section 37
//CommandStand (command.CommandStand)
package command {
import xinnix.event.*;
import abstract.*;
public class CommandStand extends BaseCommand {
public function CommandStand(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
this.duration--;
if (this.onDuration()){
controller.stand();
} else {
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandWalkRight"));
};
}
}
}//package command
Section 38
//CommandTurnToHero (command.CommandTurnToHero)
package command {
import xinnix.event.*;
import flash.geom.*;
import abstract.*;
public class CommandTurnToHero extends BaseCommand {
public function CommandTurnToHero(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
var _local1:Point;
this.duration--;
if (controller.attackName != undefined){
controller.attackName = this.data;
};
if (this.onDuration()){
_local1 = new Point(0, 0);
if (controller.getPosition != undefined){
_local1 = controller.getPosition();
};
if (_local1.x > Environment.data.heroModel.location.x){
controller.turnRight();
} else {
controller.turnLeft();
};
} else {
if (controller.stand != undefined){
controller.stand();
};
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandTurnToHero"));
};
}
}
}//package command
Section 39
//CommandWalkLeft (command.CommandWalkLeft)
package command {
import xinnix.event.*;
import abstract.*;
public class CommandWalkLeft extends BaseCommand {
public function CommandWalkLeft(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
this.duration--;
if (this.onDuration()){
controller.walkLeft();
} else {
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandWalkLeft"));
};
}
}
}//package command
Section 40
//CommandWalkRight (command.CommandWalkRight)
package command {
import xinnix.event.*;
import abstract.*;
public class CommandWalkRight extends BaseCommand {
public function CommandWalkRight(_arg1:Object){
this.controller = _arg1;
this.duration = 5;
}
override public function execute():void{
this.duration--;
if (this.onDuration()){
controller.walkRight();
} else {
dispatchEvent(new GameEvent(GameEvent.COMPLETE, "CommandWalkRight"));
};
}
}
}//package command
Section 41
//BG_2 (fury_officer_520331_PB_fla.BG_2)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class BG_2 extends MovieClip {
public function BG_2(){
addFrameScript(10, frame11);
}
function frame11(){
MovieClip(parent).gotoAndStop(2);
}
}
}//package fury_officer_520331_PB_fla
Section 42
//boss_gage_140 (fury_officer_520331_PB_fla.boss_gage_140)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class boss_gage_140 extends MovieClip {
public function boss_gage_140(){
addFrameScript(999, frame1000);
}
function frame1000(){
stop();
}
}
}//package fury_officer_520331_PB_fla
Section 43
//hero_fistOfKing_195 (fury_officer_520331_PB_fla.hero_fistOfKing_195)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class hero_fistOfKing_195 extends MovieClip {
public var __id18_:Hitchild;
public function hero_fistOfKing_195(){
addFrameScript(45, frame46);
__setProp___id18__hero_fistOfKing_AoE_0();
}
function __setProp___id18__hero_fistOfKing_AoE_0(){
try {
__id18_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id18_.degree = 0;
__id18_.type = "AoE";
__id18_.tempDamage = 50;
__id18_.valuePoint = 0;
try {
__id18_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame46(){
this.gotoAndPlay(1);
}
}
}//package fury_officer_520331_PB_fla
Section 44
//hero_RisingSun_196 (fury_officer_520331_PB_fla.hero_RisingSun_196)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class hero_RisingSun_196 extends MovieClip {
public var hit_RisngSun:Hitchild;
public var __id17_:Hitchild;
public function hero_RisingSun_196(){
addFrameScript(31, frame32);
__setProp_hit_RisngSun_hero_RisingSun_hitobj_0();
__setProp___id17__hero_RisingSun_AoE_0();
}
function __setProp_hit_RisngSun_hero_RisingSun_hitobj_0(){
try {
hit_RisngSun["componentInspectorSetting"] = true;
} catch(e:Error) {
};
hit_RisngSun.degree = 45;
hit_RisngSun.type = "damage";
hit_RisngSun.tempDamage = 5;
hit_RisngSun.valuePoint = 0;
try {
hit_RisngSun["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id17__hero_RisingSun_AoE_0(){
try {
__id17_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id17_.degree = 0;
__id17_.type = "AoE";
__id17_.tempDamage = 50;
__id17_.valuePoint = 0;
try {
__id17_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame32(){
this.gotoAndPlay(1);
}
}
}//package fury_officer_520331_PB_fla
Section 45
//heroFistOfStrom_197 (fury_officer_520331_PB_fla.heroFistOfStrom_197)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class heroFistOfStrom_197 extends MovieClip {
public var __id15_:Hitchild;
public var __setPropDict:Dictionary;
public var __id16_:Hitchild;
public function heroFistOfStrom_197(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(18, frame19, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18);
__setProp___id15__heroFistOfStrom_AoE_0();
}
function frame6(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame7(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame8(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame9(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame11(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame12(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame13(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame14(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function __setProp___id15__heroFistOfStrom_AoE_0(){
try {
__id15_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id15_.degree = 0;
__id15_.type = "AoE";
__id15_.tempDamage = 50;
__id15_.valuePoint = 0;
try {
__id15_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame16(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame10(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame18(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function frame19(){
gotoAndPlay(1);
}
function frame15(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
function __setProp___id16__heroFistOfStrom_hitobj_5(){
try {
__id16_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id16_.degree = 45;
__id16_.type = "damage";
__id16_.tempDamage = 80;
__id16_.valuePoint = 0;
try {
__id16_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame17(){
if ((((__setPropDict[__id16_] == undefined)) || (!((((int(__setPropDict[__id16_]) >= 6)) && ((int(__setPropDict[__id16_]) <= 18))))))){
__setPropDict[__id16_] = currentFrame;
__setProp___id16__heroFistOfStrom_hitobj_5();
};
}
}
}//package fury_officer_520331_PB_fla
Section 46
//heroMightOfHeavent_198 (fury_officer_520331_PB_fla.heroMightOfHeavent_198)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class heroMightOfHeavent_198 extends MovieClip {
public var __id14_:Hitchild;
public var __setPropDict:Dictionary;
public function heroMightOfHeavent_198(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(54, frame55, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 46, frame47, 47, frame48, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53, 53, frame54);
}
function frame50(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame51(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame30(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame31(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame32(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame55(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
stop();
this.gotoAndPlay(1);
}
function frame34(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame35(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame36(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame37(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame38(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame39(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame33(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame52(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame53(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame54(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame40(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame41(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame42(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame21(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame22(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame23(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame24(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame25(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame26(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame27(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame28(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame29(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame45(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function __setProp___id14__heroMightOfHeavent_hitobj_20(){
try {
__id14_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id14_.degree = 45;
__id14_.type = "damage";
__id14_.tempDamage = 20;
__id14_.valuePoint = 0;
try {
__id14_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame48(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame49(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame43(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame44(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame46(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
function frame47(){
if ((((__setPropDict[__id14_] == undefined)) || (!((((int(__setPropDict[__id14_]) >= 21)) && ((int(__setPropDict[__id14_]) <= 55))))))){
__setPropDict[__id14_] = currentFrame;
__setProp___id14__heroMightOfHeavent_hitobj_20();
};
}
}
}//package fury_officer_520331_PB_fla
Section 47
//hp_gage_223 (fury_officer_520331_PB_fla.hp_gage_223)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class hp_gage_223 extends MovieClip {
public var ui_item:MovieClip;
public function hp_gage_223(){
addFrameScript(0, frame1);
}
function frame1(){
ui_item.visible = false;
}
}
}//package fury_officer_520331_PB_fla
Section 48
//LOGOEND_43 (fury_officer_520331_PB_fla.LOGOEND_43)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class LOGOEND_43 extends MovieClip {
public function LOGOEND_43(){
addFrameScript(132, frame133);
}
function frame133(){
MovieClip(root).play();
stop();
}
}
}//package fury_officer_520331_PB_fla
Section 49
//LOGOPRELOAD_0_23 (fury_officer_520331_PB_fla.LOGOPRELOAD_0_23)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_0_23 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_0_23(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 50
//LOGOPRELOAD_1_27 (fury_officer_520331_PB_fla.LOGOPRELOAD_1_27)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_1_27 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_1_27(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 51
//LOGOPRELOAD_2_30 (fury_officer_520331_PB_fla.LOGOPRELOAD_2_30)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_2_30 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_2_30(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 52
//LOGOPRELOAD_3_32 (fury_officer_520331_PB_fla.LOGOPRELOAD_3_32)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_3_32 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_3_32(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 53
//LOGOPRELOAD_4_34 (fury_officer_520331_PB_fla.LOGOPRELOAD_4_34)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_4_34 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_4_34(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 54
//LOGOPRELOAD_5_36 (fury_officer_520331_PB_fla.LOGOPRELOAD_5_36)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_5_36 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_5_36(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 55
//LOGOPRELOAD_6_38 (fury_officer_520331_PB_fla.LOGOPRELOAD_6_38)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_6_38 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_6_38(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 56
//LOGOPRELOAD_7_40 (fury_officer_520331_PB_fla.LOGOPRELOAD_7_40)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class LOGOPRELOAD_7_40 extends MovieClip {
public var thenextframe;
public function LOGOPRELOAD_7_40(){
addFrameScript(0, frame1, 89, frame90);
}
function frame90(){
if (MovieClip(parent).isloaded){
MovieClip(parent).gotoAndStop(10);
} else {
thenextframe = (Math.ceil((Math.random() * 8)) + 1);
if (thenextframe == MovieClip(parent).currentFrame){
MovieClip(parent).nextFrame();
} else {
MovieClip(parent).gotoAndStop(thenextframe);
};
};
}
function frame1(){
if (Math.random() > 0.5){
scaleX = -(scaleX);
x = (x - MovieClip(parent).shiftamt);
};
}
}
}//package fury_officer_520331_PB_fla
Section 57
//m_gfx_hero_MightOfHeavent_slow_128 (fury_officer_520331_PB_fla.m_gfx_hero_MightOfHeavent_slow_128)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_gfx_hero_MightOfHeavent_slow_128 extends MovieClip {
public var __id70_:Hitchild;
public var __setPropDict:Dictionary;
public function m_gfx_hero_MightOfHeavent_slow_128(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20);
}
function __setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8(){
try {
__id70_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id70_.degree = 45;
__id70_.type = "damage";
__id70_.tempDamage = 20;
__id70_.valuePoint = 0;
try {
__id70_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame10(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame11(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame12(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame13(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame14(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame15(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame16(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame9(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame18(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame19(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame20(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
function frame17(){
if ((((__setPropDict[__id70_] == undefined)) || (!((((int(__setPropDict[__id70_]) >= 9)) && ((int(__setPropDict[__id70_]) <= 20))))))){
__setPropDict[__id70_] = currentFrame;
__setProp___id70__m_gfx_hero_MightOfHeavent_slow_Layer2_8();
};
}
}
}//package fury_officer_520331_PB_fla
Section 58
//m_gfx_hero_TigerDance1_130 (fury_officer_520331_PB_fla.m_gfx_hero_TigerDance1_130)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class m_gfx_hero_TigerDance1_130 extends MovieClip {
public function m_gfx_hero_TigerDance1_130(){
addFrameScript(37, frame38);
}
function frame38(){
stop();
}
}
}//package fury_officer_520331_PB_fla
Section 59
//mc_action_list_142 (fury_officer_520331_PB_fla.mc_action_list_142)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.text.*;
public dynamic class mc_action_list_142 extends MovieClip {
public var txt1:TextField;
public var txt3:TextField;
public var txt2:TextField;
public var txt4:TextField;
public var txt1_1:TextField;
public var txt2_2:TextField;
public var txt3_3:TextField;
public var txt4_4:TextField;
public function mc_action_list_142(){
addFrameScript(0, frame1);
}
function frame1(){
if (Environment.data.isFistOfStromEnable){
txt1.visible = true;
txt1_1.visible = true;
} else {
txt1.visible = false;
txt1_1.visible = false;
};
if (Environment.data.isFistOfKingEnable){
txt2.visible = true;
txt2_2.visible = true;
} else {
txt2.visible = false;
txt2_2.visible = false;
};
if (Environment.data.isRisingSunEnable){
txt3.visible = true;
txt3_3.visible = true;
} else {
txt3.visible = false;
txt3_3.visible = false;
};
if (Environment.data.isMightOfHeaventEnable){
txt4.visible = true;
txt4_4.visible = true;
} else {
txt4.visible = false;
txt4_4.visible = false;
};
}
}
}//package fury_officer_520331_PB_fla
Section 60
//mc_ui_comboShow_133 (fury_officer_520331_PB_fla.mc_ui_comboShow_133)
package fury_officer_520331_PB_fla {
import flash.display.*;
public dynamic class mc_ui_comboShow_133 extends MovieClip {
public var numberHit:MovieClip;
public function mc_ui_comboShow_133(){
addFrameScript(0, frame1, 13, frame14);
}
function frame14(){
gotoAndStop(1);
}
function frame1(){
stop();
}
}
}//package fury_officer_520331_PB_fla
Section 61
//THEPRELOADER_1 (fury_officer_520331_PB_fla.THEPRELOADER_1)
package fury_officer_520331_PB_fla {
import flash.display.*;
import flash.events.*;
public dynamic class THEPRELOADER_1 extends MovieClip {
public var shiftamt;
public var onRelease;
public var isloaded;
public var bar:MovieClip;
public function THEPRELOADER_1(){
addFrameScript(0, frame1, 9, frame10);
}
function frame1(){
stop();
shiftamt = 17;
isloaded = false;
parent.loaderInfo.addEventListener(ProgressEvent.PROGRESS, PL_LOADING);
onRelease = function (){
};
stage.addEventListener(MouseEvent.CLICK, onRelease);
if (parent.loaderInfo.bytesLoaded >= parent.loaderInfo.bytesTotal){
parent.loaderInfo.removeEventListener(ProgressEvent.PROGRESS, PL_LOADING);
gotoAndStop(10);
};
}
function frame10(){
stage.removeEventListener(MouseEvent.CLICK, onRelease);
}
public function PL_LOADING(_arg1:ProgressEvent):void{
var _local2:*;
_local2 = Math.round(_arg1.bytesLoaded);
var _local3:* = Math.round(_arg1.bytesTotal);
var _local4:* = (_local2 / _local3);
MovieClip(MovieClip(getChildByName("bar")).getChildByName("barmask")).scaleX = _local4;
if (_local2 == _local3){
isloaded = true;
};
}
}
}//package fury_officer_520331_PB_fla
Section 62
//Buller_Kiss (object.bullet.Buller_Kiss)
package object.bullet {
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
public class Buller_Kiss extends Bullet_maid {
override public function playGFX():void{
var _local1:MovieClip;
_local1 = new gfx_hero_gun_hit_inside();
_local1.x = this.x;
_local1.y = this.y;
_local1.scaleX = 2;
_local1.scaleY = 2;
_local1.transform.colorTransform = new ColorTransform(1, 0, 0);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
}
}//package object.bullet
Section 63
//Bullet_doll (object.bullet.Bullet_doll)
package object.bullet {
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
public class Bullet_doll extends Bullet_maid {
override public function playGFX():void{
var _local1:MovieClip;
_local1 = new gfx_hero_gun_hit_inside();
_local1.x = this.x;
_local1.y = this.y;
_local1.scaleX = 2;
_local1.scaleY = 2;
_local1.transform.colorTransform = new ColorTransform(0, 0, 0);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
}
}//package object.bullet
Section 64
//Bullet_fistOfking (object.bullet.Bullet_fistOfking)
package object.bullet {
public class Bullet_fistOfking extends Bullet_maid {
public var FistOfKing:Hitchild;
public function Bullet_fistOfking(){
this.isPlayGFX = false;
}
override public function update():void{
super.update();
this.scaleX = (this.scaleX - 0.02);
this.scaleY = (this.scaleY - 0.02);
if (this.scaleX <= 0){
duration = 0;
};
}
override public function notifyHitter(_arg1:Object):void{
}
}
}//package object.bullet
Section 65
//Bullet_Gaurd (object.bullet.Bullet_Gaurd)
package object.bullet {
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
public class Bullet_Gaurd extends Bullet_maid {
override public function playGFX():void{
var _local1:MovieClip = new m_gfx_enemy_hit();
_local1.x = this.x;
_local1.y = this.y;
_local1.transform.colorTransform = new ColorTransform(1, 0.1, 0);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
}
}//package object.bullet
Section 66
//Bullet_maid (object.bullet.Bullet_maid)
package object.bullet {
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
import flash.geom.*;
import abstract.*;
public class Bullet_maid extends BaseObject {
public var hitObj:Hitchild;
public var speed:Number;// = 7
public var speedX:Number;
public var speedY:Number;
public var angle:Number;// = 0
public var duration:Number;
public var _isKill:Boolean;// = false
public var isPlayGFX:Boolean;// = true
public function Bullet_maid(){
this.speedX = (Math.cos(angle) * speed);
this.speedY = 0;
this.duration = 5;
this.addEventListener(GameEvent.HITOBJECT, onHitObj);
}
public function onHitObj(_arg1:GameEvent):void{
this._isKill = true;
}
public function playGFX():void{
var _local1:MovieClip = new gfx_hero_gun_hit_inside();
_local1.x = this.x;
_local1.y = this.y;
_local1.transform.colorTransform = new ColorTransform(1, 200, 50);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
public function update():void{
this.x = (this.x + (Math.cos(DegreeHepler.covertToPI(angle)) * speed));
this.y = (this.y + (Math.sin(DegreeHepler.covertToPI(angle)) * speed));
duration--;
if ((((Math.abs((this.x - Environment.data.heroModel.location.x)) > 2000)) || ((duration < 0)))){
this._isKill = true;
};
}
override public function notifyHit(_arg1:Object):void{
this._isKill = true;
Environment.data.sceneManager.notifyProceed(Enum.proc_hurt_enemy);
}
public function isKill():Boolean{
return (_isKill);
}
override public function notifyHitter(_arg1:Object):void{
this._isKill = true;
}
public function kill():void{
if (this.parent != null){
this.parent.removeChild(this);
};
if (isPlayGFX){
playGFX();
};
}
}
}//package object.bullet
Section 67
//Bullet_plan (object.bullet.Bullet_plan)
package object.bullet {
import xinnix.utils.*;
import object.item.*;
public class Bullet_plan extends Bullet_robot {
var numCount:Number;// = 0
public var offensive:Number;// = 0
override public function update():void{
var _local2:itemPlan;
super.update();
var _local1:Number = Random.next(0, 6);
numCount++;
if (_local1 < 4){
if ((numCount % offensive) == 0){
_local2 = new m_enemy_plane_bomb();
_local2.x = this.x;
_local2.y = this.y;
Environment.data.sceneManager.processList.push(_local2);
Environment.data.sceneManager.world.enemyDamageLayer.addChild(_local2);
};
};
}
}
}//package object.bullet
Section 68
//Bullet_robot (object.bullet.Bullet_robot)
package object.bullet {
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
public class Bullet_robot extends Bullet_maid {
public var isRotate:Boolean;// = true
public var varOfAngle:Number;// = 1
public function Bullet_robot(){
this.speedX = speed;
this.speedY = speed;
this.angle = 90;
}
override public function playGFX():void{
var _local1:MovieClip = new m_gfx_enemy_explode1();
_local1.x = this.x;
_local1.y = this.y;
_local1.transform.colorTransform = new ColorTransform(1, 200, 50);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
override public function update():void{
if (isRotate){
if (this.scaleX < 0){
angle = (angle + varOfAngle);
this.rotation = angle;
} else {
angle = (angle - varOfAngle);
this.rotation = angle;
};
};
this.x = (this.x + (Math.cos(DegreeHepler.covertToPI(angle)) * speedX));
this.y = (this.y + (Math.sin(DegreeHepler.covertToPI(angle)) * speedY));
duration--;
if ((((Math.abs((this.x - Environment.data.heroModel.location.x)) > 2000)) || ((duration < 0)))){
this._isKill = true;
};
}
}
}//package object.bullet
Section 69
//BulletCard (object.bullet.BulletCard)
package object.bullet {
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
public class BulletCard extends Bullet_maid {
override public function playGFX():void{
var _local1:MovieClip = new m_gfx_enemy_hit();
_local1.x = this.x;
_local1.y = this.y;
_local1.transform.colorTransform = new ColorTransform(0, 0, 1);
_local1.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local1);
}
}
}//package object.bullet
Section 70
//gfxHitDamage (object.gfx.gfxHitDamage)
package object.gfx {
import flash.display.*;
import flash.text.*;
public class gfxHitDamage extends MovieClip {
public var textObj:MovieClip;
var textBox:TextField;
public function gfxHitDamage(){
textBox = ((this.getChildByName("textObj") as MovieClip).getChildByName("textBox") as TextField);
}
public function setText(_arg1:Object):void{
if ((_arg1 is Number)){
_arg1 = Math.floor((_arg1 as Number));
};
textBox.text = _arg1.toString();
}
}
}//package object.gfx
Section 71
//itemGoldBar (object.item.itemGoldBar)
package object.item {
import flash.display.*;
public class itemGoldBar extends ItemStaff {
var isDropShadow:Boolean;// = false
public var hitObj:Hitchild;
var isRemoveHit:Boolean;// = false
var gfxShadow:MovieClip;
public function itemGoldBar(){
this.isItem = false;
gfxShadow = new ui_gold_drop_shadow();
}
override public function update():void{
super.update();
if (!isDropShadow){
isDropShadow = true;
gfxShadow.x = this.x;
gfxShadow.y = Environment.ground;
gfxShadow.scaleX = 2;
gfxShadow.scaleY = 2;
Environment.data.world.GFxLayer.addChild(gfxShadow);
};
if (((this.isAlphaMode) && (!(isRemoveHit)))){
isRemoveHit = true;
this.removeChild(this.getChildByName("hitObj"));
};
}
override public function playGFX():void{
var _local1:MovieClip = new m_gfx_goldbar_hit();
_local1.x = this.x;
_local1.y = this.y;
_local1.scaleX = 2;
_local1.scaleY = 2;
Environment.data.world.GFxLayer.addChild(_local1);
Environment.data.world.GFxLayer.removeChild(gfxShadow);
this.gotoAndStop(2);
}
override public function notifyHit(_arg1:Object):void{
}
override public function notifyHitter(_arg1:Object):void{
}
}
}//package object.item
Section 72
//ItemObj (object.item.ItemObj)
package object.item {
import xinnix.event.*;
import abstract.*;
public dynamic class ItemObj extends BaseObject {
public var _isKill:Boolean;
public var hp:Number;
public function ItemObj(){
this.hp = 10;
_isKill = false;
this.addEventListener(GameEvent.HITOBJECT, onHitObject);
}
public function kill():void{
var _local1:BaseObject;
if (this.parent != null){
_local1 = new item1();
_local1.x = this.x;
_local1.y = this.y;
_local1.name = Enum.item_hp1;
Environment.data.sceneManager.processList.push(_local1);
Environment.data.world.itemLayer.addChild(_local1);
this.parent.removeChild(this);
};
}
public function update():void{
if (hp < 5){
_isKill = true;
};
}
public function onHitObject(_arg1:GameEvent):void{
hp = (hp - 2);
}
public function isKill():Boolean{
return (_isKill);
}
}
}//package object.item
Section 73
//itemPlan (object.item.itemPlan)
package object.item {
import flash.display.*;
public class itemPlan extends ItemStaff {
public var hitObj:Hitchild;
public function itemPlan(){
this.speedX = 0;
this.speedY = -0.3;
this.gravity = 0.1;
this.isItem = false;
this.scaleX = 2;
this.scaleY = 2;
}
override public function notifyHit(_arg1:Object):void{
}
override public function playGFX():void{
var _local1:MovieClip = new m_gfx_bomb_explode();
_local1.x = this.x;
_local1.y = this.y;
_local1.scaleX = 2;
_local1.scaleY = 2;
Environment.data.world.enemyDamageLayer.addChild(_local1);
this.removeChild(this.getChildByName("hitObj"));
this.visible = false;
}
override public function notifyHitter(_arg1:Object):void{
}
}
}//package object.item
Section 74
//ItemStaff (object.item.ItemStaff)
package object.item {
import flash.display.*;
import xinnix.utils.*;
import abstract.*;
public class ItemStaff extends BaseObject {
var timeCount:Number;// = 0
public var isItem:Boolean;// = true
public var gravity:Number;// = 0.2
var isOnGround:Boolean;
public var speedX:Number;// = 1.5
public var speedY:Number;// = 4
var timeLimit:Number;// = 100
var isAlphaMode:Boolean;// = false
var isRight:Boolean;// = true
public function ItemStaff(){
isOnGround = false;
}
public function playGFX():void{
}
public function dropRight():void{
isRight = true;
}
public function dropLeft():void{
isRight = false;
}
public function update():void{
var _local1:*;
if (!isOnGround){
_local1 = speedX;
speedY = (speedY - gravity);
if (isRight){
this.x = (this.x + _local1);
} else {
this.x = (this.x - _local1);
};
this.y = (this.y - speedY);
if (((((this.y + 3) > Environment.ground)) && ((speedY < 0)))){
this.x = (this.x + _local1);
this.y = Environment.ground;
this.isOnGround = true;
playGFX();
};
} else {
timeCount++;
if (timeCount > 90){
isAlphaMode = true;
if ((timeCount % 2) == 0){
this.alpha = 0.5;
} else {
this.alpha = 1;
};
};
if (timeCount == timeLimit){
this.remove();
};
};
}
override public function notifyHitter(_arg1:Object):void{
var _local2:MovieClip = new m_gfx_get_item();
_local2.x = this.x;
_local2.y = this.y;
_local2.rotation = Random.next(0, 360);
Environment.data.world.GFxLayer.addChild(_local2);
}
}
}//package object.item
Section 75
//Hit (object.Hit)
package object {
import flash.display.*;
import xinnix.utils.*;
public class Hit extends MovieClip {
public var tempDamage:Number;// = 0
public var type:String;// = ""
public var degree:Number;// = 0
public var time:Number;// = 0
public var damage:Number;// = 0
public var duration:Number;// = 20
public var historyHitList:Iterator;
public var valuePoint:Number;// = 0
public function Hit():void{
historyHitList = new Iterator();
super();
tempDamage = damage;
}
public function isOnDuration():Boolean{
if ((Environment.data.time - time) > 10){
return (false);
};
return (true);
}
public function clearList():void{
historyHitList = new Iterator();
}
}
}//package object
Section 76
//HitValue (object.HitValue)
package object {
import flash.display.*;
public class HitValue {
public var nameHit:String;
public var force:Number;
public var degree:Number;
public var time:Number;
public var damage:Number;
public var hit:Hit;
public var mcOwner:MovieClip;
public var direction:Number;// = 0
public function HitValue(_arg1:Number, _arg2:Hit){
mcOwner = new MovieClip();
this.degree = _arg2.degree;
this.damage = _arg1;
this.hit = _arg2;
nameHit = "";
this.force = 10;
this.direction = 0;
time = Environment.data.time;
}
}
}//package object
Section 77
//TimeFO (object.TimeFO)
package object {
import flash.display.*;
import flash.geom.*;
import flash.text.*;
public class TimeFO extends MovieClip {
public var lasttime:Number;
public var _isKill:Boolean;
public var txt:TextField;
public var sec:Number;
public var objclaller:Object;
public var timenotify:Number;// = 15
public var functionObj:Function;
public function TimeFO(){
sec = 40;
lasttime = 0;
_isKill = false;
objclaller = new Object();
}
public function kill():void{
if (this.parent != null){
this.parent.removeChild(this);
};
}
public function isKill():Boolean{
return (_isKill);
}
public function update():void{
var _local1:TextField = (this.getChildByName("txt") as TextField);
if ((Environment.data.time - lasttime) > 20){
lasttime = Environment.data.time;
sec--;
if (sec > -1){
if ((((sec == 2)) || ((sec == 1)))){
_local1.alpha = 1;
};
if (sec == timenotify){
objclaller.notify();
};
updateTime();
};
} else {
if ((((((((sec == 3)) || ((sec == 2)))) || ((sec == 1)))) || ((sec == 0)))){
_local1.transform.colorTransform = new ColorTransform(1, 0, 0);
};
};
}
public function updateTime():void{
var _local1:TextField = (this.getChildByName("txt") as TextField);
_local1.text = sec.toString();
}
}
}//package object
Section 78
//UI_Txt_chappter (object.UI_Txt_chappter)
package object {
import flash.display.*;
public class UI_Txt_chappter extends MovieClip {
public var mc_chapter;
public var txt_child:MovieClip;
public var txt_chapter;
public function UI_Txt_chappter(){
mc_chapter = this.getChildByName("txt_child");
}
public function setText(_arg1:String):void{
txt_chapter = mc_chapter.getChildByName("txt_text");
txt_chapter.text = _arg1;
}
}
}//package object
Section 79
//UIcontrol (object.UIcontrol)
package object {
import flash.display.*;
import flash.text.*;
public class UIcontrol extends MovieClip {
public var ui_hp:MovieClip;
public var mc_ui_actionList:MovieClip;
public var mc_agi_up:MovieClip;
public var ui_combo:MovieClip;
public var ui_score:TextField;
public var mc_mp_gage:MovieClip;
public var ui_atk_up:MovieClip;
public var ui_mp:MovieClip;
public var mc_actionList:MovieClip;
public var bossHpMax:Number;// = 0
public var b_nextlevel:SimpleButton;
public var ui_boss_gage:MovieClip;
public var mc_boss_gage:MovieClip;
public var ui_agi_up:ui_status_agiUP;
public var mc_hp_gage:MovieClip;
public var mc_atk_up:MovieClip;
public var txt_stage:TextField;
public var txt_area:TextField;
public function UIcontrol(){
mc_hp_gage = (this.getChildByName("ui_hp") as MovieClip);
mc_hp_gage.gotoAndStop(100);
mc_mp_gage = (this.getChildByName("ui_mp") as MovieClip);
mc_mp_gage.gotoAndStop(100);
mc_agi_up = (this.getChildByName("ui_agi_up") as MovieClip);
mc_agi_up.visible = false;
mc_atk_up = (this.getChildByName("ui_atk_up") as MovieClip);
mc_atk_up.visible = false;
mc_ui_actionList = (this.getChildByName("mc_actionList") as MovieClip);
mc_ui_actionList.visible = false;
mc_boss_gage = (this.getChildByName("ui_boss_gage") as MovieClip);
mc_boss_gage.gotoAndStop(100);
mc_boss_gage.visible = false;
}
public function setArea(_arg1:Number):void{
(this.getChildByName("txt_area") as TextField).text = _arg1.toString();
}
public function initUI():void{
updateHp();
updateMp();
}
public function updateBossGage(_arg1:Number):void{
var _local2:Number = ((_arg1 * 1000) / bossHpMax);
mc_boss_gage.gotoAndStop(Math.floor(_local2));
}
public function updateHp():void{
var _local1:Number = ((Environment.data.hpHero * 100) / Environment.data.hpMax);
mc_hp_gage.gotoAndStop(Math.floor(_local1));
}
public function showATKUP():void{
mc_atk_up.visible = true;
}
public function setStage(_arg1:Number):void{
(this.getChildByName("txt_stage") as TextField).text = _arg1.toString();
}
public function disShowATKUP():void{
mc_atk_up.visible = false;
}
public function updateScore():void{
(this.getChildByName("ui_score") as TextField).text = Environment.data.totalScore.toString();
}
public function showActionList():void{
mc_ui_actionList.visible = true;
}
public function updateMp():void{
var _local1:Number = ((Environment.data.mpHero * 100) / Environment.data.mpMax);
mc_mp_gage.gotoAndStop(Math.floor(_local1));
}
public function setCombo(_arg1:Number):void{
var ui_combo:MovieClip;
var mcHit:MovieClip;
var txtNumber:TextField;
var value = _arg1;
try {
ui_combo = (this.getChildByName("ui_combo") as MovieClip);
ui_combo.gotoAndStop(1);
mcHit = (ui_combo.getChildByName("numberHit") as MovieClip);
txtNumber = (mcHit.getChildByName("txt_number") as TextField);
txtNumber.text = value.toString();
ui_combo.gotoAndPlay(2);
} catch(e:Error) {
};
}
public function showAGIUP():void{
mc_agi_up.visible = true;
}
public function showBossGage():void{
mc_boss_gage.visible = true;
}
public function disShowAGIUP():void{
mc_agi_up.visible = false;
}
public function toggleActionList():void{
if (mc_ui_actionList.visible == true){
disShowActionList();
Environment.data.sceneManager.play();
} else {
showActionList();
Environment.data.sceneManager.puase();
};
}
public function disShowActionList():void{
mc_ui_actionList.visible = false;
}
}
}//package object
Section 80
//BaseScene (sceneControl.BaseScene)
package sceneControl {
import flash.events.*;
import object.*;
public class BaseScene extends EventDispatcher {
public var state1:String;// = "state1"
public var state2:String;// = "state2"
public var state4:String;// = "state4"
public var state6:String;// = "state6"
public var state3:String;// = "state3"
public var area:Number;// = 0
public var isEnd:Boolean;
public var state5:String;// = "state5"
public var factory:GameFactory;
public var waitState:String;// = "waitState"
public var initState:String;// = "initState"
public var lasttime:Number;// = 0
public var sceneState:String;
public var sceneManger:SceneManager;
public var waitTime:Number;// = 10
public var finalState:String;// = "finalState"
public var stage:Number;// = 0
public var chapterName:String;// = ""
public function BaseScene(_arg1:SceneManager){
this.sceneManger = _arg1;
this.factory = new GameFactory();
sceneState = initState;
}
public function findItem():void{
}
public function createEnemy():void{
}
public function init():void{
findItem();
sceneManger.puase();
var _local1:UI_Txt_chappter = new ui_chapter_task();
_local1.x = 350;
_local1.y = 240;
sceneManger.scene.addChild(_local1);
lasttime = Environment.data.time;
_local1.setText(chapterName);
Environment.data.uiControl.setArea(this.area);
Environment.data.uiControl.setStage(this.stage);
sceneState = state1;
}
public function update():void{
}
public function createBoss():void{
}
public function start():void{
}
}
}//package sceneControl
Section 81
//Scene1 (sceneControl.Scene1)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
public dynamic class Scene1 extends BaseScene {
var addEnemy:Number;// = 0
var is1Mode:Boolean;// = true
public function Scene1(_arg1:SceneManager){
super(_arg1);
this.isEnd = false;
sceneState = initState;
this.chapterName = "Stage 1 - 1 \n Big mama";
this.stage = 1;
this.area = 1;
}
public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_boy_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function createEnemy2():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local1:* = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
_local4 = _local2["model"];
_local4.setLocation(Random.next(100, 1000), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
addEnemy++;
_local1++;
};
}
override public function update():void{
switch (sceneState){
case initState:
init();
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = state2;
sceneManger.play();
};
break;
case state2:
createEnemy1();
sceneState = state3;
break;
case state3:
if (is1Mode){
if ((((sceneManger.world.enemyLayer.numChildren < 3)) && ((addEnemy < 10)))){
createEnemy2();
};
if (addEnemy > 9){
sceneState = state4;
};
} else {
if (is1Mode){
if (sceneManger.world.enemyLayer.numChildren == 0){
createEnemy2();
sceneState = state4;
};
} else {
if (sceneManger.world.enemyLayer.numChildren == 0){
createEnemy3();
sceneState = finalState;
};
};
};
break;
case state4:
if (sceneManger.world.enemyLayer.numChildren == 0){
createEnemy3();
sceneState = finalState;
};
break;
case finalState:
if (sceneManger.world.enemyLayer.numChildren == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
public function createEnemy3():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_boy_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
}
}//package sceneControl
Section 82
//Scene10 (sceneControl.Scene10)
package sceneControl {
import flash.display.*;
public class Scene10 extends Scene7 {
public function Scene10(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 3 - 3 \n Scorpion King";
this.stage = 3;
this.area = 3;
this.bossHP = 1000;
Environment.data.offsetScreen = 0;
}
override public function init():void{
super.init();
Environment.data.sceneManager.camera.worldWidth = (Environment.data.sceneManager.camera.worldWidth - 100);
Environment.worldWidth = (Environment.worldWidth - 100);
var _local1:MovieClip = new spr_bg3_prop2();
_local1.y = (Environment.ground + 5);
_local1.x = 1000;
var _local2:MovieClip = new spr_bg3_prop2();
_local2.y = (Environment.ground + 5);
_local2.x = 800;
Environment.data.sceneManager.world.UILayer.addChild(_local2);
var _local3:MovieClip = new spr_bg3_prop2();
_local3.y = (Environment.ground + 5);
_local3.x = 600;
Environment.data.sceneManager.world.UILayer.addChild(_local3);
var _local4:MovieClip = new spr_bg3_prop2();
_local4.y = (Environment.ground + 5);
_local4.x = 400;
Environment.data.sceneManager.world.UILayer.addChild(_local4);
var _local5:MovieClip = new spr_bg3_prop2();
_local5.y = (Environment.ground + 5);
_local5.x = 200;
Environment.data.sceneManager.world.UILayer.addChild(_local5);
Environment.data.uiControl.showBossGage();
var _local6:Object = factory.cCharacter(Enum.enemy_Boss4);
Environment.data.uiControl.bossHpMax = bossHP;
Environment.data.uiControl.updateBossGage(bossHP);
}
override public function createBoss():void{
var _local1:Object = factory.cCharacter(Enum.enemy_Boss3);
mcEnemy = _local1["mc"];
mcEnemy.size(1.5);
bossMC = mcEnemy;
mcEnemy.hp = bossHP;
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(mcEnemy);
mcEnemy.name = "boss3";
mcEnemy.setLocation(500, Environment.ground);
}
}
}//package sceneControl
Section 83
//Scene11 (sceneControl.Scene11)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import ai.*;
public class Scene11 extends Scene3 {
public function Scene11(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 4 - 1 \n Time Crisis 40 s.";
this.stage = 4;
this.area = 1;
this.clockObj.timenotify = 30;
}
override public function addEnemy2(){
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
var _local1:* = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_robot);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 100000000;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 5;
_local4.speed = 12;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local5.initRandomWeight();
_local4.size(2.5);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function addEnemy1(){
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
var _local1:* = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_bear_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 80;
_local4.speed = 12;
_local4.setLocation((_local4.location.x - 200), _local4.location.y);
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 5;
_local5.initRandomWeight();
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_bear_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(2.5);
_local4.hp = 100000000;
_local4.setLocation((_local4.location.x - 200), _local4.location.y);
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 5;
_local5.initRandomWeight();
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_robot);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 100000000;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
_local5.initRandomWeight();
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_robot);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 100000000;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 5;
_local5.initRandomWeight();
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy1():void{
}
}
}//package sceneControl
Section 84
//Scene12 (sceneControl.Scene12)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import flash.geom.*;
import ai.*;
public class Scene12 extends Scene1 {
var isOnOpenLight:Boolean;// = false
var numRandom:Number;// = 0
var numDiff:Number;// = 0.01
var isOnProcessLight:Boolean;// = false
var numColor:Number;// = 1
var numCloseScreen:Number;// = 0.4
public function Scene12(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 4 - 2 \n FUN TOY";
this.stage = 4;
this.area = 2;
}
override public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_bear_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(2);
_local4.setLocation((_local4.location.x - 200), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 8) {
_local2 = factory.cCharacter(Enum.enemy_m_object_doll);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.speed = 15;
_local4.hp = 300;
_local4.setLocation((_local4.location.x - 200), _local4.location.y);
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy3():void{
}
override public function createEnemy2():void{
}
override public function update():void{
super.update();
if (sceneState == state3){
if (!isOnProcessLight){
isOnProcessLight = true;
numRandom = Random.next(1, 7);
};
if (isOnProcessLight){
switch (numRandom.toString()){
case "1":
numCloseScreen = 0.4;
numDiff = 0.001;
break;
case "2":
numCloseScreen = 0.8;
numDiff = 0.001;
break;
case "3":
numCloseScreen = 0.5;
numDiff = 0.001;
break;
case "4":
numCloseScreen = 0.8;
numDiff = 0.001;
break;
case "5":
numCloseScreen = 0.8;
numDiff = 0.001;
break;
case "6":
numCloseScreen = 0.8;
numDiff = 0.001;
break;
};
if (isOnOpenLight){
numColor = (numColor + numDiff);
} else {
numColor = (numColor - numDiff);
};
Environment.data.sceneManager.world.transform.colorTransform = new ColorTransform(numColor, numColor, numColor);
if ((((numColor < numCloseScreen)) || ((numColor > 1)))){
isOnOpenLight = !(isOnOpenLight);
if (isOnOpenLight){
numColor = numCloseScreen;
numRandom = Random.next(1, 5);
};
};
};
if (sceneManger.world.enemyLayer.numChildren <= 0){
sceneState = state4;
};
};
if (sceneState == state4){
Environment.data.sceneManager.world.transform.colorTransform = new ColorTransform(1, 1, 1);
};
}
}
}//package sceneControl
Section 85
//Scene13 (sceneControl.Scene13)
package sceneControl {
import xinnix.utils.*;
import abstract.enemy.boss.*;
import flash.geom.*;
public class Scene13 extends Scene7 {
var boss2:BaseBoss;
public function Scene13(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 4 - 3 \n Secretary Room ";
this.stage = 4;
this.area = 3;
Environment.data.offsetScreen = 0;
this.bossHP = 1200;
}
override public function init():void{
super.init();
Environment.data.uiControl.showBossGage();
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
Environment.data.uiControl.bossHpMax = bossHP;
Environment.data.uiControl.updateBossGage(bossHP);
}
override public function createBoss():void{
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
mcEnemy = _local1["mc"];
mcEnemy.size(1.5);
mcEnemy.hp = bossHP;
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(mcEnemy);
mcEnemy.name = "boss3";
mcEnemy.setLocation(500, Environment.ground);
createBoss_copy();
}
override public function update():void{
super.update();
try {
if (mcEnemy != null){
if ((((boss2.parent == null)) && (!((mcEnemy.parent == null))))){
createBoss_copy();
};
if (mcEnemy.isKill){
boss2.isKill = true;
boss2.kill();
boss2.parent.removeChild(boss2);
};
};
} catch(e:Error) {
};
}
public function createBoss_copy():void{
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
boss2 = _local1["mc"];
boss2.size(1.5);
boss2.hp = 100;
boss2.isIgnoreUpdateBossHPgage = true;
boss2.defaluatColor = new ColorTransform(0, 0, 0);
boss2.hurtColor = new ColorTransform(0, 0, 0);
boss2.transform.colorTransform = new ColorTransform(0, 0, 0);
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(boss2);
boss2.name = "boss3_copy";
boss2.setLocation(Random.next(500, 1300), Environment.ground);
}
}
}//package sceneControl
Section 86
//Scene14 (sceneControl.Scene14)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import ai.*;
import object.bullet.*;
public class Scene14 extends Scene1 {
var isAddEN2:Boolean;// = false
var caseAdd:String;// = "addddd"
var isAddEN3:Boolean;// = false
var isAddEN4:Boolean;// = false
var isAddEN1:Boolean;// = false
var numCound:Number;// = 0
var numAdd:Number;// = 0
public function Scene14(_arg1:SceneManager){
var _local2:RandomWeight;
super(_arg1);
this.chapterName = "Stage 5 - 1 \n President's Protection";
this.stage = 5;
this.area = 1;
this.is1Mode = false;
_local2 = new RandomWeight();
_local2.add(Enum.item_hp1, 70);
_local2.add(Enum.item_hp2, 20);
_local2.add(Enum.item_hp3, 30);
_local2.add(Enum.item_mp1, 50);
_local2.add(Enum.item_attackUP, 10);
_local2.add(Enum.item_agiUP, 20);
_local2.add(Enum.item_score, 30);
_local2.refesh();
_arg1.rangOfItemDrop = 8;
_arg1.randomWeight = _local2;
}
public function addEN5():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 6) {
_local2 = factory.cCharacter(Enum.enemy_m_object_doll);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.speed = 15;
_local4.hp = 200;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 6;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 6) {
_local2 = factory.cCharacter(Enum.enemy_m_object_cactus);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.speed = 10;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
_local5.initRandomWeight();
_local4.size(Random.next(1, 4));
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy1():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local1:* = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_rockingdoll);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 20;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function addEN1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_boy_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function addEN4():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 10) {
_local2 = factory.cCharacter(Enum.enemy_m_object_robot);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 200;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 0;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 4) {
_local2 = factory.cCharacter(Enum.enemy_m_object_wolf);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(2);
_local4.hp = 200;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function addEN3():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_fire_ant_big);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 100;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 10) {
_local2 = factory.cCharacter(Enum.enemy_m_object_fire_ant);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(0.6);
_local4.speed = 10;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function addPlan():void{
var _local1:Bullet_plan = new m_object_plane();
var _local2:Number = Random.next(1, 4);
_local1.offensive = Random.next(10, 60);
if (_local2 == 2){
_local1.speedY = 0;
_local1.speedX = 10;
_local1.y = Random.next(500, 200);
_local1.x = Random.next(-200, -50);
_local1.scaleX = -2;
_local1.scaleY = 2;
_local1.angle = 0;
} else {
_local1.speedY = 0;
_local1.speedX = -10;
_local1.y = Random.next(500, 200);
_local1.x = Random.next(1500, 2000);
_local1.scaleX = 2;
_local1.scaleY = 2;
_local1.angle = 0;
};
_local1.isRotate = false;
_local1.duration = 200;
sceneManger.processList.push(_local1);
sceneManger.world.UILayer.addChild(_local1);
}
override public function createEnemy2():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:Number;
var _local1:* = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_rockingdoll);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local5 = Random.next(1, 5);
_local4.size(Random.next(1, 5));
_local4.hp = (20 * _local5);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy3():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:Number;
var _local1:* = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_rockingdoll);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local5 = Random.next(1, 5);
_local4.size(Random.next(1, 5));
_local4.hp = (20 * _local5);
_local4.speed = 20;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function addEN2():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local1:* = 0;
while (_local1 < 10) {
_local2 = factory.cCharacter(Enum.enemy_boy_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 20;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function update():void{
var _local1:Number;
var _local2:*;
super.update();
numCound++;
if (sceneManger.world.UILayer.numChildren < 3){
_local1 = Random.next(1, 6);
_local2 = 0;
while (_local2 < _local1) {
addPlan();
_local2++;
};
};
if (sceneState == state3){
if (sceneManger.world.enemyLayer.numChildren < 3){
numAdd++;
caseAdd = numAdd.toString();
switch (caseAdd){
case "1":
addEN1();
break;
case "2":
addEN2();
break;
case "3":
addEN3();
break;
case "4":
addEN4();
break;
case "5":
addEN5();
break;
};
};
};
}
}
}//package sceneControl
Section 87
//Scene15 (sceneControl.Scene15)
package sceneControl {
public class Scene15 extends Scene7 {
public function Scene15(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 5 - 2 \n Final Round";
this.stage = 5;
this.area = 2;
this.bossHP = 3000;
}
override public function init():void{
super.init();
Environment.data.uiControl.showBossGage();
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
Environment.data.sceneManager.camera.worldWidth = (Environment.data.sceneManager.camera.worldWidth - 100);
Environment.worldWidth = (Environment.worldWidth - 100);
Environment.data.uiControl.bossHpMax = bossHP;
Environment.data.uiControl.updateBossGage(bossHP);
}
override public function createBoss():void{
var _local1:Object = factory.cCharacter(Enum.enemy_Boss5);
mcEnemy = _local1["mc"];
mcEnemy.size(1.5);
bossMC = mcEnemy;
mcEnemy.hp = bossHP;
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(mcEnemy);
mcEnemy.name = "boss3";
mcEnemy.setLocation(500, Environment.ground);
}
}
}//package sceneControl
Section 88
//Scene2 (sceneControl.Scene2)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import xinnix.utils.*;
public class Scene2 extends BaseScene {
public function Scene2(_arg1:SceneManager){
super(_arg1);
this.isEnd = false;
this.chapterName = "Stage 1 - 2 \n Beat'em Ups !! ";
this.stage = 1;
this.area = 2;
}
public function createEnemy0():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local1:* = 0;
while (_local1 < 2) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 300;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_boy_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function createEnemy2():void{
}
public function createEnemy3():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.setLocation(Random.next(100, 1000), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_boy_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function update():void{
switch (sceneState){
case initState:
init();
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = state2;
sceneManger.play();
};
break;
case state2:
createEnemy();
sceneState = state3;
break;
case state3:
if (sceneManger.world.enemyLayer.numChildren == 0){
createEnemy2();
sceneState = state4;
};
break;
case state4:
if (sceneManger.world.enemyLayer.numChildren < 5){
createEnemy3();
sceneState = finalState;
};
break;
case finalState:
if (sceneManger.world.enemyLayer.numChildren == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
override public function createEnemy():void{
this.createEnemy1();
}
}
}//package sceneControl
Section 89
//Scene3 (sceneControl.Scene3)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import object.*;
import ai.*;
public class Scene3 extends BaseScene {
var clockObj:TimeFO;
var logicObj:Object;
var isAdd1:Boolean;// = false
var isAdd2:Boolean;// = false
var isAdd3:Boolean;// = false
public function Scene3(_arg1:SceneManager){
logicObj = new Object();
super(_arg1);
clockObj = new mc_ui_time();
clockObj.sec = 40;
clockObj.objclaller = this;
clockObj.x = 350;
clockObj.y = 80;
this.chapterName = "Stage 1 - 3 \n Survive 40 sec";
this.stage = 1;
this.area = 3;
}
public function addEnemy2(){
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
var _local6:AInumberOne;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(3.5);
_local4.hp = 100000000;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 0;
_local5.initRandomWeight();
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 30;
_local6 = _local2["ai"];
_local6.varsion = 5;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function createEnemy1():void{
}
public function addEnemy1(){
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local4.hp = 30;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 0;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 30;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function update():void{
switch (sceneState){
case initState:
init();
sceneManger.processList.push(clockObj);
sceneManger.scene.addChild(clockObj);
clockObj.updateTime();
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = state2;
sceneManger.play();
};
break;
case state2:
createEnemy();
sceneState = finalState;
break;
case finalState:
if ((((clockObj.sec == 30)) && (!(isAdd1)))){
addEnemy1();
isAdd1 = true;
};
if ((((clockObj.sec == 20)) && (!(isAdd2)))){
addEnemy1();
addEnemy1();
isAdd2 = true;
};
if ((((clockObj.sec == 10)) && (!(isAdd3)))){
addEnemy2();
isAdd3 = true;
};
if (clockObj.sec == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
override public function createEnemy():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(2.5);
_local4.hp = 1500;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 0;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 100;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_guard_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
_local4.hp = 30;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 0;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_maid_A);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 30;
_local4.setLocation((Environment.worldWidth / 2), _local4.location.y);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
public function notify():void{
createEnemy1();
}
}
}//package sceneControl
Section 90
//Scene4 (sceneControl.Scene4)
package sceneControl {
import xinnix.event.*;
import abstract.enemy.boss.*;
public class Scene4 extends BaseScene {
var bossMC:BaseBoss;
var bossHP;// = 600
public function Scene4(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 1 - 4 \n Kill The Boss ";
this.stage = 1;
this.area = 4;
}
override public function init():void{
super.init();
Environment.data.uiControl.showBossGage();
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
Environment.data.uiControl.bossHpMax = bossHP;
Environment.data.uiControl.updateBossGage(bossHP);
}
override public function createBoss():void{
var _local2:BaseBoss;
var _local1:Object = factory.cCharacter(Enum.enemy_Boss1);
_local2 = _local1["mc"];
bossMC = _local2;
_local2.size(1.5);
_local2.hp = bossHP;
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(_local2);
}
override public function update():void{
switch (sceneState){
case initState:
init();
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = state2;
sceneManger.play();
};
break;
case state2:
createBoss();
sceneState = finalState;
break;
case finalState:
if (sceneManger.world.enemyLayer.numChildren == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
}
}//package sceneControl
Section 91
//Scene5 (sceneControl.Scene5)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
public class Scene5 extends BaseScene {
var isAdd1:Boolean;// = false
var numCount:Number;// = 0
var numMaxEnemy;// = 50
public function Scene5(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 2 - 1 \n Fight!!!!! ";
this.stage = 2;
this.area = 1;
}
override public function update():void{
switch (sceneState){
case initState:
init();
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = state2;
sceneManger.play();
};
break;
case state2:
createEnemy();
sceneState = finalState;
break;
case finalState:
if (sceneManger.world.enemyLayer.numChildren == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
override public function createEnemy():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local1:* = 0;
while (_local1 < 15) {
_local2 = factory.cCharacter(Enum.enemy_boy_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.hp = 60;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
}
}//package sceneControl
Section 92
//Scene6 (sceneControl.Scene6)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
public class Scene6 extends Scene1 {
public function Scene6(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 2 - 2 \n Go Go Go ";
this.stage = 2;
this.area = 2;
this.is1Mode = false;
Environment.data.offsetScreen = -20;
}
override public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 20) {
_local2 = factory.cCharacter(Enum.enemy_boy_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(0.5);
_local4.hp = 9;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 15) {
_local2 = factory.cCharacter(Enum.enemy_office_girl_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(0.5);
_local4.hp = 9;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy2():void{
}
override public function createEnemy3():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 8) {
_local2 = factory.cCharacter(Enum.enemy_boy_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(4);
_local4.hp = 60;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 8) {
_local2 = factory.cCharacter(Enum.enemy_office_girl_B);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(4.2);
_local4.hp = 20;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
}
}//package sceneControl
Section 93
//Scene7 (sceneControl.Scene7)
package sceneControl {
import xinnix.event.*;
import abstract.enemy.boss.*;
public class Scene7 extends Scene4 {
var mcEnemy:BaseBoss;
var lasttime2:Number;
public function Scene7(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 2 - 3 \n Say Hi to the Manager";
this.stage = 2;
this.area = 3;
this.bossHP = 1000;
Environment.data.offsetScreen = 0;
}
override public function init():void{
super.init();
Environment.data.uiControl.showBossGage();
var _local1:Object = factory.cCharacter(Enum.enemy_Boss4);
Environment.data.uiControl.bossHpMax = bossHP;
Environment.data.uiControl.updateBossGage(bossHP);
}
override public function update():void{
switch (sceneState){
case initState:
init();
createBoss();
this.lasttime2 = Environment.data.time;
sceneState = "state1";
break;
case "bossAction":
if ((Environment.data.time - lasttime2) > 1){
sceneState = state2;
};
break;
case state1:
if ((Environment.data.time - lasttime) > waitTime){
sceneState = "bossAction";
sceneManger.play();
};
break;
case state2:
sceneState = finalState;
break;
case finalState:
if (sceneManger.world.enemyLayer.numChildren == 0){
isEnd = true;
};
if (isEnd){
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
};
break;
};
}
override public function createBoss():void{
var _local1:Object = factory.cCharacter(Enum.enemy_Boss2);
mcEnemy = _local1["mc"];
bossMC = mcEnemy;
mcEnemy.size(1.5);
mcEnemy.hp = bossHP;
sceneManger.processList.push(_local1["ai"]);
sceneManger.world.enemyLayer.addChild(mcEnemy);
mcEnemy.setLocation(500, Environment.ground);
}
}
}//package sceneControl
Section 94
//Scene8 (sceneControl.Scene8)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import ai.*;
public class Scene8 extends Scene1 {
var timeCount:Number;// = 0
public function Scene8(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 3 - 1 \n Welcome to the Dessert Room";
this.stage = 3;
this.area = 1;
Environment.data.offsetScreen = -20;
this.is1Mode = false;
}
override public function init():void{
super.init();
var _local1:MovieClip = new spr_bg3_prop7();
_local1.x = 700;
_local1.y = (Environment.ground + 40);
_local1.scaleX = 3;
_local1.scaleY = 2.2;
Environment.data.world.staffLayer.addChild(_local1);
}
override public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_fire_ant_big);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 10) {
_local2 = factory.cCharacter(Enum.enemy_m_object_fire_ant);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(0.6);
_local4.speed = 15;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
override public function createEnemy2():void{
}
override public function createEnemy3():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
_local1 = 0;
while (_local1 < 5) {
_local2 = factory.cCharacter(Enum.enemy_m_object_cactus);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.speed = 10;
_local5 = (_local2["ai"] as AInumberOne);
_local5.initRandomWeight();
_local4.size(Random.next(1, 4));
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_cactus);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(Random.next(1, 4));
_local5 = (_local2["ai"] as AInumberOne);
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
}
}//package sceneControl
Section 95
//Scene9 (sceneControl.Scene9)
package sceneControl {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import ai.*;
import object.bullet.*;
public class Scene9 extends Scene1 {
var timeCount:Number;// = 0
var isReleaseOnS3:Boolean;// = false
public function Scene9(_arg1:SceneManager){
super(_arg1);
this.chapterName = "Stage 3 - 2 \n Oh my GOD";
this.stage = 3;
this.area = 2;
this.is1Mode = false;
}
override public function createEnemy1():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_scorpion);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_wolf);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(2);
_local4.hp = 150;
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
addSmallWolf();
}
override public function createEnemy2():void{
}
override public function createEnemy3():void{
}
override public function update():void{
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:Number;
var _local6:*;
super.update();
timeCount++;
if (sceneState == state3){
if ((((sceneManger.world.enemyLayer.numChildren < 4)) && (!(isReleaseOnS3)))){
createEnemy1();
isReleaseOnS3 = true;
_local1 = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_cactus);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(Random.next(1, 4));
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
};
};
if (sceneManger.world.UILayer.numChildren < 3){
_local5 = Random.next(1, 6);
_local6 = 0;
while (_local6 < _local5) {
addPlan();
_local6++;
};
};
}
public function addPlan():void{
var _local1:Bullet_plan = new m_object_plane();
var _local2:Number = Random.next(1, 4);
_local1.offensive = Random.next(10, 60);
if (_local2 == 2){
_local1.speedY = 0;
_local1.speedX = 10;
_local1.y = Random.next(500, 200);
_local1.x = Random.next(-200, -50);
_local1.scaleX = -3;
_local1.scaleY = 3;
_local1.angle = 0;
} else {
_local1.speedY = 0;
_local1.speedX = -10;
_local1.y = Random.next(500, 200);
_local1.x = Random.next(1500, 2000);
_local1.scaleX = 3;
_local1.scaleY = 3;
_local1.angle = 0;
};
_local1.isRotate = false;
_local1.duration = 200;
sceneManger.processList.push(_local1);
sceneManger.world.UILayer.addChild(_local1);
}
public function addSmallWolf():void{
var _local2:Object;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:AInumberOne;
var _local1:* = 0;
while (_local1 < 3) {
_local2 = factory.cCharacter(Enum.enemy_m_object_wolf);
_local3 = _local2["mc"];
_local4 = (_local2["model"] as BaseMinorModel);
_local4.size(1);
_local4.hp = 20;
_local5 = (_local2["ai"] as AInumberOne);
_local5.varsion = 1;
_local5.initRandomWeight();
sceneManger.processList.push(_local2["ai"]);
sceneManger.world.enemyLayer.addChild(_local2["mc"]);
_local1++;
};
}
}
}//package sceneControl
Section 96
//Boss2AttackState (state.boss.Boss2.Boss2AttackState)
package state.boss.Boss2 {
import xinnix.utils.*;
import abstract.enemy.boss.*;
import state.boss.*;
import object.bullet.*;
public class Boss2AttackState extends BaseBossState {
public function Boss2AttackState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
character.gotoPlay(character.attackName);
}
override public function update():void{
var _local1:BulletCard;
if (character.currentLabel == Enum.attack_1){
if (character.currentFrame == 30){
_local1 = new m_boss2_bullet();
_local1.scaleX = 2;
_local1.scaleY = 2;
_local1.x = (character.x - 80);
_local1.y = (character.y - Random.next(30, 100));
_local1.duration = 100;
if (character.scaleX > 0){
_local1.speed = (Math.abs(_local1.speed) * -1);
};
if (character.scaleX < 0){
_local1.speed = Math.abs(_local1.speed);
_local1.x = (character.x + 80);
};
Environment.data.sceneManager.processList.push(_local1);
Environment.data.world.enemyDamageLayer.addChild(_local1);
};
};
if (character.currentLabel == Enum.attack_3){
if (character.currentFrame == 63){
_local1 = new m_boss2_bullet();
_local1.scaleX = 2;
_local1.scaleY = 2;
_local1.x = (character.x - 80);
_local1.y = (character.y - Random.next(30, 100));
_local1.duration = 100;
if (character.scaleX > 0){
_local1.speed = (Math.abs(_local1.speed) * -1);
};
if (character.scaleX < 0){
_local1.speed = Math.abs(_local1.speed);
_local1.x = (character.x + 80);
};
Environment.data.sceneManager.processList.push(_local1);
Environment.data.world.enemyDamageLayer.addChild(_local1);
};
};
}
override public function attack():void{
}
}
}//package state.boss.Boss2
Section 97
//Boass3AttackState (state.boss.Boss3.Boass3AttackState)
package state.boss.Boss3 {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import ai.*;
import state.boss.*;
public class Boass3AttackState extends BossAttackState {
public function Boass3AttackState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
super.init();
character.gotoPlay(character.attackName);
if (character.attackName == Enum.attack){
character.timeShakeScreen = 5;
};
}
override public function notify():void{
var _local1:GameFactory;
var _local2:*;
var _local3:Object;
var _local4:MovieClip;
var _local5:BaseMinorModel;
var _local6:AInumberOne;
if (character.currentFrame == 60){
_local1 = new GameFactory();
if (Environment.data.world.enemyLayer.numChildren < 5){
_local2 = 0;
while (_local2 < 3) {
_local3 = _local1.cCharacter(Enum.enemy_m_object_scorpion);
_local4 = _local3["mc"];
_local5 = (_local3["model"] as BaseMinorModel);
_local5.hp = 10;
_local5.location.x = Random.next((character.x - 10), (character.x + 10));
_local6 = (_local3["ai"] as AInumberOne);
_local6.varsion = 0;
_local6.initRandomWeight();
Environment.data.sceneManager.processList.push(_local3["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local3["mc"]);
_local2++;
};
};
};
if (character.currentFrame == 31){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.5, 0.5, 1, 30);
};
}
}
}//package state.boss.Boss3
Section 98
//Boss4AttackState (state.boss.Boss3.Boss4AttackState)
package state.boss.Boss3 {
import xinnix.utils.*;
import abstract.enemy.boss.*;
import state.boss.*;
import xinnix.movement.*;
import object.bullet.*;
public class Boss4AttackState extends BaseBossState {
public function Boss4AttackState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
character.gotoPlay(character.attackName);
}
override public function update():void{
var _local1:Number;
if (character.currentLabel == Enum.attack){
if (character.currentFrame == 32){
_local1 = Random.next(1, 4);
addKiss(_local1);
};
};
}
override public function attack():void{
}
public function addKiss(_arg1:Number):void{
var _local2:Bullet_maid;
var _local3:HomingMove;
if (_arg1 == 1){
_local2 = new m_boss4_bullet_kiss();
_local3 = new HomingMove(_local2, Environment.data.sceneManager.hero);
_local3.duration = 20;
_local3.isRotation = false;
_local3.offsetTargetY = (Random.next(-20, 50) * -1);
if (character.scaleX < 0){
_local2.scaleX = -2;
} else {
_local2.scaleX = 2;
};
_local2.scaleY = 2;
_local2.x = (character.x - 10);
_local2.y = (character.y - 100);
_local2.duration = 100;
if (character.scaleX > 0){
_local2.speed = (Math.abs(_local2.speed) * -1);
};
if (character.scaleX < 0){
_local2.speed = Math.abs(_local2.speed);
_local2.x = (character.x + 10);
};
Environment.data.sceneManager.processList.push(_local3);
Environment.data.world.enemyDamageLayer.addChild(_local2);
} else {
if (_arg1 == 2){
_local2 = new m_boss4_bullet_kiss();
_local3 = new HomingMove(_local2, Environment.data.sceneManager.hero);
_local3.duration = 20;
_local3.isRotation = false;
_local3.offsetTargetY = (Random.next(-20, 50) * -1);
if (character.scaleX < 0){
_local2.scaleX = -5;
} else {
_local2.scaleX = 5;
};
_local2.scaleY = 5;
_local2.x = (character.x - 10);
_local2.y = (character.y - 100);
_local2.duration = 100;
if (character.scaleX > 0){
_local2.speed = (Math.abs(_local2.speed) * -1);
};
if (character.scaleX < 0){
_local2.speed = Math.abs(_local2.speed);
_local2.x = (character.x + 10);
};
Environment.data.sceneManager.processList.push(_local3);
Environment.data.world.enemyDamageLayer.addChild(_local2);
} else {
if (_arg1 == 3){
_local2 = new m_boss4_bullet_kiss();
_local3 = new HomingMove(_local2, Environment.data.sceneManager.hero);
_local3.duration = 20;
_local3.isRotation = false;
_local3.offsetTargetY = (Random.next(-20, 50) * -1);
if (character.scaleX < 0){
_local2.scaleX = -10;
} else {
_local2.scaleX = 10;
};
_local2.scaleY = 10;
_local2.x = (character.x - 10);
_local2.y = (character.y - 100);
_local2.duration = 100;
if (character.scaleX > 0){
_local2.speed = (Math.abs(_local2.speed) * -1);
};
if (character.scaleX < 0){
_local2.speed = Math.abs(_local2.speed);
_local2.x = (character.x + 10);
};
Environment.data.sceneManager.processList.push(_local3);
Environment.data.world.enemyDamageLayer.addChild(_local2);
};
};
};
}
}
}//package state.boss.Boss3
Section 99
//Boss5AttackState (state.boss.Boss5.Boss5AttackState)
package state.boss.Boss5 {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.utils.*;
import abstract.enemy.boss.*;
import ai.*;
import state.boss.*;
import sceneControl.*;
import object.item.*;
public class Boss5AttackState extends BossAttackState {
public function Boss5AttackState(_arg1:BaseBoss){
super(_arg1);
}
override public function notify():void{
var _local1:GameFactory;
var _local2:Number;
var _local3:Scene14;
var _local4:*;
var _local5:Object;
var _local6:MovieClip;
var _local7:BaseMinorModel;
var _local8:AInumberOne;
var _local9:itemGoldBar;
if (character.currentFrame == 103){
_local1 = new GameFactory();
if (Environment.data.world.enemyLayer.numChildren < 10){
_local2 = Random.next(1, 8);
switch (_local2.toString()){
case "1":
_local4 = 0;
while (_local4 < 6) {
_local5 = _local1.cCharacter(Enum.enemy_m_object_scorpion);
_local6 = _local5["mc"];
_local7 = (_local5["model"] as BaseMinorModel);
_local7.hp = 10;
_local7.location.x = Random.next((character.x - 10), (character.x + 10));
_local8 = (_local5["ai"] as AInumberOne);
_local8.varsion = 0;
_local8.initRandomWeight();
Environment.data.sceneManager.processList.push(_local5["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local5["mc"]);
_local4++;
};
break;
case "2":
_local3 = new Scene14(Environment.data.sceneManager);
_local3.addPlan();
_local3.addPlan();
_local3.addPlan();
break;
case "3":
_local3 = new Scene14(Environment.data.sceneManager);
_local3.createEnemy1();
break;
case "4":
_local3 = new Scene14(Environment.data.sceneManager);
_local3.createEnemy2();
break;
case "5":
_local4 = 0;
while (_local4 < 6) {
_local5 = _local1.cCharacter(Enum.enemy_boy_B);
_local6 = _local5["mc"];
_local7 = (_local5["model"] as BaseMinorModel);
_local7.hp = 20;
_local7.location.x = Random.next((character.x - 10), (character.x + 10));
_local8 = (_local5["ai"] as AInumberOne);
_local8.varsion = 0;
_local8.initRandomWeight();
Environment.data.sceneManager.processList.push(_local5["ai"]);
Environment.data.sceneManager.world.enemyLayer.addChild(_local5["mc"]);
_local4++;
};
break;
};
};
};
if (character.currentFrame == 60){
_local9 = new m_obj_boss5_goldBAR();
_local9.speedX = 0;
_local9.speedY = -20;
_local9.gravity = 2;
if (character.scaleX < 0){
_local9.x = (character.x + 500);
} else {
_local9.x = (character.x - 500);
};
_local9.y = 50;
_local9.scaleX = 2;
_local9.scaleY = 3;
Environment.data.sceneManager.processList.push(_local9);
Environment.data.sceneManager.world.enemyDamageLayer.addChild(_local9);
};
if (character.currentFrame == 62){
_local9 = new m_obj_boss5_goldBAR();
_local9.speedX = 0;
_local9.speedY = -20;
_local9.gravity = 2;
if (character.scaleX < 0){
_local9.x = (character.x + 200);
} else {
_local9.x = (character.x - 200);
};
_local9.y = 20;
_local9.scaleX = 2;
_local9.scaleY = 3;
Environment.data.sceneManager.processList.push(_local9);
Environment.data.sceneManager.world.enemyDamageLayer.addChild(_local9);
};
if (character.currentFrame == 62){
_local9 = new m_obj_boss5_goldBAR();
_local9.speedX = 0;
_local9.speedY = -20;
_local9.gravity = 2;
if (character.scaleX < 0){
_local9.x = (character.x - 200);
} else {
_local9.x = (character.x + 200);
};
_local9.y = 20;
_local9.scaleX = 2;
_local9.scaleY = 3;
Environment.data.sceneManager.processList.push(_local9);
Environment.data.sceneManager.world.enemyDamageLayer.addChild(_local9);
};
if (character.currentFrame == 60){
_local9 = new m_obj_boss5_goldBAR();
_local9.speedX = 0;
_local9.speedY = -20;
_local9.gravity = 2;
if (character.scaleX < 0){
_local9.x = (character.x - 500);
} else {
_local9.x = (character.x + 500);
};
_local9.y = -50;
_local9.scaleX = 2;
_local9.scaleY = 3;
_local9.isItem = false;
Environment.data.sceneManager.processList.push(_local9);
Environment.data.sceneManager.world.enemyDamageLayer.addChild(_local9);
};
}
}
}//package state.boss.Boss5
Section 100
//BaseBossState (state.boss.BaseBossState)
package state.boss {
import abstract.enemy.boss.*;
import flash.geom.*;
public class BaseBossState {
public var character:BaseBoss;
public var gravity:Number;// = 1
public var speedX:Number;
public var speedY:Number;
public var friction:Number;// = 2
public function BaseBossState(_arg1:BaseBoss){
this.character = _arg1;
}
public function die():void{
character.setState(character.getState(Enum.die));
character.getCurrentState().init();
}
public function walkPhase():void{
}
public function attack():void{
}
public function checkAirState():Boolean{
return (((((character.y - Environment.ground) < 2)) || (((character.y - Environment.ground) > -2))));
}
public function update():void{
}
public function stand():void{
character.setState(character.getState(Enum.stand));
character.getCurrentState().init();
Environment.data.world.transform.colorTransform = new ColorTransform(1, 1, 1, 1);
}
public function init():void{
}
public function airPhase():void{
character.setState(character.getState(Enum.air));
character.getCurrentState().init();
}
public function hurt():void{
character.setState(character.getState(Enum.hurt));
character.getCurrentState().init();
}
}
}//package state.boss
Section 101
//BossAirState (state.boss.BossAirState)
package state.boss {
import abstract.enemy.boss.*;
public class BossAirState extends BaseBossState {
public var isshakeScreen:Boolean;
public function BossAirState(_arg1:BaseBoss){
super(_arg1);
isshakeScreen = false;
}
override public function update():void{
var _local1:*;
speedY = (speedY - this.gravity);
if (character.scaleX > 0){
_local1 = (character.x - speedX);
} else {
_local1 = (character.x + speedX);
};
var _local2:* = (character.y - speedY);
if (((((character.y + 8) > Environment.ground)) && ((speedY < 0)))){
character.gotoPlay(Enum.stand);
character.y = Environment.ground;
character.isJump = false;
character.stand();
character.setLocation(_local1, character.y);
if (isshakeScreen){
character.timeShakeScreen = 14;
};
} else {
character.setLocation(_local1, _local2);
};
}
override public function init():void{
this.speedY = 30;
this.speedX = 5;
character.gotoPlay(Enum.jump);
character.isJump = true;
this.gravity = 3;
}
}
}//package state.boss
Section 102
//BossAirStateBoss4 (state.boss.BossAirStateBoss4)
package state.boss {
import abstract.enemy.boss.*;
public class BossAirStateBoss4 extends BossAirState {
public function BossAirStateBoss4(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
this.speedY = 40;
this.speedX = 10;
character.gotoPlay(Enum.jump);
character.isJump = true;
this.gravity = 3;
}
}
}//package state.boss
Section 103
//BossAttackState (state.boss.BossAttackState)
package state.boss {
import abstract.enemy.boss.*;
public class BossAttackState extends BaseBossState {
public function BossAttackState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
character.gotoPlay(character.attackName);
if (character.attackName == Enum.attack_1){
speedX = 20;
};
}
override public function update():void{
var _local1:*;
if (character.attackName == Enum.attack_1){
speedX = (speedX - friction);
if (character.scaleX > 0){
_local1 = (character.x + speedX);
} else {
_local1 = (character.x - speedX);
};
character.setLocation(_local1, character.y);
};
notify();
}
public function notify():void{
}
override public function attack():void{
}
}
}//package state.boss
Section 104
//BossDieState (state.boss.BossDieState)
package state.boss {
import abstract.enemy.boss.*;
public class BossDieState extends BaseBossState {
public var stateCase:String;// = ""
public var duration:Number;// = 10
public var state1:String;// = "state1"
public var state2:String;// = "state2"
public function BossDieState(_arg1:BaseBoss){
super(_arg1);
}
override public function update():void{
var _local1:*;
var _local2:*;
switch (stateCase){
case state1:
speedY = (speedY - this.gravity);
if (character.bumpper.direction == 1){
_local1 = (character.x + speedX);
character.turnRight();
} else {
_local1 = (character.x - speedX);
character.turnLeft();
};
_local2 = (character.y - speedY);
if ((character.y + 8) > Environment.ground){
character.gotoPlay(Enum.stand);
character.gotoPlay(Enum.die);
character.isJump = false;
character.setLocation(_local1, Environment.ground);
stateCase = state2;
} else {
character.setLocation(_local1, _local2);
};
break;
case state2:
duration--;
if (duration < 0){
character.isKill = true;
};
break;
};
}
override public function die():void{
}
override public function init():void{
character.gotoPlay(Enum.hurt);
speedX = 10;
speedY = 10;
gravity = 2;
stateCase = state1;
var i:* = 0;
while (i < Environment.data.sceneManager.enemyModelList.length) {
try {
Environment.data.sceneManager.enemyModelList[i].die();
} catch(e:Error) {
};
i = (i + 1);
};
var e:* = 0;
while (e < Environment.data.sceneManager.world.enemyLayer) {
try {
Environment.data.sceneManager.world.enemyLayer[e].kill = 0;
} catch(e:Error) {
};
e = (e + 1);
};
}
}
}//package state.boss
Section 105
//BossHurtState (state.boss.BossHurtState)
package state.boss {
import abstract.enemy.boss.*;
public class BossHurtState extends BaseBossState {
public var stateCase:String;// = ""
public var duration:Number;
public var state1:String;// = "state1"
public var state2:String;// = "state2"
public function BossHurtState(_arg1:BaseBoss){
super(_arg1);
duration = 20;
}
override public function hurt():void{
speedX = (speedX + 1);
speedY = 10;
}
override public function update():void{
var _local1:*;
var _local2:*;
switch (stateCase){
case state1:
if (character.consistHurtValue < 0){
stateCase = state2;
};
duration--;
if (duration < 0){
this.stand();
};
break;
case state2:
speedY = (speedY - this.gravity);
if (character.bumpper.direction == 1){
_local1 = (character.x + speedX);
character.turnRight();
} else {
_local1 = (character.x - speedX);
character.turnLeft();
};
_local2 = (character.y - speedY);
if (((((character.y + 8) > Environment.ground)) && ((speedY < 0)))){
character.gotoPlay(Enum.stand);
character.y = Environment.ground;
character.isJump = false;
character.stand();
character.setLocation(_local1, character.y);
} else {
character.setLocation(_local1, _local2);
};
break;
};
}
override public function init():void{
character.gotoPlay(Enum.hurt);
duration = 20;
speedX = 10;
speedY = 10;
gravity = 1;
stateCase = state2;
character.transform.colorTransform = character.hurtColor;
}
}
}//package state.boss
Section 106
//BossStandState (state.boss.BossStandState)
package state.boss {
import abstract.enemy.boss.*;
public class BossStandState extends BaseBossState {
public function BossStandState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
character.gotoPlay(Enum.stand);
character.transform.colorTransform = character.defaluatColor;
}
override public function update():void{
if (((character.isWalkLeft) || (character.isWalkRight))){
character.setState(character.getState(Enum.walk));
character.getCurrentState().init();
};
}
override public function attack():void{
character.setState(character.getState(Enum.attack));
character.getCurrentState().init();
}
}
}//package state.boss
Section 107
//BossWalkState (state.boss.BossWalkState)
package state.boss {
import abstract.enemy.boss.*;
public class BossWalkState extends BaseBossState {
public function BossWalkState(_arg1:BaseBoss){
super(_arg1);
}
override public function init():void{
character.gotoPlay(Enum.walk);
}
override public function update():void{
if (character.isWalkRight){
if (character.scaleX > 0){
character.scaleX = (character.scaleX * -1);
};
character.setLocation((character.x + character.speedX), character.y);
} else {
if (character.isWalkLeft){
if (character.scaleX < 0){
character.scaleX = (character.scaleX * -1);
};
character.setLocation((character.x - character.speedX), character.y);
} else {
character.stand();
};
};
}
override public function attack():void{
character.setState(character.getState(Enum.attack));
character.getCurrentState().init();
}
}
}//package state.boss
Section 108
//BaseMinorState (state.minor.BaseMinorState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class BaseMinorState {
public var isOnState:Boolean;
public var model:BaseMinorModel;
public function BaseMinorState(_arg1:BaseMinorModel){
this.model = _arg1;
}
public function onState():Boolean{
return (false);
}
public function hurt():void{
model.setState(model.getState("hurtState"));
model.currentState.init();
model.actionName = "hurt";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
public function update():void{
}
public function jumpPhase():void{
model.setState(model.getState("jumpState"));
model.currentState.init();
model.actionName = "jump";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
public function attack():void{
}
public function init():void{
}
public function walkPhase():void{
}
public function stand():void{
}
public function checkAirState():void{
if (model.location.y < Environment.ground){
model.setState(model.getState("airState"));
model.actionName = "walk";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
}
}//package state.minor
Section 109
//MinorAirState (state.minor.MinorAirState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorAirState extends BaseMinorState {
public function MinorAirState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function init():void{
model.speedY = 0;
}
override public function update():void{
model.speedY = (model.speedY - model.gravityY);
var _local1:* = (model.location.y - model.speedY);
var _local2:* = model.location.x;
if (_local1 > Environment.ground){
_local1 = Environment.ground;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
model.setLocation(_local2, _local1);
}
}
}//package state.minor
Section 110
//MinorAttackState (state.minor.MinorAttackState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorAttackState extends BaseMinorState {
public function MinorAttackState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function update():void{
if (model.actionName == "stand"){
model.setState(model.getState("standState"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
checkAirState();
}
override public function walkPhase():void{
}
}
}//package state.minor
Section 111
//MinorDieState (state.minor.MinorDieState)
package state.minor {
import abstract.enemy.minor.*;
import flash.geom.*;
public class MinorDieState extends BaseMinorState {
public var state1:String;// = "state1"
public var state2:String;// = "state2"
public var stateUpdate:String;
public var time:Number;// = 0
public var state0:String;// = "state0"
public function MinorDieState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function init():void{
model.speedX = 7;
model.speedY = 5;
model.gravityX = 0.5;
model.gravityY = 1;
stateUpdate = state0;
time = 0;
if (model.scaleX > 0){
Environment.data.sceneManager.itemRealease(new Point(model.location.x, model.location.y), true);
} else {
Environment.data.sceneManager.itemRealease(new Point(model.location.x, model.location.y), false);
};
}
override public function update():void{
var _local1:*;
var _local2:Number;
time++;
switch (stateUpdate){
case state0:
if (time == 3){
stateUpdate = state1;
};
break;
case state1:
model.speedY = (model.speedY - model.gravityY);
_local1 = (model.location.y - model.speedY);
if (model.bumpper.direction == 1){
_local2 = (model.location.x + model.speedX);
} else {
_local2 = (model.location.x - model.speedX);
};
if (_local1 > Environment.ground){
_local1 = Environment.ground;
model.actionName = "die";
model.veiwChange("action");
stateUpdate = state2;
};
model.setLocation(_local2, _local1);
break;
case state2:
break;
};
}
}
}//package state.minor
Section 112
//MinorHurtState (state.minor.MinorHurtState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
import xinnix.utils.*;
public class MinorHurtState extends BaseMinorState {
var slowMotionState:String;// = "slowMotionState"
var baseSubstate:BaseMinorState;
var motionState:String;// = ""
var time:Number;// = 0
var flotMotionState:String;// = "flotMotionState"
var groundMotionState:String;// = "groundMotionState"
var subStateGround:BaseMinorState;
var subStateAir:BaseMinorState;
var subStateHolding:BaseMinorState;
public function MinorHurtState(_arg1:BaseMinorModel){
super(_arg1);
subStateAir = new MinorHurtState_air(_arg1);
subStateGround = new MinorHurtState_ground(_arg1);
subStateHolding = new MinorHurtState_holding(_arg1);
}
override public function update():void{
switch (motionState){
case slowMotionState:
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "stop"));
time++;
if ((((time > 3)) && ((model.hp > 0)))){
time = 0;
motionState = flotMotionState;
};
break;
case flotMotionState:
if (baseSubstate.isOnState){
baseSubstate.update();
} else {
if ((baseSubstate is MinorHurtState_air)){
baseSubstate = subStateGround;
baseSubstate.isOnState = true;
};
};
break;
};
}
override public function hurt():void{
if (model.hp > 0){
if (baseSubstate == subStateAir){
model.speedX = (model.speedX + 3);
model.speedY = (model.speedY + 3);
if (model.bumpper.degree == 0){
model.speedX = (model.speedX + Random.next(5, 15));
model.speedY = Random.next(5, 15);
} else {
if (model.bumpper.degree == 90){
model.speedX = 0;
model.speedY = (model.speedY + 10);
} else {
if (model.bumpper.degree == -90){
model.speedX = 5;
model.speedY = (model.speedY - 20);
};
};
};
} else {
if (baseSubstate == subStateGround){
if (model.bumpper.degree == 0){
if (model.onGround()){
baseSubstate = subStateGround;
} else {
baseSubstate = subStateAir;
model.speedX = 10;
model.speedY = 10;
};
} else {
if (model.bumpper.degree == 90){
model.speedX = 0;
model.speedY = (model.speedY + 20);
};
baseSubstate = subStateAir;
};
};
};
motionState = slowMotionState;
baseSubstate.isOnState = true;
};
}
override public function init():void{
time = 0;
model.speedX = 10;
model.speedY = 10;
model.gravityX = 1;
model.gravityY = 1;
if (model.bumpper.degree == 0){
if (model.onGround()){
baseSubstate = subStateGround;
} else {
baseSubstate = subStateAir;
};
} else {
baseSubstate = subStateAir;
if (model.bumpper.degree == 90){
model.speedX = 0;
model.speedY = (model.speedY + 10);
} else {
if (model.bumpper.degree == -90){
model.speedX = 0;
model.speedY = (model.speedY - 15);
} else {
model.speedX = 10;
model.speedY = 10;
};
};
};
motionState = slowMotionState;
baseSubstate.isOnState = true;
if (model.bumpper.hit.name == "hit_RisngSun"){
model.speedX = 1;
model.speedY = 20;
model.gravityX = 0.5;
model.gravityY = 0.5;
};
}
}
}//package state.minor
Section 113
//MinorHurtState_air (state.minor.MinorHurtState_air)
package state.minor {
import abstract.enemy.minor.*;
public class MinorHurtState_air extends BaseMinorState {
public function MinorHurtState_air(_arg1:BaseMinorModel){
super(_arg1);
}
override public function update():void{
var _local2:Number;
model.speedY = (model.speedY - model.gravityY);
var _local1:* = (model.location.y - model.speedY);
if (model.bumpper.direction == 1){
_local2 = (model.location.x + model.speedX);
} else {
_local2 = (model.location.x - model.speedX);
};
if (_local1 > Environment.ground){
_local1 = Environment.ground;
isOnState = false;
};
model.setLocation(_local2, _local1);
}
}
}//package state.minor
Section 114
//MinorHurtState_ground (state.minor.MinorHurtState_ground)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorHurtState_ground extends BaseMinorState {
public function MinorHurtState_ground(_arg1:BaseMinorModel){
super(_arg1);
isOnState = true;
}
override public function update():void{
var _local2:Number;
model.speedX = (model.speedX - model.gravityX);
model.gravityX = 1.5;
var _local1:Number = model.location.y;
if (model.bumpper.direction == 1){
_local2 = (model.location.x + model.speedX);
} else {
_local2 = (model.location.x - model.speedX);
};
model.setLocation(_local2, model.location.y);
if (model.speedX < 0){
isOnState = false;
model.isJump = false;
model.speedX = 0;
model.speedY = 0;
model.gravityX = 1;
model.gravityY = 1.5;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function onState():Boolean{
return (isOnState);
}
}
}//package state.minor
Section 115
//MinorHurtState_holding (state.minor.MinorHurtState_holding)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorHurtState_holding extends BaseMinorState {
public var time:Number;
public function MinorHurtState_holding(_arg1:BaseMinorModel){
super(_arg1);
time = 0;
isOnState = true;
}
override public function update():void{
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "stop"));
time++;
if (time > 3){
time = 0;
isOnState = false;
};
}
}
}//package state.minor
Section 116
//MinorJumpState (state.minor.MinorJumpState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorJumpState extends BaseMinorState {
public function MinorJumpState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function init():void{
model.speedX = 5;
model.speedY = 15;
model.gravityX = 1;
model.gravityY = 1;
model.isJump = true;
}
override public function update():void{
var _local2:*;
model.speedY = (model.speedY - model.gravityY);
var _local1:* = (model.location.y - model.speedY);
if (model.scaleX > 0){
_local2 = (model.location.x - model.speedX);
} else {
_local2 = (model.location.x + model.speedX);
};
if (_local1 > Environment.ground){
model.isJump = false;
_local1 = Environment.ground;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
model.setLocation(_local2, _local1);
}
override public function jumpPhase():void{
}
}
}//package state.minor
Section 117
//MinorStandState (state.minor.MinorStandState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorStandState extends BaseMinorState {
public function MinorStandState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function attack():void{
model.setState(model.getState("attackState"));
model.actionName = "attack";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function update():void{
if (((model.isPressRight) || (model.isPressLeft))){
model.setState(model.getState("walkState"));
model.actionName = "walk";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
checkAirState();
}
override public function walkPhase():void{
}
}
}//package state.minor
Section 118
//MinorWalkState (state.minor.MinorWalkState)
package state.minor {
import abstract.enemy.minor.*;
import xinnix.event.*;
public class MinorWalkState extends BaseMinorState {
public function MinorWalkState(_arg1:BaseMinorModel){
super(_arg1);
}
override public function attack():void{
model.setState(model.getState("attackState"));
model.actionName = "attack";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function update():void{
if (model.isPressRight){
if (model.scaleX > 0){
model.scaleX = (model.scaleX * -1);
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleX"));
};
model.setLocation((model.location.x + model.speed), model.location.y);
} else {
if (model.isPressLeft){
if (model.scaleX < 0){
model.scaleX = (model.scaleX * -1);
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleX"));
};
model.setLocation((model.location.x - model.speed), model.location.y);
};
};
checkAirState();
}
override public function walkPhase():void{
}
override public function stand():void{
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
}
}//package state.minor
Section 119
//AirState (state.AirState)
package state {
import flash.display.*;
import xinnix.event.*;
public class AirState extends BaseState {
var state1:String;// = "state1"
var statecase:String;
var isGaurd:Boolean;
var state2:String;// = "state2"
public var time:Number;
var isActiveDoubleJump:Boolean;
var isMightOfHeavent:Boolean;
public function AirState(_arg1:HeroModel){
super(_arg1);
isActiveDoubleJump = false;
isMightOfHeavent = false;
isGaurd = false;
time = 0;
}
override public function attackPhase():Boolean{
var _local1:Number;
if (!isMightOfHeavent){
_local1 = Environment.data.getMpAttack(Enum.attack_MightOfHeavent1);
if (Environment.data.mpHero >= _local1){
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(model.specialAction));
Environment.data.uiControl.updateMp();
if (model.specialAction == Enum.attack_MightOfHeavent1){
initMightOfHeavent();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
return (true);
};
};
model.previousAction = Enum.attack_AirKick;
model.actionName = Enum.attack_AirKick;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
return (true);
}
override public function hurtPhase():void{
model.setState(model.getState("hurtState"));
model.currentState.init();
model.actionName = "hurt_Air";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function init():void{
isActiveDoubleJump = false;
model.speedX = 30;
isGaurd = false;
}
override public function airPhase():void{
var _local1:MovieClip;
if (!isActiveDoubleJump){
_local1 = new m_gfx_hero_airJUMP();
_local1.x = model.location.x;
_local1.y = model.location.y;
Environment.data.sceneManager.world.GFxLayer.addChild(_local1);
isActiveDoubleJump = true;
model.speedY = 20;
};
}
override public function guardPhase():void{
model.actionName = Enum.guard_Air;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
isGaurd = true;
}
override public function update():void{
var _local1:*;
var _local2:*;
var _local3:*;
if (isGaurd){
if (!model.isPressGuard){
isGaurd = false;
model.actionName = "jump";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
};
if (!isMightOfHeavent){
model.speedY = (model.speedY - model.gravityY);
_local1 = (model.location.y - model.speedY);
_local2 = model.location.x;
if (((model.isPressRight) && ((model.scaleX > 0)))){
_local2 = (_local2 + (model.speed + Environment.data.AGI));
if (model.speedX > 0){
_local2 = (_local2 + model.speedX);
model.speedX = (model.speedX - (model.gravityX / 2));
} else {
model.speedX = 0;
};
} else {
if (((model.isPressRight) && ((model.scaleX < 0)))){
_local2 = (_local2 + (model.speed + Environment.data.AGI));
if (model.speedX > 0){
_local2 = (_local2 + model.speedX);
model.speedX = (model.speedX - (model.gravityX / 2));
} else {
model.speedX = 0;
};
} else {
if (((model.isPressLeft) && ((model.scaleX > 0)))){
_local2 = (_local2 - (model.speed + Environment.data.AGI));
if (model.speedX > 0){
_local2 = (_local2 - model.speedX);
model.speedX = (model.speedX - (model.gravityX / 2));
} else {
model.speedX = 0;
};
} else {
if (((model.isPressLeft) && ((model.scaleX == -1)))){
_local2 = (_local2 - (model.speed + Environment.data.AGI));
if (model.speedX > 0){
_local2 = (_local2 - model.speedX);
model.speedX = (model.speedX - (model.gravityX / 2));
} else {
model.speedX = 0;
};
};
};
};
};
if (_local1 > Environment.ground){
_local1 = Environment.ground;
isActiveDoubleJump = false;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
model.setLocation(_local2, _local1);
} else {
switch (statecase){
case state1:
model.speedY = (model.speedY - model.gravityY);
_local1 = (model.location.y - model.speedY);
_local2 = model.location.x;
if (_local1 > Environment.ground){
statecase = state2;
_local1 = Environment.ground;
isActiveDoubleJump = false;
model.setLocation(_local2, _local1);
model.actionName = Enum.attack_MightOfHeavent2;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "stop"));
} else {
if (model.scaleX == 1){
_local2 = (_local2 + model.speedX);
} else {
if (model.scaleX == -1){
_local2 = (_local2 - model.speedX);
};
};
model.setLocation(_local2, _local1);
};
break;
case state2:
time++;
if (time == 1){
isMightOfHeavent = false;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "play"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
model.setState(model.getState("standState"));
};
break;
};
};
if (_local1 == Environment.ground){
_local3 = 0;
while (_local3 < 8) {
Environment.data.camera.zoomIn();
_local3++;
};
} else {
if (model.speedY > 0){
_local3 = 0;
while (_local3 < 8) {
Environment.data.camera.zoomOut();
_local3++;
};
} else {
_local3 = 0;
while (_local3 < 8) {
Environment.data.camera.zoomIn();
_local3++;
};
};
};
}
public function initMightOfHeavent():void{
model.speedY = 0;
model.speedX = 25;
time = 0;
statecase = state1;
isMightOfHeavent = true;
}
}
}//package state
Section 120
//AttackState (state.AttackState)
package state {
import xinnix.event.*;
public class AttackState extends BaseState {
public var state1:String;// = "state1"
public var statecase:String;// = ""
public var delay:Number;// = 5
public var timeTigerDance:Number;// = 0
public var time:Number;
public var state2:String;// = "state2"
public var checktime:Number;
public var isOnTigerDance:Boolean;
public function AttackState(_arg1:HeroModel){
super(_arg1);
isOnTigerDance = false;
checktime = 0;
}
override public function attackPhase():Boolean{
var _local1:Number;
switch (statecase){
case state1:
if (model.specialAction == Enum.attack_TigerDance){
_local1 = Environment.data.getMpAttack(Enum.attack_TigerDance);
if (Environment.data.mpHero > _local1){
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
checktime = Environment.data.time;
};
statecase = state2;
checktime = Environment.data.time;
isOnTigerDance = true;
return (true);
};
break;
case state2:
_local1 = Environment.data.getMpAttack(Enum.attack_TigerDance);
if (Environment.data.mpHero > _local1){
checktime = Environment.data.time;
};
break;
};
return (true);
}
override public function guardPhase():void{
}
override public function init():void{
statecase = state1;
isOnTigerDance = false;
checktime = 0;
timeTigerDance = 0;
}
override public function update():void{
if (isOnTigerDance){
timeTigerDance++;
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(Enum.attack_TigerDance));
Environment.data.uiControl.updateMp();
if (((((Environment.data.time - checktime) > 2)) && ((timeTigerDance < 20)))){
model.setState(model.getState("standState"));
model.actionName = Enum.stand;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
};
checkOnAir();
}
}
}//package state
Section 121
//BaseState (state.BaseState)
package state {
import xinnix.event.*;
public class BaseState {
public var lasttime:Number;
public var model:HeroModel;
public function BaseState(_arg1:HeroModel){
this.model = _arg1;
lasttime = 0;
}
public function stop():void{
model.setState(model.getState("stopState"));
model.currentState.init();
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "stop"));
}
public function checkOnAir():void{
if (Math.abs((model.location.y - Environment.ground)) > 3){
model.setState(model.getState("onAirState"));
model.speedY = 0;
model.actionName = "jump";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
public function hurtPhase():void{
model.setState(model.getState("hurtState"));
model.currentState.init();
model.actionName = "hurt";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
public function update():void{
}
public function airPhase():void{
}
public function walkPhase():void{
}
public function guardPhase():void{
model.setState(model.getState("guardState"));
model.currentState.init();
model.actionName = Enum.guard;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
public function init():void{
}
public function attackPhase():Boolean{
return (false);
}
public function diePhase():void{
if (model.currentState != model.getState("dieState")){
model.setState(model.getState("dieState"));
model.currentState.init();
};
}
public function sitPhase():void{
}
}
}//package state
Section 122
//DieState (state.DieState)
package state {
import xinnix.event.*;
public class DieState extends BaseState {
var time:Number;// = 0
public function DieState(_arg1:HeroModel){
super(_arg1);
}
override public function init():void{
time = 0;
model.actionName = "die";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function stop():void{
}
override public function update():void{
time++;
if (time == 10){
model.actionName = "die";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function hurtPhase():void{
}
}
}//package state
Section 123
//GuardState (state.GuardState)
package state {
import xinnix.event.*;
public class GuardState extends BaseState {
var time:Number;// = 0
public function GuardState(_arg1:HeroModel){
super(_arg1);
}
override public function init():void{
time = 0;
}
override public function attackPhase():Boolean{
var _local1:Number;
if ((((((((((model.specialAction == Enum.attack_FistOfStrome)) || ((model.specialAction == Enum.attack_counter)))) || ((model.specialAction == Enum.attack_FistOfKing)))) || ((model.specialAction == Enum.attack_RisngSun)))) && (((Environment.data.time - lasttime) > 10)))){
_local1 = Environment.data.getMpAttack(model.specialAction);
if (Environment.data.mpHero >= _local1){
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(model.specialAction));
Environment.data.uiControl.updateMp();
lasttime = Environment.data.time;
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
};
return (true);
};
return (true);
}
override public function guardPhase():void{
}
override public function update():void{
time++;
if (model.isPressGuard == false){
model.setState(model.getState("standState"));
model.actionName = Enum.stand;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
if ((time % 5) == 0){
Environment.data.mpHero = (Environment.data.mpHero - 2);
Environment.data.uiControl.updateMp();
};
if (Environment.data.mpHero <= 0){
model.isPressGuard = false;
model.setState(model.getState("standState"));
model.actionName = Enum.stand;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function hurtPhase():void{
var _local1:Number;
if (model.bumpper.direction == 0){
_local1 = (model.location.x - 5);
} else {
_local1 = (model.location.x + 5);
};
model.setLocation(_local1, model.location.y);
}
}
}//package state
Section 124
//HurtState (state.HurtState)
package state {
import xinnix.event.*;
public class HurtState extends BaseState {
var time:Number;// = 0
public function HurtState(_arg1:HeroModel){
super(_arg1);
}
override public function init():void{
time = 0;
model.speedX = 20;
model.speedY = 10;
}
override public function guardPhase():void{
model.setState(model.getState("guardState"));
model.currentState.init();
if (this.checkOnAir()){
model.actionName = Enum.guard_Air;
} else {
model.actionName = Enum.guard;
};
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function update():void{
var _local2:Number;
model.speedX = (model.speedX - model.gravityX);
var _local1:Number = model.location.y;
if (model.bumpper.direction == 1){
_local2 = (model.location.x - model.speedX);
} else {
_local2 = (model.location.x + model.speedX);
};
model.setLocation(_local2, model.location.y);
if (model.speedX < 0){
model.speedX = 0;
model.speedY = 0;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function hurtPhase():void{
}
}
}//package state
Section 125
//SitState (state.SitState)
package state {
import xinnix.event.*;
public class SitState extends BaseState {
public function SitState(_arg1:HeroModel){
super(_arg1);
}
override public function update():void{
if (model.isPressDown == false){
model.setState(model.getState("standState"));
model.actionName = Enum.stand;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function attackPhase():Boolean{
var _local1:Number;
if ((((((((model.specialAction == Enum.attack_FistOfStrome)) || ((model.specialAction == Enum.attack_counter)))) || ((model.specialAction == Enum.attack_FistOfKing)))) || ((model.specialAction == Enum.attack_RisngSun)))){
_local1 = Environment.data.getMpAttack(model.specialAction);
if (Environment.data.mpHero >= _local1){
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(model.specialAction));
Environment.data.uiControl.updateMp();
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
return (true);
};
};
model.currentState.init();
model.actionName = Enum.attack_SitdownKick;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
return (true);
}
}
}//package state
Section 126
//StandState (state.StandState)
package state {
import xinnix.event.*;
public class StandState extends BaseState {
public function StandState(_arg1:HeroModel){
super(_arg1);
}
override public function airPhase():void{
model.setState(model.getState("onAirState"));
model.currentState.init();
model.speedY = 20;
model.actionName = "jump";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function walkPhase():void{
if (model.specialAction == "dashRight"){
model.scaleX = Math.abs(model.scaleX);
model.speedX = 30;
model.specialAction = "";
model.actionName = Enum.dash;
model.setState(model.getState("walkState"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.specialAction == "dashLeft"){
model.scaleX = (Math.abs(model.scaleX) * -1);
model.speedX = 30;
model.specialAction = "";
model.actionName = Enum.dash;
model.setState(model.getState("walkState"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
};
}
override public function guardPhase():void{
model.setState(model.getState("guardState"));
model.currentState.init();
if (this.checkOnAir()){
model.actionName = Enum.guard_Air;
} else {
model.actionName = Enum.guard;
};
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function update():void{
if (((model.isPressRight) || (model.isPressLeft))){
model.setState(model.getState("walkState"));
model.actionName = "walk";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.isPressDown){
sitPhase();
} else {
if (model.isPressGuard){
guardPhase();
};
};
};
checkOnAir();
}
override public function attackPhase():Boolean{
var _local1:Number;
if ((((((((((model.specialAction == Enum.attack_FistOfStrome)) || ((model.specialAction == Enum.attack_counter)))) || ((model.specialAction == Enum.attack_FistOfKing)))) || ((model.specialAction == Enum.attack_RisngSun)))) && (((Environment.data.time - lasttime) > 15)))){
_local1 = Environment.data.getMpAttack(model.specialAction);
if (Environment.data.mpHero >= _local1){
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(model.specialAction));
Environment.data.uiControl.updateMp();
lasttime = Environment.data.time;
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
};
return (true);
};
model.previousAction = Enum.attack_normal;
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = Enum.attack_normal;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
return (true);
}
override public function sitPhase():void{
model.setState(model.getState("sitState"));
model.currentState.init();
model.actionName = "sitdown";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
}
}//package state
Section 127
//StopSate (state.StopSate)
package state {
import xinnix.event.*;
import flash.utils.*;
public class StopSate extends BaseState {
public var timer:Timer;
public var time;
public function StopSate(_arg1:HeroModel){
super(_arg1);
time = 0;
}
override public function init():void{
time = 0;
}
override public function attackPhase():Boolean{
if (model.previousAction == "fire"){
model.actionName = "fire45";
model.previousAction = model.actionName;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.previousAction == "fire45"){
model.actionName = "fire90";
model.previousAction = model.actionName;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.previousAction == "fire90"){
model.actionName = "fire-45";
model.previousAction = model.actionName;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.previousAction == "fire-45"){
model.previousAction = "fire";
model.actionName = "fire";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
model.previousAction = "fire";
model.actionName = "fire";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
};
};
};
return (true);
}
override public function update():void{
time++;
if (time == 1){
time = 0;
model.setState(model.previousState);
model.doCommand("play");
};
}
override public function stop():void{
}
}
}//package state
Section 128
//WalkState (state.WalkState)
package state {
import xinnix.event.*;
public class WalkState extends BaseState {
public function WalkState(_arg1:HeroModel){
super(_arg1);
}
override public function update():void{
if (model.actionName == Enum.dash){
model.speedX = (model.speedX - model.gravityX);
if (model.speedX < 0){
model.speedX = 0;
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
} else {
if (model.scaleX > 0){
model.setLocation(((model.location.x + model.speedX) + Environment.data.AGI), model.location.y);
} else {
if (model.scaleX < 0){
model.setLocation(((model.location.x - model.speedX) - Environment.data.AGI), model.location.y);
};
};
};
} else {
if (model.isPressRight){
model.scaleX = Math.abs(model.scaleX);
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleX"));
model.setLocation(((model.location.x + model.speed) + Environment.data.AGI), model.location.y);
} else {
if (model.isPressLeft){
model.scaleX = (Math.abs(model.scaleX) * -1);
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "scaleX"));
model.setLocation(((model.location.x - model.speed) - Environment.data.AGI), model.location.y);
};
};
if (!((model.isPressLeft) || (model.isPressRight))){
model.setState(model.getState("standState"));
model.actionName = "stand";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
};
}
override public function airPhase():void{
model.setState(model.getState("onAirState"));
model.speedY = 20;
model.actionName = "jump";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
override public function attackPhase():Boolean{
var _local1:Number;
if ((((((((((model.specialAction == Enum.attack_FistOfStrome)) || ((model.specialAction == Enum.attack_counter)))) || ((model.specialAction == Enum.attack_FistOfKing)))) || ((model.specialAction == Enum.attack_RisngSun)))) || ((model.specialAction == Enum.attack_MightOfHeavent1)))){
_local1 = Environment.data.getMpAttack(model.specialAction);
if (Environment.data.mpHero >= _local1){
Environment.data.mpHero = (Environment.data.mpHero - Environment.data.getMpAttack(model.specialAction));
Environment.data.uiControl.updateMp();
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = model.specialAction;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "spAction"));
};
return (true);
};
model.setState(model.getState("attackState"));
model.currentState.init();
model.actionName = Enum.attack_normal;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
return (true);
}
override public function walkPhase():void{
if (model.actionName == Enum.dash){
model.setState(model.getState("walkState"));
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
}
override public function sitPhase():void{
model.setState(model.getState("sitState"));
model.currentState.init();
model.actionName = "sitdown";
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
}
}//package state
Section 129
//BaseWorld (worldmap.BaseWorld)
package worldmap {
import flash.display.*;
import object.*;
import xinnix.utils.*;
import flash.geom.*;
import abstract.*;
public class BaseWorld extends MovieClip {
public var enemyDamageLayer:MovieClip;
public var ground:Number;// = 200
public var heroDamageLayer:MovieClip;
public var staffLayer:MovieClip;
public var gravity:Number;// = 9
public var GFxLayer:MovieClip;
public var UILayer:MovieClip;
public var enemyLayer:MovieClip;
public var staticFric:Number;// = 0.2
public var heroLayer:MovieClip;
public var itemLayer:MovieClip;
public function BaseWorld(){
var _local1:MovieClip = new MovieClip();
_local1.name = "mcGround";
_local1.y = Environment.ground;
this.addChild(_local1);
UILayer = new MovieClip();
heroLayer = new MovieClip();
enemyLayer = new MovieClip();
heroDamageLayer = new MovieClip();
enemyDamageLayer = new MovieClip();
GFxLayer = new MovieClip();
itemLayer = new MovieClip();
staffLayer = new MovieClip();
this.addChild(enemyLayer);
this.addChild(itemLayer);
this.addChild(enemyLayer);
this.addChild(heroLayer);
this.addChild(enemyDamageLayer);
this.addChild(heroDamageLayer);
this.addChild(GFxLayer);
this.addChild(UILayer);
this.addChild(staffLayer);
}
public function update(){
var _local1:*;
var _local2:Object;
var _local3:MovieClip;
var _local4:Point;
var _local5:Point;
collid(this.heroLayer, this.enemyLayer);
collid(this.heroLayer, this.itemLayer);
collid(this.enemyLayer, this.heroLayer);
collid(this.itemLayer, this.heroLayer);
collid(this.heroLayer, this.enemyDamageLayer);
collid(this.enemyDamageLayer, this.heroLayer);
_local1 = 0;
while (_local1 < heroDamageLayer.numChildren) {
_local2 = heroDamageLayer.getChildAt(_local1);
if (_local2.motclass.update != undefined){
_local2.motclass.update();
};
_local1++;
};
_local1 = 0;
while (_local1 < heroDamageLayer.numChildren) {
_local3 = (heroDamageLayer.getChildAt(_local1) as MovieClip);
_local4 = new Point(_local3.x, _local3.y);
_local5 = Environment.data.world.localToGlobal(_local4);
if ((((((((_local5.x < -100)) || ((_local5.x > (700 + 200))))) || ((_local5.y < -100)))) || ((_local5.y > (480 + 200))))){
_local3.parent.removeChild(_local3);
};
_local1++;
};
}
public function collid(_arg1:MovieClip, _arg2:MovieClip):void{
var _local4:BaseObject;
var _local5:*;
var _local6:BaseObject;
var _local3:* = 0;
while (_local3 < _arg1.numChildren) {
if ((_arg1.getChildAt(_local3) is BaseObject)){
_local4 = (_arg1.getChildAt(_local3) as BaseObject);
_local5 = 0;
while (_local5 < _arg2.numChildren) {
if ((_arg2.getChildAt(_local5) is BaseObject)){
_local6 = (_arg2.getChildAt(_local5) as BaseObject);
_local4.hitTest(_local6);
};
_local5++;
};
};
_local3++;
};
}
public function collision():void{
var _local1:Boolean;
var _local2:*;
var _local3:*;
var _local4:Array;
var _local5:HitValue;
var _local6:MovieClip;
var _local7:Boolean;
var _local8:*;
var _local9:MovieClip;
var _local10:Array;
var _local11:*;
var _local12:HitValue;
var _local13:MovieClip;
var _local14:MovieClip;
var _local15:BaseObject;
var _local16:Array;
var _local17:*;
var _local18:HitValue;
var _local19:*;
var _local20:*;
var _local21:Array;
var _local22:HitValue;
var _local23:*;
var _local24:HitValue;
if (!Environment.data.heroModel.isKill){
_local1 = false;
_local2 = 0;
while (_local2 < heroLayer.numChildren) {
if ((heroLayer.getChildAt(_local2) is BaseObject)){
_local4 = (heroLayer.getChildAt(_local2) as BaseObject).getHit();
if (_local4.length > 0){
_local3 = 0;
while (_local3 < _local4.length) {
_local5 = (_local4[_local3] as HitValue);
_local6 = (_local5.hit as MovieClip);
if (_local6.type == "damage"){
_local7 = false;
_local8 = (enemyLayer.numChildren - 1);
while (_local8 >= 0) {
_local9 = (enemyLayer.getChildAt(_local8) as MovieClip);
if ((_local9 is BaseObject)){
_local10 = (_local9 as BaseObject).getAoE();
_local11 = 0;
while (_local11 < _local10.length) {
_local12 = (_local10[_local11] as HitValue);
_local13 = _local12.hit;
if (_local13.hitTestObject(_local6)){
if (_local12.hit.time == 0){
_local12.hit.time = Environment.data.time;
} else {
if (!_local12.hit.historyHitList.contain(_local6)){
_local12.hit.historyHitList.addElement(_local6);
_local12.hit.time = Environment.data.time;
_local14 = new gfx_hero_gun_hit_inside();
_local14.transform.colorTransform = new ColorTransform(1, 200, 50);
_local14.rotation = Random.next(0, 360);
if (_local6.parent.scaleX == 1){
_local14.x = (_local6.parent.x + _local6.x);
_local14.y = (_local6.parent.y + _local6.y);
} else {
_local14.x = (_local6.parent.x - _local6.x);
_local14.y = (_local6.parent.y + _local6.y);
};
this.GFxLayer.addChild(_local14);
_local1 = true;
_local7 = true;
(_local9 as BaseObject).notifyHit(_local4[_local3]);
};
if (!_local12.hit.isOnDuration()){
_local12.hit.clearList();
};
};
};
_local11++;
};
};
break;
_local8--;
};
};
_local3++;
};
};
};
_local2++;
};
_local2 = 0;
while (_local2 < enemyLayer.numChildren) {
if ((enemyLayer.getChildAt(_local2) is BaseObject)){
_local4 = (enemyLayer.getChildAt(_local2) as BaseObject).getHit();
if (_local4.length > 0){
_local3 = 0;
while (_local3 < _local4.length) {
_local5 = (_local4[_local3] as HitValue);
_local6 = (_local5.hit as MovieClip);
if (_local6.type == "damage"){
_local8 = (heroLayer.numChildren - 1);
while (_local8 >= 0) {
_local15 = (heroLayer.getChildAt(_local8) as BaseObject);
_local16 = _local15.getAoE();
_local17 = 0;
while (_local17 < _local16.length) {
_local18 = (_local16[_local17] as HitValue);
_local19 = _local18.hit;
if (_local19.hitTestObject(_local6)){
if (_local5.hit.time == 0){
_local5.hit.time = Environment.data.time;
_local14 = new gfx_hero_gun_hit_inside();
_local14.transform.colorTransform = new ColorTransform(1, 200, 50);
_local14.rotation = Random.next(0, 360);
if (_local6.parent.scaleX == 1){
_local14.x = (_local6.parent.x + _local6.x);
_local14.y = (_local6.parent.y + _local6.y);
} else {
_local14.x = (_local6.parent.x - _local6.x);
_local14.y = (_local6.parent.y + _local6.y);
};
this.GFxLayer.addChild(_local14);
};
_local15.notifyHit(_local5);
break;
};
_local17++;
};
_local8--;
};
};
_local3++;
};
};
};
_local2++;
};
_local3 = 0;
while (_local3 < enemyDamageLayer.numChildren) {
_local20 = enemyDamageLayer.getChildAt(_local3);
_local21 = (_local20 as BaseObject).getHit();
_local22 = _local21[0];
_local2 = 0;
while (_local2 < heroLayer.numChildren) {
_local23 = heroLayer.getChildAt(_local2);
if ((heroLayer.getChildAt(_local2) is BaseObject)){
_local4 = (heroLayer.getChildAt(_local2) as BaseObject).getAoE();
_local2 = 0;
while (_local2 < _local4.length) {
_local24 = (_local4[_local2] as HitValue);
if (_local22.hit.hitTestObject(_local24.hit)){
if (_local24.hit.time == 0){
_local24.hit.time = Environment.data.time;
};
if (!_local24.hit.historyHitList.contain(_local22.hit)){
_local24.hit.historyHitList.addElement(_local22.hit);
_local23.notifyHit(_local22);
if (_local20.kill() != undefined){
_local20.kill();
};
};
if (!_local24.hit.isOnDuration()){
_local24.hit.clearList();
};
};
_local2++;
};
};
_local2++;
};
_local3++;
};
};
}
}
}//package worldmap
Section 130
//GameEvent (xinnix.event.GameEvent)
package xinnix.event {
import flash.events.*;
public class GameEvent extends Event {
private var sender:Object;
public static const HITOBJECT:String = "HITOBJECT";
public static const SUCCESS:String = "SUCCESS";
public static const CHANG_UI:String = "CHANG_UI";
public static const CHANGE_DX:String = "DX";
public static const DEAD:String = "DEAD";
public static const CHANGE_STATUS:String = "CHANGE_STATUS";
public static const ADDSCORE:String = "ADDSCORE";
public static const CHANGE_DY:String = "DY";
public static const SHOOTANDHOLD:String = "SHOOTANDHOLD";
public static const ENDSCENE:String = "ENDSCENE";
public static const COMPLETE:String = "COMPLETE";
public static const SHOOT:String = "SHOOT";
public function GameEvent(_arg1:String, _arg2:Object, _arg3:Boolean=false, _arg4:Boolean=false){
this.sender = _arg2;
super(_arg1, _arg3, _arg4);
}
public function get Sender():Object{
return (this.sender);
}
public function set Sender(_arg1:Object){
this.sender = _arg1;
}
override public function toString():String{
return (formatToString("GameEvent", "type", "buubles", "cancelable"));
}
override public function clone():Event{
return (new GameEvent(type, bubbles, cancelable));
}
}
}//package xinnix.event
Section 131
//HomingMove (xinnix.movement.HomingMove)
package xinnix.movement {
import flash.display.*;
import xinnix.utils.*;
public class HomingMove {
public var offsetAngle:Number;// = 0
public var speed:Number;
public var isRotation:Boolean;
private var hommingHelper:HomingHelper;
public var target:MovieClip;
public var offsetTargetX:Number;// = 0
public var obj:MovieClip;
public var duration:Number;
public var offsetTargetY:Number;// = 0
public var isFlip:Boolean;// = false
public function HomingMove(_arg1:MovieClip, _arg2:MovieClip, _arg3:Number=10, _arg4:Number=-1){
this.obj = _arg1;
this.target = _arg2;
this.speed = _arg3;
this.duration = _arg4;
isRotation = true;
hommingHelper = new HomingHelper();
}
public function kill():void{
obj.kill();
}
public function isKill():Boolean{
return (obj._isKill);
}
public function update():void{
var _local1:* = (Math.cos(hommingHelper.angleInRadians) * speed);
var _local2:* = (Math.sin(hommingHelper.angleInRadians) * speed);
if (duration > 0){
duration--;
};
if (onDuration()){
hommingHelper.cal((target.x + offsetTargetX), (target.y + offsetTargetY), obj.x, obj.y);
if (isRotation){
this.obj.rotation = (hommingHelper.angleInDegree + offsetAngle);
} else {
if (_local1 < 0){
obj.scaleX = Math.abs(obj.scaleX);
} else {
obj.scaleX = (Math.abs(obj.scaleX) * -1);
};
};
_local1 = (Math.cos(hommingHelper.angleInRadians) * speed);
_local2 = (Math.sin(hommingHelper.angleInRadians) * speed);
};
this.obj.x = (this.obj.x + _local1);
this.obj.y = (this.obj.y + _local2);
}
public function onDuration():Boolean{
if (duration == -1){
return (true);
};
if (duration == 0){
return (false);
};
return (true);
}
}
}//package xinnix.movement
Section 132
//ButtonElement (xinnix.utils.ButtonElement)
package xinnix.utils {
public class ButtonElement {
var _duration:Number;
var _time:Number;
var _keyCode:Number;
public function ButtonElement(_arg1:Number, _arg2:Number){
_keyCode = _arg1;
_time = _arg2;
_duration = 5;
}
public function isActive(_arg1:Number):Boolean{
if (this.duration <= (_arg1 - this.time)){
return (true);
};
return (false);
}
public function get duration():Number{
return (_duration);
}
public function get time():Number{
return (_time);
}
public function get keycode():Number{
return (_keyCode);
}
public function set duration(_arg1:Number):void{
_duration = _arg1;
}
}
}//package xinnix.utils
Section 133
//ButtonKeeper (xinnix.utils.ButtonKeeper)
package xinnix.utils {
public class ButtonKeeper {
public var list:Object;
public function ButtonKeeper(){
list = new Object();
}
public function add(_arg1:Number, _arg2:Number=0):void{
if (list[_arg1] == undefined){
list[_arg1] = new Array();
(list[_arg1] as Array).push(_arg2);
} else {
(list[_arg1] as Array).push(_arg2);
};
}
public function getArrayCheckTime(_arg1:Number):Array{
if (list[_arg1] != undefined){
return (list[_arg1]);
};
return (new Array());
}
public function removeByName(_arg1:Number):void{
if (list[_arg1] != undefined){
list[_arg1] = new Array();
};
}
public function clear():void{
list = new Object();
}
}
}//package xinnix.utils
Section 134
//DegreeHepler (xinnix.utils.DegreeHepler)
package xinnix.utils {
public class DegreeHepler {
public static function covertToPI(_arg1:Number):Number{
return (((_arg1 * Math.PI) / 180));
}
public static function covertToPositive(_arg1:Number):Number{
var _local2:Number;
if (_arg1 >= 0){
if (_arg1 < 360){
return (_arg1);
};
_local2 = (_arg1 % 360);
return (_local2);
//unresolved jump
};
if (_arg1 > -360){
return ((360 + _arg1));
};
_local2 = (_arg1 % 360);
return ((_local2 * -1));
}
}
}//package xinnix.utils
Section 135
//HomingHelper (xinnix.utils.HomingHelper)
package xinnix.utils {
public class HomingHelper {
public var diffX:Number;
public var angleInRadians:Number;
public var diffY:Number;
public var angleInDegree:Number;
public function cal(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number):void{
diffX = (_arg1 - _arg3);
diffY = (_arg2 - _arg4);
angleInRadians = Math.atan2(diffY, diffX);
angleInDegree = ((angleInRadians * 180) / Math.PI);
}
}
}//package xinnix.utils
Section 136
//Iterator (xinnix.utils.Iterator)
package xinnix.utils {
public class Iterator {
private var _data:Array;
private var _index:uint;
public function Iterator(){
_data = new Array();
_index = 0;
}
public function next():Object{
return (Object(_data[_index++]));
}
public function contain(_arg1:Object):Boolean{
var _local2:int = _data.indexOf(_arg1);
if (_local2 == -1){
return (false);
};
return (true);
}
public function isEmpty():Boolean{
return ((_data.length == 0));
}
public function hasNext():Boolean{
return ((_index < _data.length));
}
public function reset():void{
_index = 0;
}
public function pop():Object{
return (_data.pop());
}
public function hasNaxtAndAutoReset():Boolean{
if (_data.length == 0){
return (false);
};
if (hasNext()){
return (true);
};
reset();
return (false);
}
public function getElemet(_arg1:Number):Object{
return (_data[_arg1]);
}
public function get length():Number{
return (_data.length);
}
public function removeElement(_arg1:Object):Boolean{
var _local2:int = _data.indexOf(_arg1);
if (_local2 == -1){
return (true);
};
var _local3:Object = _data[_local2];
if ((_local2 + 1) == _index){
_index--;
};
var _local4:Object = _data[0];
_data[0] = _local3;
_data[_local2] = _local4;
delete ??getglobalscope
[_data.shift()];
_arg1 = null;
return (true);
}
public function addElement(_arg1:Object):void{
_data.push(_arg1);
}
public function clear():void{
while (hasNaxtAndAutoReset()) {
removeElement(next());
};
}
public function clone():Iterator{
var _local1:Iterator = new Iterator();
while (hasNaxtAndAutoReset()) {
_local1.addElement(next());
};
return (_local1);
}
}
}//package xinnix.utils
Section 137
//KeyboardCode (xinnix.utils.KeyboardCode)
package xinnix.utils {
public class KeyboardCode {
public static var h:Number = 72;
public static var F1:Number = 112;
public static var k:Number = 75;
public static var LEFT:Number = 37;
public static var SpaceBar:Number = 32;
public static var UP:Number = 38;
public static var a:Number = 65;
public static var d:Number = 68;
public static var B1:Number = 49;
public static var B2:Number = 50;
public static var DOWN:Number = 40;
public static var B4:Number = 52;
public static var B5:Number = 53;
public static var B6:Number = 54;
public static var B7:Number = 55;
public static var B9:Number = 57;
public static var B3:Number = 51;
public static var j:Number = 74;
public static var s:Number = 83;
public static var l:Number = 76;
public static var RIGHT:Number = 39;
public static var B8:Number = 56;
public static var w:Number = 87;
}
}//package xinnix.utils
Section 138
//Random (xinnix.utils.Random)
package xinnix.utils {
public class Random {
public static function next(_arg1:Number, _arg2:Number):Number{
var _local3:Number = Math.floor(((Math.random() * (_arg2 - _arg1)) + _arg1));
return (_local3);
}
}
}//package xinnix.utils
Section 139
//RandomWeight (xinnix.utils.RandomWeight)
package xinnix.utils {
public class RandomWeight {
private var container:Object;
private var sumWeight:Number;// = 0
private var array:Array;
public function RandomWeight(){
array = new Array();
super();
container = new Object();
}
public function refesh():void{
array = new Array();
resetSumWeight();
}
public function add(_arg1:Object, _arg2:Number):void{
if (_arg2 >= 0){
container[_arg1] = _arg2;
};
}
public function getWeight(_arg1:Object):Number{
if ((_arg1 in container[_arg1])){
return (container[_arg1]);
};
return (0);
}
public function resetSumWeight(){
var _local1:*;
sumWeight = 0;
for (_local1 in container) {
sumWeight = (sumWeight + container[_local1]);
};
}
public function next():Object{
var _local3:*;
var _local1:Number = Random.next(0, sumWeight);
var _local2:Number = 0;
for (_local3 in container) {
_local2 = (_local2 + container[_local3]);
if (_local1 <= _local2){
return (_local3);
};
};
return ("");
}
public function getlist():Object{
return (container);
}
}
}//package xinnix.utils
Section 140
//MatrixTransformer (xinnix.MatrixTransformer)
package xinnix {
import flash.geom.*;
public class MatrixTransformer {
public static function getSkewY(_arg1:Matrix):Number{
return ((Math.atan2(_arg1.b, _arg1.a) * (180 / Math.PI)));
}
public static function getScaleX(_arg1:Matrix):Number{
var _local2:Number = 1;
if (_arg1.a < 0){
_local2 = -1;
};
return ((_local2 * Math.sqrt(((_arg1.a * _arg1.a) + (_arg1.b * _arg1.b)))));
}
public static function getScaleY(_arg1:Matrix):Number{
var _local2:Number = 1;
if (_arg1.c < 0){
_local2 = -1;
};
return ((_local2 * Math.sqrt(((_arg1.c * _arg1.c) + (_arg1.d * _arg1.d)))));
}
public static function setSkewXRadians(_arg1:Matrix, _arg2:Number):void{
var _local3:Number = getScaleY(_arg1);
_arg1.c = (-(_local3) * Math.sin(_arg2));
_arg1.d = (_local3 * Math.cos(_arg2));
}
public static function setRotation(_arg1:Matrix, _arg2:Number):void{
setRotationRadians(_arg1, (_arg2 * (Math.PI / 180)));
}
public static function rotateAroundInternalPoint(_arg1:Matrix, _arg2:Number, _arg3:Number, _arg4:Number):void{
var _local5:Point = new Point(_arg2, _arg3);
_local5 = _arg1.transformPoint(_local5);
_arg1.tx = (_arg1.tx - _local5.x);
_arg1.ty = (_arg1.ty - _local5.y);
_arg1.rotate((_arg4 * (Math.PI / 180)));
_arg1.tx = (_arg1.tx + _local5.x);
_arg1.ty = (_arg1.ty + _local5.y);
}
public static function setSkewX(_arg1:Matrix, _arg2:Number):void{
setSkewXRadians(_arg1, (_arg2 * (Math.PI / 180)));
}
public static function setSkewY(_arg1:Matrix, _arg2:Number):void{
setSkewYRadians(_arg1, (_arg2 * (Math.PI / 180)));
}
public static function setScaleX(_arg1:Matrix, _arg2:Number):void{
var _local4:Number;
var _local5:Number;
var _local3:Number = getScaleX(_arg1);
if (_local3){
_local4 = (_arg2 / _local3);
_arg1.a = (_arg1.a * _local4);
_arg1.b = (_arg1.b * _local4);
} else {
_local5 = getSkewYRadians(_arg1);
_arg1.a = (Math.cos(_local5) * _arg2);
_arg1.b = (Math.sin(_local5) * _arg2);
};
}
public static function setScaleY(_arg1:Matrix, _arg2:Number):void{
var _local4:Number;
var _local5:Number;
var _local3:Number = getScaleY(_arg1);
if (_local3){
_local4 = (_arg2 / _local3);
_arg1.c = (_arg1.c * _local4);
_arg1.d = (_arg1.d * _local4);
} else {
_local5 = getSkewXRadians(_arg1);
_arg1.c = (-(Math.sin(_local5)) * _arg2);
_arg1.d = (Math.cos(_local5) * _arg2);
};
}
public static function setRotationRadians(_arg1:Matrix, _arg2:Number):void{
var _local3:Number = getRotationRadians(_arg1);
var _local4:Number = getSkewXRadians(_arg1);
setSkewXRadians(_arg1, ((_local4 + _arg2) - _local3));
setSkewYRadians(_arg1, _arg2);
}
public static function setSkewYRadians(_arg1:Matrix, _arg2:Number):void{
var _local3:Number = getScaleX(_arg1);
_arg1.a = (_local3 * Math.cos(_arg2));
_arg1.b = (_local3 * Math.sin(_arg2));
}
public static function getSkewX(_arg1:Matrix):Number{
return ((Math.atan2(-(_arg1.c), _arg1.d) * (180 / Math.PI)));
}
public static function getSkewYRadians(_arg1:Matrix):Number{
return (Math.atan2(_arg1.b, _arg1.a));
}
public static function getSkewXRadians(_arg1:Matrix):Number{
return (Math.atan2(-(_arg1.c), _arg1.d));
}
public static function getRotation(_arg1:Matrix):Number{
return ((getRotationRadians(_arg1) * (180 / Math.PI)));
}
public static function rotateAroundExternalPoint(_arg1:Matrix, _arg2:Number, _arg3:Number, _arg4:Number):void{
_arg1.tx = (_arg1.tx - _arg2);
_arg1.ty = (_arg1.ty - _arg3);
_arg1.rotate((_arg4 * (Math.PI / 180)));
_arg1.tx = (_arg1.tx + _arg2);
_arg1.ty = (_arg1.ty + _arg3);
}
public static function getRotationRadians(_arg1:Matrix):Number{
return (getSkewYRadians(_arg1));
}
public static function matchInternalPointWithExternal(_arg1:Matrix, _arg2:Point, _arg3:Point):void{
var _local4:Point = _arg1.transformPoint(_arg2);
var _local5:Number = (_arg3.x - _local4.x);
var _local6:Number = (_arg3.y - _local4.y);
_arg1.tx = (_arg1.tx + _local5);
_arg1.ty = (_arg1.ty + _local6);
}
}
}//package xinnix
Section 141
//b_buy (b_buy)
package {
import flash.display.*;
public dynamic class b_buy extends SimpleButton {
}
}//package
Section 142
//Camera (Camera)
package {
import flash.display.*;
import flash.geom.*;
public dynamic class Camera {
public var worldWidthOrginal:Number;
public var magnification:Number;// = 0.001
public var minZoom;// = 0.8
public var lenFocus:MovieClip;
public var worldWidth:Number;
public var len:MovieClip;
public var maxZoom;// = 1.1
public var focus:MovieClip;
var world:MovieClip;
public var newCamX:Number;
public var newCamY:Number;
public var tempFocus:MovieClip;
public var screenHeight;// = 480
public var screenWidth;// = 700
public var isMoveOnX:Boolean;
public var isMoveOnY:Boolean;
public function Camera(_arg1:MovieClip, _arg2:MovieClip){
len = new MovieClip();
lenFocus = new Hitchild();
lenFocus.name = "lenFocus";
lenFocus.x = (screenWidth / 2);
lenFocus.y = ((screenHeight / 2) + 180);
len.alpha = 0;
len.addChild(lenFocus);
_arg2.parent.addChild(len);
this.isMoveOnX = true;
this.isMoveOnY = true;
this.focus = _arg1;
this.tempFocus = _arg1;
this.world = _arg2;
worldWidth = _arg2.width;
worldWidthOrginal = _arg2.width;
moveYtoGround();
update();
}
public function update():void{
var _local1:Point = new Point(focus.x, focus.y);
var _local2:Point = new Point(tempFocus.x, tempFocus.y);
var _local3:Point = world.localToGlobal(_local1);
var _local4:Point = world.localToGlobal(_local2);
newCamX = (len.getChildByName("lenFocus").x - _local4.x);
newCamY = (len.getChildByName("lenFocus").y - _local3.y);
if (isMoveOnX){
if (((((world.x + newCamX) > (((Environment.worldWidth * world.scaleX) - screenWidth) * -1))) && (((world.x + newCamX) < 0)))){
world.x = (world.x + newCamX);
} else {
if (!((world.x + newCamX) > (((Environment.worldWidth * world.scaleX) - screenWidth) * -1))){
world.x = (((Environment.worldWidth * world.scaleX) - screenWidth) * -1);
} else {
if (!((world.x + newCamX) < 0)){
world.x = -2;
};
};
};
};
if (isMoveOnY){
world.y = (world.y + newCamY);
};
}
public function returnFocus():void{
this.focus = this.tempFocus;
}
public function zoomIn():void{
if (world.scaleX < maxZoom){
world.scaleX = (world.scaleX + magnification);
world.scaleY = (world.scaleY + magnification);
};
}
public function moveYtoGround():void{
tempFocus = this.focus;
this.focus = (world.getChildByName("mcGround") as MovieClip);
}
public function getLen():MovieClip{
return ((len.getChildByName("lenFocus") as MovieClip));
}
public function moveLenToFocus():void{
var _local1:Point = new Point(focus.x, focus.y);
var _local2:Point = world.localToGlobal(_local1);
}
public function zoomOut():void{
if (world.scaleX > minZoom){
world.scaleX = (world.scaleX - magnification);
world.scaleY = (world.scaleY - magnification);
};
}
}
}//package
Section 143
//Enum (Enum)
package {
public class Enum {
public static var attack_1:String = "attack_1";
public static var enemy_m_object_doll:String = "enemy_m_object_doll";
public static var attack_counter:String = "attack_counter";
public static var attack_FistOfKing:String = "attack_FistOfKing";
public static var hurt:String = "hurt";
public static var enemy_m_object_wolf:String = "enemy_m_object_wolf";
public static var enemy_boy_A:String = "enemy_boy_A";
public static var enemy_boy_B:String = "enemy_boy_B";
public static var hero:String = "hero";
public static var enemy_m_object_cactus:String = "enemy_m_object_cactus";
public static var jump:String = "jump";
public static var enemy_maid_A:String = "enemy_maid_A";
public static var attack_SitdownKick:String = "attack_SitdownKick";
public static var air:String = "air";
public static var enemy_m_object_fire_ant_big:String = "enemy_m_object_fire_big";
public static var attack:String = "attack";
public static var item_score:String = "item_score";
public static var attack_FistOfStrome:String = "attack_FistOfStrome";
public static var enemy_m_object_bear_A:String = "m_object_bear_A";
public static var attack_RisngSun:String = "attack_RisngSun";
public static var attack_MightOfHeavent1:String = "attack_MightOfHeavent1";
public static var attack_MightOfHeavent2:String = "attack_MightOfHeavent2";
public static var enemy_guard_B:String = "enemy_guard_B";
public static var enemy_m_object_bear_B:String = "m_object_bear_B";
public static var enemy_guard_A:String = "enemy_guard_A";
public static var proc_hurt_enemy2:String = "proc_hurt_enemy2";
public static var call_minion:String = "call_minion";
public static var sitdown:String = "sitdown";
public static var enemy_m_object_scorpion:String = "enemy_m_object_scorpion";
public static var enemy_m_object_plane:String = "enemy_m_object_plane";
public static var die:String = "die";
public static var item_attackUP:String = "item_attackUP";
public static var guard_Air:String = "guard_Air";
public static var enemy_m_object_rockingdoll:String = "enemy_m_object_rockingdoll";
public static var dash:String = "dash";
public static var enemy_m_object_robot:String = "enemy_m_object_robot";
public static var enemy_m_object_fire_ant:String = "enemy_m_object_fire_ant";
public static var attack_AirKick:String = "attack_AirKick";
public static var guard:String = "guard";
public static var attack_TigerDance:String = "attack_TigerDance";
public static var chargePower:String = "chargePower";
public static var item_agiUP:String = "item_agiUP";
public static var attack_normal:String = "attack_normal";
public static var item_mp1:String = "mp1";
public static var walk:String = "walk";
public static var enemy_office_girl_A:String = "enemy_office_girl_A";
public static var enemy_office_girl_B:String = "enemy_office_girl_B";
public static var enemy_Boss1:String = "enemy_Boss1";
public static var enemy_Boss2:String = "enemy_Boss2";
public static var enemy_Boss3:String = "enemy_Boss3";
public static var enemy_Boss5:String = "enemy_Boss5";
public static var stand:String = "stand";
public static var enemy_Boss4:String = "enemy_Boss4";
public static var proc_hurt_enemy:String = "proc_hurt_enemy";
public static var enemy_maid_A4:String = "enemy_maid_A4";
public static var hurt_Air:String = "hurt_Air";
public static var attack_2:String = "attack_2";
public static var attack_3:String = "attack_3";
public static var item_hp1:String = "hp1";
public static var item_hp2:String = "hp2";
public static var item_hp3:String = "hp3";
}
}//package
Section 144
//Environment (Environment)
package {
import object.*;
import worldmap.*;
import flash.utils.*;
import sceneControl.*;
public dynamic class Environment {
public var sceneManager:SceneManager;
public var level:Number;// = 1
public var isFistOfKingEnable:Boolean;// = false
public var isDebugMode:Boolean;// = false
public var combo:Number;// = 1
public var point:Number;// = 0
public var world:BaseWorld;
public var _score:Number;// = 0
public var STR_item:Number;// = 0
public var resaultGoToShow:Number;// = 0
public var camera:Camera;
public var _powerCount:Number;// = 0
public var totalScore:Number;// = 0
public var uiControl:UIcontrol;
public var _AGI:Number;// = 1
public var heroController:HeroController;
public var gameHeight:Number;
public var hpMax:Number;// = 500
public var isRisingSunEnable:Boolean;// = false
public var _hpHero:Number;// = 500
public var _VIT:Number;// = 7
public var isMightOfHeaventEnable:Boolean;// = false
public var lastTimeCombo:Number;// = 0
public var isFistOfStromEnable:Boolean;// = false
public var heroModel:HeroModel;
public var mpMax:Number;// = 200
public var _STR:Number;// = 10
public var offsetScreen:Number;// = 0
public var _mpHero:Number;// = 200
public var AGI_item:Number;// = 0
public var gameWidth:Number;
public var priceItem:Object;
public static var ground:Number = 636;
public static var secRight:Number = 10;
public static var staticFric:Number = 0.2;
public static var instance:Environment;
public static var secLeft:Number = 10;
public static var worldHeight:Number = 0;
public static var worldWidth:Number = 0;
public static var gravity:Number = 9;
public function Environment(_arg1:singletonClass){
world = new BaseWorld();
priceItem = new Object();
super();
singletonClass.alert();
initPrice();
}
public function setSceneManager(_arg1:SceneManager):void{
this.sceneManager = _arg1;
}
public function setUIControl(_arg1:UIcontrol):void{
this.uiControl = _arg1;
}
public function get powerCount():Number{
var _local1:Number = priceItem.CounterPower.index;
return (priceItem.CounterPower.value[_local1]);
}
public function setHeroModel(_arg1:HeroModel):void{
this.heroModel = _arg1;
}
public function get STR():Number{
return ((_STR + this.STR_item));
}
public function get centerOfScreen():Number{
return ((worldWidth / 2));
}
public function get hpHero():Number{
return (_hpHero);
}
public function setCamera(_arg1:Camera):void{
this.camera = _arg1;
}
public function classInit():void{
}
public function get score():Number{
return (this._score);
}
public function set VIT(_arg1:Number):void{
this._VIT = _arg1;
}
public function initPrice():void{
priceItem = new Object();
priceItem.hp = new Object();
priceItem.hp.price = new Array(1, 2);
priceItem.hp.index = 1;
priceItem.AGI = new Object();
priceItem.AGI.price = new Array(100, 2, 5, 8, 10, 12, 14, 20, 25, 30, 35);
priceItem.AGI.value = new Array(100, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100);
priceItem.AGI.index = 1;
priceItem.STR = new Object();
priceItem.STR.index = 1;
priceItem.STR.price = new Array(1, 5, 8, 10, 12, 20, 30, 40, 50, 60, 80);
priceItem.STR.value = new Array(1, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100);
priceItem.VIT = new Object();
priceItem.VIT.price = new Array(1, 5, 8, 10, 12, 20, 30, 40, 50, 60, 80);
priceItem.VIT.value = new Array(1, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100);
priceItem.VIT.index = 1;
priceItem.CounterPower = new Object();
priceItem.CounterPower.price = new Array(5, 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 100);
priceItem.CounterPower.value = new Array(5, 0, 3, 5, 8, 10, 15, 20, 25, 40, 50, 80);
priceItem.CounterPower.index = 1;
priceItem.DecreaseMpUsage = new Object();
priceItem.DecreaseMpUsage.price = new Array(10, 20, 25, 30, 80);
priceItem.DecreaseMpUsage.value = new Array(1, 3, 5, 8, 10, 30);
priceItem.DecreaseMpUsage.index = 0;
}
public function clearLeverValue():void{
AGI_item = 0;
STR_item = 0;
}
public function get mpHero():Number{
return (_mpHero);
}
public function updateSPAction():void{
if (level > 4){
this.isFistOfStromEnable = true;
};
if (level > 7){
this.isFistOfKingEnable = true;
};
if (level > 10){
this.isRisingSunEnable = true;
};
if (level > 13){
this.isMightOfHeaventEnable = true;
};
}
public function set hpHero(_arg1:Number):void{
if (_arg1 < hpMax){
this._hpHero = _arg1;
} else {
this._hpHero = hpMax;
};
}
public function set score(_arg1:Number):void{
this.totalScore = (this.totalScore + (_arg1 - _score));
this._score = _arg1;
}
public function get time():Number{
return ((getTimer() / 100));
}
public function get VIT():Number{
return (_VIT);
}
public function setWorld(_arg1:BaseWorld):void{
worldWidth = (_arg1.width - 20);
secRight = worldWidth;
world = _arg1;
}
public function set STR(_arg1:Number):void{
this._STR = _arg1;
}
public function setHeroController(_arg1:HeroController):void{
this.heroController = _arg1;
}
public function get AGI():Number{
return ((_AGI + this.AGI_item));
}
public function getMpAttack(_arg1:String):Number{
var _local2:Number = 0;
switch (_arg1){
case Enum.attack_counter:
_local2 = 10;
break;
case Enum.attack_FistOfKing:
_local2 = 30;
break;
case Enum.attack_FistOfStrome:
_local2 = 20;
break;
case Enum.attack_MightOfHeavent1:
_local2 = 80;
break;
case Enum.attack_RisngSun:
_local2 = 30;
break;
case Enum.attack_TigerDance:
_local2 = 3.5;
break;
};
var _local3:Number = priceItem.DecreaseMpUsage.index;
var _local4:Number = priceItem.DecreaseMpUsage.value[_local3];
var _local5:Number = 10;
_local5 = ((_local2 * (100 - _local4)) / 100);
return (_local5);
}
public function set AGI(_arg1:Number):void{
this._AGI = _arg1;
}
public function set mpHero(_arg1:Number):void{
if (_arg1 < mpMax){
this._mpHero = _arg1;
} else {
if (_arg1 < 0){
} else {
this._mpHero = mpMax;
};
};
}
public static function set data(_arg1:Environment):void{
Environment.instance = _arg1;
}
public static function newData():void{
Environment.instance = new Environment(new singletonClass());
}
public static function get data():Environment{
if (instance == null){
Environment.instance = new Environment(new singletonClass());
};
return (Environment.instance);
}
}
}//package
class singletonClass {
private function singletonClass(){
}
public static function alert():void{
}
}
Section 145
//GameFactory (GameFactory)
package {
import abstract.enemy.minor.*;
import flash.display.*;
import abstract.enemy.boss.*;
import worldmap.*;
import ai.*;
public class GameFactory {
var objContrainer:Object;
public function GameFactory(){
objContrainer = new Object();
objContrainer["model"] = new Object();
objContrainer["control"] = new Object();
objContrainer["view"] = new Object();
objContrainer["mc"] = new Object();
objContrainer["ai"] = new Object();
}
public function setObjContrainer(_arg1:Object, _arg2:Object, _arg3:Object, _arg4:Object=null):void{
objContrainer["model"] = _arg1;
objContrainer["view"] = _arg2;
objContrainer["control"] = _arg3;
objContrainer["mc"] = _arg2.mc;
objContrainer["ai"] = _arg4;
}
public function cItem(_arg1:String):Object{
var _local2:Object = new Object();
switch (_arg1){
case Enum.item_hp1:
_local2.mc = new item1();
_local2.mc.name = Enum.item_hp1;
break;
case Enum.item_hp2:
_local2.mc = new item2();
_local2.mc.name = Enum.item_hp2;
break;
case Enum.item_hp3:
_local2.mc = new item3();
_local2.mc.name = Enum.item_hp3;
break;
case Enum.item_mp1:
_local2.mc = new item4();
_local2.mc.name = Enum.item_mp1;
break;
case Enum.item_attackUP:
_local2.mc = new item5();
_local2.mc.name = Enum.item_attackUP;
break;
case Enum.item_agiUP:
_local2.mc = new item6();
_local2.mc.name = Enum.item_agiUP;
break;
case Enum.item_score:
_local2.mc = new item7();
_local2.mc.name = Enum.item_score;
break;
};
return (_local2);
}
public function cCharacter(_arg1:String):Object{
var _local2:*;
var _local3:HeroModel;
var _local4:HeroController;
var _local5:HeroView;
var _local6:MovieClip;
var _local7:BaseMinorModel;
var _local8:*;
var _local9:*;
var _local10:AInumberOne;
var _local11:BaseBoss;
var _local12:AIBoss;
objContrainer = new Object();
switch (_arg1){
case Enum.hero:
_local2 = new mobj_hero();
_local3 = new HeroModel();
_local3.hp = Environment.data.hpHero;
_local4 = new HeroController(_local3);
_local5 = new HeroView(_local3, _local4, _local2);
setObjContrainer(_local3, _local5, _local4);
break;
case Enum.enemy_guard_A:
_local6 = new m_object_guard_A();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new MinorGuardAView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 1;
_local10.initRandomWeight();
_local7.hp = 50;
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_guard_B:
_local6 = new m_object_guard_B();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new MinorGuardAView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local7.hp = 100;
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_maid_A:
_local6 = new m_object_maid_A();
_local7 = new BaseMinorModel();
_local7.hp = 50;
_local8 = new BaseMinorController(_local7);
_local9 = new MinorMaidA(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 2;
_local10.initRandomWeight();
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_maid_A4:
_local6 = new m_object_maid_A4();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_boy_A:
_local6 = new m_object_office_boy_A();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_boy_B:
_local6 = new m_object_office_boy_B();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local7.hp = 100;
_local10.varsion = 3;
_local10.initRandomWeight();
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_office_girl_A:
_local6 = new m_object_office_girl_A();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_office_girl_B:
_local6 = new m_object_office_girl_B();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 4;
_local10.initRandomWeight();
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_bear_A:
_local6 = new m_object_bear_A();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 1;
_local10.initRandomWeight();
_local7.hp = 50;
_local7.mass = 14;
_local7.speed = 1.5;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_bear_B:
_local6 = new m_object_bear_B();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 100;
_local7.mass = 14;
_local7.speed = 3;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_fire_ant:
_local6 = new m_object_fire_ant();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 100;
_local7.mass = 14;
_local7.speed = 3;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_fire_ant_big:
_local6 = new m_object_fire_big();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 600;
_local7.mass = 14;
_local7.speed = 3;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_cactus:
_local6 = new m_object_cactus();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new MinorCactus(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 1;
_local10.initRandomWeight();
_local7.hp = 100;
_local7.mass = 14;
_local7.speed = 3;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_scorpion:
_local6 = new m_object_scorpion();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 300;
_local7.mass = 14;
_local7.speed = 10;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_wolf:
_local6 = new m_object_wolf();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 2;
_local10.initRandomWeight();
_local7.hp = 200;
_local7.mass = 14;
_local7.speed = 10;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_robot:
_local6 = new m_object_robot();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new MinorRobot(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 200;
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_bear_B:
_local6 = new m_object_bear_B();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 200;
_local7.mass = 14;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_doll:
_local6 = new m_object_doll();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new MinorDollView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 20;
_local7.mass = 14;
_local7.speed = 7;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_m_object_rockingdoll:
_local6 = new m_object_rockingdoll();
_local7 = new BaseMinorModel();
_local8 = new BaseMinorController(_local7);
_local9 = new BaseMinorView(_local7, _local8, _local6);
_local10 = new AInumberOne(500, _local8, _local7);
_local10.varsion = 0;
_local10.initRandomWeight();
_local7.hp = 20;
_local7.mass = 14;
_local7.speed = 7;
setObjContrainer(_local7, _local9, _local8, _local10);
break;
case Enum.enemy_Boss1:
_local11 = new mobj_boss1();
_local12 = new AIBoss(_local11);
_local12.versionNum = 1;
_local12.init();
objContrainer["mc"] = _local11;
objContrainer["ai"] = _local12;
break;
case Enum.enemy_Boss2:
_local11 = new mobj_boss2();
_local12 = new AIBoss(_local11);
_local12.versionNum = 2;
_local12.init();
_local11.speedX = 10;
objContrainer["mc"] = _local11;
objContrainer["ai"] = _local12;
break;
case Enum.enemy_Boss3:
_local11 = new mobj_boss3();
_local12 = new AIBoss(_local11);
_local12.versionNum = 3;
_local12.init();
_local11.speedX = 8;
objContrainer["mc"] = _local11;
objContrainer["ai"] = _local12;
break;
case Enum.enemy_Boss4:
_local11 = new mobj_boss4();
_local12 = new AIBoss(_local11);
_local12.versionNum = 4;
_local12.init();
_local11.consistace = 1;
_local11.consistaceMax = 1;
_local11.speedX = 12;
objContrainer["mc"] = _local11;
objContrainer["ai"] = _local12;
break;
case Enum.enemy_Boss5:
_local11 = new mobj_boss5();
_local12 = new AIBoss(_local11);
_local12.versionNum = 5;
_local12.init();
_local11.consistace = 3;
_local11.consistaceMax = 3;
_local11.speedX = 10;
objContrainer["mc"] = _local11;
objContrainer["ai"] = _local12;
break;
};
return (objContrainer);
}
}
}//package
Section 146
//gfx_hero_gun_hit_inside (gfx_hero_gun_hit_inside)
package {
import flash.display.*;
public dynamic class gfx_hero_gun_hit_inside extends MovieClip {
public function gfx_hero_gun_hit_inside(){
addFrameScript(12, frame13);
}
function frame13(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 147
//gfx_hitNumber (gfx_hitNumber)
package {
import object.gfx.*;
public dynamic class gfx_hitNumber extends gfxHitDamage {
public function gfx_hitNumber(){
addFrameScript(11, frame12);
}
function frame12(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 148
//help (help)
package {
import flash.display.*;
public dynamic class help extends MovieClip {
}
}//package
Section 149
//HeroController (HeroController)
package {
import flash.display.*;
import xinnix.event.*;
import object.*;
import xinnix.utils.*;
import abstract.*;
import action.hero.*;
import object.gfx.*;
import object.item.*;
public dynamic class HeroController {
public var time:Number;// = 0
public var frameCounter:Number;// = 0
public var historyHit:Iterator;
public var isAGI_UP:Boolean;// = false
public var buttonKeeperRelease:ButtonKeeper;
public var buttonKeeperPress:ButtonKeeper;
public var lasttimeAGI:Number;// = 0
public var lastKey:Number;
public var isATK_UP:Boolean;// = false
public var buttonList:Array;
public var actionList:Array;
public var lasttimeATK:Number;// = 0
private var keysDown:Object;
public var model:HeroModel;
public function HeroController(_arg1:HeroModel){
keysDown = new Object();
super();
this.model = _arg1;
buttonList = new Array();
actionList = new Array();
historyHit = new Iterator();
actionList.push(new ActionCounter());
actionList.push(new ActionFistOfKing());
actionList.push(new ActionFistOfStrom());
actionList.push(new ActionRisingSun());
actionList.push(new ActionMightOfHeavent());
actionList.push(new ActionDashRight());
actionList.push(new ActionDashLeft());
actionList.push(new ActionTigerDance());
buttonKeeperPress = new ButtonKeeper();
buttonKeeperRelease = new ButtonKeeper();
}
public function doCommand(_arg1:String):void{
model.doCommand(_arg1);
}
public function update():void{
frameCounter++;
time++;
executeKey();
if (frameCounter > 30){
frameCounter = 0;
buttonList = new Array();
};
if (isAGI_UP){
if ((Environment.data.time - lasttimeAGI) > 50){
isAGI_UP = false;
Environment.data.AGI_item = 0;
Environment.data.uiControl.disShowAGIUP();
};
};
if (isATK_UP){
if ((Environment.data.time - lasttimeATK) > 50){
isATK_UP = false;
Environment.data.STR_item = 0;
Environment.data.uiControl.disShowATKUP();
};
};
model.update();
}
public function stop(_arg1:Number):void{
model.doCommand("stop");
}
public function viewStateNotify(_arg1:String):void{
model.specialAction = "";
if (model.getCurrentState() == model.getState("onAirState")){
model.setAction("jump");
} else {
if (model.getCurrentState() == model.getState("sitState")){
model.setAction("sitdown");
} else {
model.setState(model.getState("standState"));
model.setAction("stand");
};
};
}
public function hurt(_arg1:Object):void{
var _local2:HitValue;
var _local3:ItemStaff;
if (model.currentState != model.getState("hurtState")){
_local2 = (_arg1 as HitValue);
if ((_local2.mcOwner is ItemStaff)){
_local3 = (_local2.mcOwner as ItemStaff);
if (_local3.isItem){
if (_local3.name == Enum.item_hp1){
getItemgetScore();
Environment.data.hpHero = (Environment.data.hpHero + 80);
Environment.data.uiControl.updateHp();
} else {
if (_local3.name == Enum.item_hp2){
getItemgetScore();
Environment.data.hpHero = (Environment.data.hpHero + 120);
Environment.data.uiControl.updateMp();
} else {
if (_local3.name == Enum.item_hp3){
getItemgetScore();
Environment.data.hpHero = (Environment.data.hpHero + 200);
Environment.data.uiControl.updateHp();
} else {
if (_local3.name == Enum.item_mp1){
getItemgetScore();
Environment.data.mpHero = (Environment.data.mpHero + 20);
Environment.data.uiControl.updateMp();
} else {
if (_local3.name == Enum.item_attackUP){
getItemgetScore();
if (!isATK_UP){
Environment.data.STR_item = (Environment.data.STR_item + 20);
isATK_UP = true;
lasttimeATK = Environment.data.time;
Environment.data.uiControl.showATKUP();
};
} else {
if (_local3.name == Enum.item_agiUP){
getItemgetScore();
if (!isAGI_UP){
Environment.data.AGI_item = (Environment.data.AGI_item + 10);
isAGI_UP = true;
lasttimeAGI = Environment.data.time;
Environment.data.uiControl.showAGIUP();
};
} else {
if (_local3.name == Enum.item_score){
getItemgetScore();
Environment.data.score = (Environment.data.score + Random.next(10, 50));
Environment.data.uiControl.updateScore();
};
};
};
};
};
};
};
_local3.remove();
} else {
if (historyHit.contain(_local2.hit)){
if ((Environment.data.time - _local2.hit.time) > 10){
model.bumpper = _local2;
historyHit.removeElement(_local2.hit);
gotoHurt(_local2);
};
} else {
_local2.hit.time = Environment.data.time;
historyHit.addElement(_local2.hit);
model.bumpper = _local2;
gotoHurt(_local2);
};
};
} else {
if (historyHit.contain(_local2.hit)){
if ((Environment.data.time - _local2.hit.time) > 10){
model.bumpper = _local2;
historyHit.removeElement(_local2.hit);
gotoHurt(_local2);
};
} else {
_local2.hit.time = Environment.data.time;
historyHit.addElement(_local2.hit);
model.bumpper = _local2;
gotoHurt(_local2);
};
};
};
}
public function keyPress(_arg1:Number):void{
var _local2:ButtonElement;
if (keysDown[_arg1] == undefined){
keysDown[_arg1] = true;
_local2 = new ButtonElement(_arg1, Environment.data.time);
buttonList.push(_local2);
if (_arg1 == KeyConfig.guard){
if (Environment.data.mpHero <= 2){
model.isPressGuard = false;
if (model.currentState == model.getState("onAirState")){
} else {
model.setState(model.getState("standState"));
model.actionName = Enum.stand;
model.notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
};
} else {
model.doCommand(Enum.guard);
model.isPressGuard = true;
};
};
if (_arg1 == KeyConfig.left){
model.isPressLeft = true;
} else {
if (_arg1 == KeyConfig.right){
model.isPressRight = true;
} else {
if (_arg1 == KeyConfig.down){
model.isPressDown = true;
model.doCommand(Enum.sitdown);
} else {
if (_arg1 == KeyConfig.up){
model.doCommand("jump");
};
};
};
};
};
}
public function checkAction(_arg1:Array):String{
var _local3:*;
var _local4:BaseAction;
var _local2 = "";
if (_arg1.length > 0){
_local3 = 0;
while (_local3 < actionList.length) {
_local4 = actionList[_local3];
_local2 = _local4.parse(_arg1);
if (_local2 != "NAT"){
buttonList = new Array();
break;
};
_local3++;
};
};
return (_local2);
}
public function keyRelease(_arg1:Number):void{
if (_arg1 == KeyConfig.guard){
model.isPressGuard = false;
};
if ((_arg1 in keysDown)){
delete keysDown[_arg1];
};
if (_arg1 == KeyConfig.left){
model.isPressLeft = false;
} else {
if (_arg1 == KeyConfig.down){
model.isPressDown = false;
} else {
if (_arg1 == KeyConfig.right){
model.isPressRight = false;
};
};
};
}
public function executeKey():void{
var action:String;
if (buttonList.length > 0){
try {
action = checkAction(buttonList);
if (action == "undefine"){
} else {
doCommand(action);
};
} catch(e:Error) {
};
};
}
public function getItemgetScore():void{
Environment.data.score = (Environment.data.score + 5);
Environment.data.uiControl.updateScore();
}
public function gotoHurt(_arg1:HitValue):void{
var _local2:Number = (_arg1.hit.damage * (5 / Environment.data.VIT));
if (model.isPressGuard){
_local2 = Math.floor((_local2 / 2));
};
Environment.data.hpHero = (Environment.data.hpHero - _local2);
Environment.data.uiControl.updateHp();
var _local3:MovieClip = new m_gfx_hero_hit();
var _local4:Number = Random.next(2, 5);
_local3.scaleX = _local4;
_local3.scaleY = _local4;
_local3.x = model.location.x;
_local3.y = (model.location.y - (model.mcHeight / 2));
Environment.data.world.GFxLayer.addChild(_local3);
var _local5:gfxHitDamage = new gfx_hitNumber();
_local5.x = model.location.x;
_local5.y = (model.location.y - model.mcHeight);
_local5.setText(_local2);
Environment.data.world.GFxLayer.addChild(_local5);
model.currentState.hurtPhase();
}
}
}//package
Section 150
//HeroModel (HeroModel)
package {
import xinnix.event.*;
import flash.events.*;
import object.*;
import flash.geom.*;
import state.*;
public class HeroModel extends EventDispatcher {
public var delay:Object;
public var totalFrame:Number;
public var previousAction:String;
public var currentState:BaseState;
public var bumpper:HitValue;
public var isKill:Boolean;
public var attackState:BaseState;
public var data:Array;
public var _hp:Number;
public var stopState:BaseState;
public var location:Point;
public var hurtState:BaseState;
public var speed:Number;
public var walkState:BaseState;
public var gravityX:Number;// = 2
public var gravityY:Number;// = 2
public var time:Number;// = 0
public var scaleX:Number;
public var scaleY:Number;
public var sitState:BaseState;
public var specialAction:String;
public var previousState:BaseState;
public var standState:BaseState;
public var longX:Number;// = 0
public var mcHeight:Number;
public var actionName:String;
public var isPressRight:Boolean;
public var onAirState:BaseState;
public var isPressLeft:Boolean;
public var guardState:BaseState;
public var dieState:BaseState;
public var speedY:Number;// = 20
public var isPressGuard:Boolean;
public var stateContainer:Object;
public var speedX:Number;// = 30
public var isPressDown:Boolean;
public function HeroModel(){
isPressLeft = false;
isPressRight = false;
isPressDown = false;
isPressGuard = false;
isKill = false;
onAirState = new AirState(this);
standState = new StandState(this);
walkState = new WalkState(this);
attackState = new AttackState(this);
stopState = new StopSate(this);
hurtState = new HurtState(this);
dieState = new DieState(this);
sitState = new SitState(this);
guardState = new GuardState(this);
delay = new Object();
delay["punch"] = {time:5, lastTime:0};
stateContainer = new Object();
stateContainer["standState"] = standState;
stateContainer["walkState"] = walkState;
stateContainer["onAirState"] = onAirState;
stateContainer["attackState"] = attackState;
stateContainer["stopState"] = stopState;
stateContainer["hurtState"] = hurtState;
stateContainer["dieState"] = dieState;
stateContainer["sitState"] = sitState;
stateContainer["guardState"] = guardState;
currentState = standState;
location = new Point(150, Environment.ground);
scaleX = 1;
scaleY = 1;
speed = 3;
_hp = 5;
actionName = "";
specialAction = "";
}
public function get hp():Number{
return (_hp);
}
public function getCurrentState():BaseState{
return (currentState);
}
public function set hp(_arg1:Number):void{
this._hp = _arg1;
dispatchEvent(new GameEvent(GameEvent.CHANGE_STATUS, "hp"));
}
public function keyPress(_arg1:Number):void{
}
public function getAction():String{
return (actionName);
}
public function setLocation(_arg1:Number, _arg2:Number){
if ((((location.x <= 10)) && ((_arg1 < 10)))){
location.x = 10;
} else {
if ((((location.x >= (Environment.worldWidth + Environment.data.offsetScreen))) && ((_arg1 > (Environment.worldWidth + Environment.data.offsetScreen))))){
location.x = (Environment.worldWidth + Environment.data.offsetScreen);
} else {
location.x = _arg1;
};
};
location.y = _arg2;
dispatchEvent(new Event(Event.CHANGE));
}
public function setAction(_arg1:String){
actionName = _arg1;
notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "action"));
}
public function notifyEvent(_arg1:Event):void{
dispatchEvent(_arg1);
}
public function update():void{
if (scaleX < 0){
KeyConfig.lefting = KeyConfig.right;
KeyConfig.righting = KeyConfig.left;
} else {
KeyConfig.lefting = KeyConfig.left;
KeyConfig.righting = KeyConfig.right;
};
currentState.update();
time++;
if ((((Environment.data.hpHero <= 0)) && (!((currentState == dieState))))){
currentState.diePhase();
this.isKill = true;
};
}
public function doCommand(_arg1:String):void{
if ((((_arg1 == "dashRight")) || ((_arg1 == "dashLeft")))){
specialAction = _arg1;
currentState.walkPhase();
} else {
if (_arg1 == Enum.guard){
currentState.guardPhase();
} else {
if ((((((((((((_arg1 == Enum.attack_FistOfStrome)) || ((_arg1 == Enum.attack_counter)))) || ((_arg1 == Enum.attack_FistOfKing)))) || ((_arg1 == Enum.attack_RisngSun)))) || ((_arg1 == Enum.attack_MightOfHeavent1)))) || ((_arg1 == Enum.attack_TigerDance)))){
specialAction = _arg1;
currentState.attackPhase();
} else {
if (_arg1 == Enum.attack_normal){
currentState.attackPhase();
} else {
if (_arg1 == "jump"){
currentState.airPhase();
} else {
if (_arg1 == Enum.sitdown){
currentState.sitPhase();
} else {
if (_arg1 == "stop"){
currentState.stop();
} else {
if (_arg1 == "play"){
notifyEvent(new GameEvent(GameEvent.CHANGE_STATUS, "play"));
};
};
};
};
};
};
};
};
}
public function keyRelease(_arg1:Number):void{
}
public function setState(_arg1:BaseState):void{
previousState = currentState;
currentState = _arg1;
}
public function getState(_arg1:String):BaseState{
if (stateContainer[_arg1] != undefined){
return (stateContainer[_arg1]);
};
return (null);
}
}
}//package
Section 151
//HeroView (HeroView)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import object.bullet.*;
public class HeroView {
public var model:HeroModel;
public var mc:MovieClip;
public var control:HeroController;
public function HeroView(_arg1:HeroModel, _arg2:HeroController, _arg3:MovieClip){
_arg3.x = _arg1.location.x;
_arg3.y = _arg1.location.y;
_arg1.addEventListener(Event.CHANGE, update);
_arg1.addEventListener(GameEvent.CHANGE_STATUS, onChange);
_arg3.addEventListener(GameEvent.SUCCESS, onActionSuccess);
_arg3.addEventListener(GameEvent.HITOBJECT, onHitObject);
this.mc = _arg3;
this.model = _arg1;
this.control = _arg2;
this.model.mcHeight = _arg3.height;
}
public function onHitObject(_arg1:GameEvent):void{
control.hurt(_arg1.Sender);
}
public function gotoStop(_arg1:String){
var actionName = _arg1;
if (mc.currentLabel != actionName){
try {
mc.gotoAndStop(actionName);
} catch(e:Error) {
};
};
}
public function update(_arg1:Event){
mc.x = model.location.x;
mc.y = model.location.y;
mc.scaleX = model.scaleX;
mc.scaleY = model.scaleY;
}
public function onActionSuccess(_arg1:GameEvent){
if (Main.sceneCase == "gameCase"){
control.viewStateNotify((_arg1.Sender as String));
};
}
public function onChange(_arg1:GameEvent){
var _local2:Bullet_fistOfking;
var _local3:Bullet_fistOfking;
if (_arg1.Sender == "action"){
gotoPlay(model.getAction());
if (model.getAction() == Enum.attack_MightOfHeavent2){
_local2 = new m_gfx_hero_MightOfHeavent();
_local2.x = mc.x;
_local2.y = mc.y;
_local2.speed = 0;
_local2.duration = 11;
_local2.scaleX = 3;
_local2.scaleY = 3;
_local2.isPlayGFX = false;
Environment.data.world.heroLayer.addChild(_local2);
Environment.data.sceneManager.processList.push(_local2);
};
} else {
if (_arg1.Sender == "stop"){
stop();
} else {
if (_arg1.Sender == "play"){
play();
} else {
if (_arg1.Sender == "spAction"){
if (model.specialAction == Enum.attack_FistOfStrome){
gotoPlay(Enum.attack_FistOfStrome);
} else {
if (model.specialAction == Enum.attack_counter){
gotoPlay(Enum.attack_counter);
} else {
if (model.specialAction == Enum.attack_FistOfKing){
gotoPlay(Enum.attack_FistOfKing);
_local3 = new m_gfx_hero_FistOfKing();
_local3.x = (mc.x + 45);
_local3.y = (mc.y - 20);
_local3.duration = 40;
_local3.scaleX = 3;
_local3.scaleY = 3;
if (model.scaleX < 0){
_local3.speed = (_local3.speed * -1);
_local3.x = (mc.x - 45);
};
Environment.data.world.heroLayer.addChild(_local3);
Environment.data.sceneManager.processList.push(_local3);
} else {
if (model.specialAction == Enum.attack_RisngSun){
gotoPlay(Enum.attack_RisngSun);
} else {
if (model.specialAction == Enum.attack_MightOfHeavent1){
gotoPlay(Enum.attack_MightOfHeavent1);
} else {
if (model.specialAction == Enum.attack_TigerDance){
gotoPlay(Enum.attack_TigerDance);
};
};
};
};
};
};
};
};
};
};
}
public function stop():void{
mc.stop();
}
public function play():void{
mc.play();
}
public function gotoPlay(_arg1:String){
var actionName = _arg1;
try {
if (mc.currentLabel != actionName){
mc.gotoAndPlay(actionName);
};
} catch(e:Error) {
};
}
}
}//package
Section 152
//Hitchild (Hitchild)
package {
import object.*;
public dynamic class Hitchild extends Hit {
}
}//package
Section 153
//item1 (item1)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item1 extends ItemStaff {
public var __id130_:Hitchild;
public function item1(){
__setProp___id130__item1_Layer2_0();
}
function __setProp___id130__item1_Layer2_0(){
try {
__id130_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id130_.degree = 0;
__id130_.type = "damage";
__id130_.tempDamage = 0;
__id130_.valuePoint = 0;
try {
__id130_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 154
//item2 (item2)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item2 extends ItemStaff {
public var __id129_:Hitchild;
public function item2(){
__setProp___id129__item2_Layer2_0();
}
function __setProp___id129__item2_Layer2_0(){
try {
__id129_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id129_.degree = 0;
__id129_.type = "damage";
__id129_.tempDamage = 0;
__id129_.valuePoint = 0;
try {
__id129_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 155
//item3 (item3)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item3 extends ItemStaff {
public var __id128_:Hitchild;
public function item3(){
__setProp___id128__item3_Layer2_0();
}
function __setProp___id128__item3_Layer2_0(){
try {
__id128_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id128_.degree = 0;
__id128_.type = "damage";
__id128_.tempDamage = 0;
__id128_.valuePoint = 0;
try {
__id128_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 156
//item4 (item4)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item4 extends ItemStaff {
public var __id127_:Hitchild;
public function item4(){
__setProp___id127__item4_Layer2_0();
}
function __setProp___id127__item4_Layer2_0(){
try {
__id127_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id127_.degree = 0;
__id127_.type = "damage";
__id127_.tempDamage = 0;
__id127_.valuePoint = 0;
try {
__id127_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 157
//item5 (item5)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item5 extends ItemStaff {
public var __id126_:Hitchild;
public function item5(){
__setProp___id126__item5_Layer2_0();
}
function __setProp___id126__item5_Layer2_0(){
try {
__id126_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id126_.degree = 0;
__id126_.type = "damage";
__id126_.tempDamage = 0;
__id126_.valuePoint = 0;
try {
__id126_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 158
//item6 (item6)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item6 extends ItemStaff {
public var __id125_:Hitchild;
public function item6(){
__setProp___id125__item6_Layer2_0();
}
function __setProp___id125__item6_Layer2_0(){
try {
__id125_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id125_.degree = 0;
__id125_.type = "damage";
__id125_.tempDamage = 0;
__id125_.valuePoint = 0;
try {
__id125_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 159
//item7 (item7)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class item7 extends ItemStaff {
public var __id124_:Hitchild;
public function item7(){
__setProp___id124__item7_hit_0();
}
function __setProp___id124__item7_hit_0(){
try {
__id124_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id124_.degree = 0;
__id124_.type = "damage";
__id124_.tempDamage = 0;
__id124_.valuePoint = 0;
try {
__id124_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 160
//KeyConfig (KeyConfig)
package {
import xinnix.utils.*;
public class KeyConfig {
public static var down:Number = KeyboardCode.s;
public static var guard:Number = KeyboardCode.l;
public static var righting:Number = right;
public static var left:Number = KeyboardCode.a;
public static var punch:Number = KeyboardCode.j;
public static var lefting:Number = left;
public static var charge:Number = KeyboardCode.SpaceBar;
public static var up:Number = KeyboardCode.w;
public static var right:Number = KeyboardCode.d;
}
}//package
Section 161
//m_boss2_bullet (m_boss2_bullet)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_boss2_bullet extends BulletCard {
public var __id28_:Hitchild;
public var __id29_:Hitchild;
public function m_boss2_bullet(){
__setProp___id28__m_boss2_bullet_Hit_0();
__setProp___id29__m_boss2_bullet_AoE_0();
}
function __setProp___id29__m_boss2_bullet_AoE_0(){
try {
__id29_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id29_.degree = 0;
__id29_.type = "AoE";
__id29_.tempDamage = 0;
__id29_.valuePoint = 0;
try {
__id29_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id28__m_boss2_bullet_Hit_0(){
try {
__id28_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id28_.degree = 0;
__id28_.type = "damage";
__id28_.tempDamage = 15;
__id28_.valuePoint = 0;
try {
__id28_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 162
//m_boss4_bullet_kiss (m_boss4_bullet_kiss)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_boss4_bullet_kiss extends Buller_Kiss {
public var __id26_:Hitchild;
public var __id27_:Hitchild;
public function m_boss4_bullet_kiss(){
__setProp___id26__m_boss4_bullet_kiss_AoE_0();
__setProp___id27__m_boss4_bullet_kiss_Hit_0();
}
function __setProp___id26__m_boss4_bullet_kiss_AoE_0(){
try {
__id26_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id26_.degree = 0;
__id26_.type = "AoE";
__id26_.tempDamage = 0;
__id26_.valuePoint = 0;
try {
__id26_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id27__m_boss4_bullet_kiss_Hit_0(){
try {
__id27_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id27_.degree = 0;
__id27_.type = "damage";
__id27_.tempDamage = 40;
__id27_.valuePoint = 0;
try {
__id27_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 163
//m_bullet_guard (m_bullet_guard)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_bullet_guard extends Bullet_Gaurd {
public var __id25_:Hitchild;
public function m_bullet_guard(){
__setProp___id25__m_bullet_guard_Layer1_0();
}
function __setProp___id25__m_bullet_guard_Layer1_0(){
try {
__id25_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id25_.degree = 0;
__id25_.type = "damage";
__id25_.tempDamage = 10;
__id25_.valuePoint = 0;
try {
__id25_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 164
//m_bullet_maid (m_bullet_maid)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_bullet_maid extends Bullet_maid {
public var __id24_:Hitchild;
public function m_bullet_maid(){
__setProp___id24__m_bullet_maid_Layer2_0();
}
function __setProp___id24__m_bullet_maid_Layer2_0(){
try {
__id24_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id24_.degree = 0;
__id24_.type = "damage";
__id24_.tempDamage = 10;
__id24_.valuePoint = 0;
try {
__id24_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 165
//m_enemy_cactus_bullet (m_enemy_cactus_bullet)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_enemy_cactus_bullet extends Bullet_maid {
public function m_enemy_cactus_bullet(){
__setProp_hitObj_m_enemy_cactus_bullet_hit_0();
}
function __setProp_hitObj_m_enemy_cactus_bullet_hit_0(){
try {
hitObj["componentInspectorSetting"] = true;
} catch(e:Error) {
};
hitObj.degree = 0;
hitObj.type = "damage";
hitObj.tempDamage = 2;
hitObj.valuePoint = 0;
try {
hitObj["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 166
//m_enemy_doll_bullet (m_enemy_doll_bullet)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_enemy_doll_bullet extends Bullet_doll {
public var __id23_:Hitchild;
public var __id22_:Hitchild;
public function m_enemy_doll_bullet(){
__setProp___id22__m_enemy_doll_bullet_Hit_0();
__setProp___id23__m_enemy_doll_bullet_AoE_0();
}
function __setProp___id23__m_enemy_doll_bullet_AoE_0(){
try {
__id23_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id23_.degree = 0;
__id23_.type = "AoE";
__id23_.tempDamage = 0;
__id23_.valuePoint = 0;
try {
__id23_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id22__m_enemy_doll_bullet_Hit_0(){
try {
__id22_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id22_.degree = 0;
__id22_.type = "damage";
__id22_.tempDamage = 10;
__id22_.valuePoint = 0;
try {
__id22_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 167
//m_enemy_plane_bomb (m_enemy_plane_bomb)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_enemy_plane_bomb extends itemPlan {
public var __id21_:Hitchild;
public function m_enemy_plane_bomb(){
__setProp___id21__m_enemy_plane_bomb_Layer1_0();
__setProp_hitObj_m_enemy_plane_bomb_Layer1_0();
}
function __setProp_hitObj_m_enemy_plane_bomb_Layer1_0(){
try {
hitObj["componentInspectorSetting"] = true;
} catch(e:Error) {
};
hitObj.degree = 0;
hitObj.type = "damage";
hitObj.tempDamage = 10;
hitObj.valuePoint = 0;
try {
hitObj["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id21__m_enemy_plane_bomb_Layer1_0(){
try {
__id21_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id21_.degree = 0;
__id21_.type = "AoE";
__id21_.tempDamage = 0;
__id21_.valuePoint = 0;
try {
__id21_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 168
//m_enemy_robot_missile (m_enemy_robot_missile)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_enemy_robot_missile extends Bullet_robot {
public var __id19_:Hitchild;
public var __id20_:Hitchild;
public function m_enemy_robot_missile(){
__setProp___id19__m_enemy_robot_missile_Layer3_0();
__setProp___id20__m_enemy_robot_missile_Layer3_0();
}
function __setProp___id19__m_enemy_robot_missile_Layer3_0(){
try {
__id19_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id19_.degree = 0;
__id19_.type = "damage";
__id19_.tempDamage = 10;
__id19_.valuePoint = 0;
try {
__id19_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id20__m_enemy_robot_missile_Layer3_0(){
try {
__id20_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id20_.degree = 0;
__id20_.type = "AoE";
__id20_.tempDamage = 0;
__id20_.valuePoint = 0;
try {
__id20_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 169
//m_gfx_bomb_explode (m_gfx_bomb_explode)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_gfx_bomb_explode extends MovieClip {
public var __id72_:Hitchild;
public var __setPropDict:Dictionary;
public function m_gfx_bomb_explode(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(12, frame13, 0, frame1, 1, frame2, 2, frame3, 3, frame4, 4, frame5);
}
function frame1(){
if ((((__setPropDict[__id72_] == undefined)) || (!((((int(__setPropDict[__id72_]) >= 1)) && ((int(__setPropDict[__id72_]) <= 5))))))){
__setPropDict[__id72_] = currentFrame;
__setProp___id72__m_gfx_bomb_explode_Layer3_0();
};
}
function frame2(){
if ((((__setPropDict[__id72_] == undefined)) || (!((((int(__setPropDict[__id72_]) >= 1)) && ((int(__setPropDict[__id72_]) <= 5))))))){
__setPropDict[__id72_] = currentFrame;
__setProp___id72__m_gfx_bomb_explode_Layer3_0();
};
}
function __setProp___id72__m_gfx_bomb_explode_Layer3_0(){
try {
__id72_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id72_.degree = 0;
__id72_.type = "damage";
__id72_.tempDamage = 10;
__id72_.valuePoint = 0;
try {
__id72_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame4(){
if ((((__setPropDict[__id72_] == undefined)) || (!((((int(__setPropDict[__id72_]) >= 1)) && ((int(__setPropDict[__id72_]) <= 5))))))){
__setPropDict[__id72_] = currentFrame;
__setProp___id72__m_gfx_bomb_explode_Layer3_0();
};
}
function frame5(){
if ((((__setPropDict[__id72_] == undefined)) || (!((((int(__setPropDict[__id72_]) >= 1)) && ((int(__setPropDict[__id72_]) <= 5))))))){
__setPropDict[__id72_] = currentFrame;
__setProp___id72__m_gfx_bomb_explode_Layer3_0();
};
}
function frame3(){
if ((((__setPropDict[__id72_] == undefined)) || (!((((int(__setPropDict[__id72_]) >= 1)) && ((int(__setPropDict[__id72_]) <= 5))))))){
__setPropDict[__id72_] = currentFrame;
__setProp___id72__m_gfx_bomb_explode_Layer3_0();
};
}
function frame13(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 170
//m_gfx_enemy_explode1 (m_gfx_enemy_explode1)
package {
import flash.display.*;
public dynamic class m_gfx_enemy_explode1 extends MovieClip {
public function m_gfx_enemy_explode1(){
addFrameScript(12, frame13);
}
function frame13(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 171
//m_gfx_enemy_hit (m_gfx_enemy_hit)
package {
import flash.display.*;
public dynamic class m_gfx_enemy_hit extends MovieClip {
public function m_gfx_enemy_hit(){
addFrameScript(5, frame6);
}
function frame6(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 172
//m_gfx_get_item (m_gfx_get_item)
package {
import flash.display.*;
public dynamic class m_gfx_get_item extends MovieClip {
public function m_gfx_get_item(){
addFrameScript(6, frame7);
}
function frame7(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 173
//m_gfx_goldbar_hit (m_gfx_goldbar_hit)
package {
import flash.display.*;
public dynamic class m_gfx_goldbar_hit extends MovieClip {
public function m_gfx_goldbar_hit(){
addFrameScript(10, frame11);
}
function frame11(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 174
//m_gfx_hero_airJUMP (m_gfx_hero_airJUMP)
package {
import flash.display.*;
public dynamic class m_gfx_hero_airJUMP extends MovieClip {
public function m_gfx_hero_airJUMP(){
addFrameScript(5, frame6);
}
function frame6(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 175
//m_gfx_hero_FistOfKing (m_gfx_hero_FistOfKing)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_gfx_hero_FistOfKing extends Bullet_fistOfking {
public function m_gfx_hero_FistOfKing(){
__setProp_FistOfKing_m_gfx_hero_FistOfKing_hit_0();
}
function __setProp_FistOfKing_m_gfx_hero_FistOfKing_hit_0(){
try {
FistOfKing["componentInspectorSetting"] = true;
} catch(e:Error) {
};
FistOfKing.degree = 0;
FistOfKing.type = "damage";
FistOfKing.tempDamage = 1;
FistOfKing.valuePoint = 0;
try {
FistOfKing["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 176
//m_gfx_hero_hit (m_gfx_hero_hit)
package {
import flash.display.*;
public dynamic class m_gfx_hero_hit extends MovieClip {
public function m_gfx_hero_hit(){
addFrameScript(5, frame6);
}
function frame6(){
stop();
if (this.parent != null){
this.parent.removeChild(this);
};
}
}
}//package
Section 177
//m_gfx_hero_MightOfHeavent (m_gfx_hero_MightOfHeavent)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.bullet.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_gfx_hero_MightOfHeavent extends Bullet_fistOfking {
public var __id71_:Hitchild;
public var __setPropDict:Dictionary;
public function m_gfx_hero_MightOfHeavent(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7);
}
function frame7(){
if ((((__setPropDict[__id71_] == undefined)) || (!((((int(__setPropDict[__id71_]) >= 3)) && ((int(__setPropDict[__id71_]) <= 7))))))){
__setPropDict[__id71_] = currentFrame;
__setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2();
};
}
function frame3(){
if ((((__setPropDict[__id71_] == undefined)) || (!((((int(__setPropDict[__id71_]) >= 3)) && ((int(__setPropDict[__id71_]) <= 7))))))){
__setPropDict[__id71_] = currentFrame;
__setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2();
};
}
function frame4(){
if ((((__setPropDict[__id71_] == undefined)) || (!((((int(__setPropDict[__id71_]) >= 3)) && ((int(__setPropDict[__id71_]) <= 7))))))){
__setPropDict[__id71_] = currentFrame;
__setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2();
};
}
function frame5(){
if ((((__setPropDict[__id71_] == undefined)) || (!((((int(__setPropDict[__id71_]) >= 3)) && ((int(__setPropDict[__id71_]) <= 7))))))){
__setPropDict[__id71_] = currentFrame;
__setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2();
};
}
function frame6(){
if ((((__setPropDict[__id71_] == undefined)) || (!((((int(__setPropDict[__id71_]) >= 3)) && ((int(__setPropDict[__id71_]) <= 7))))))){
__setPropDict[__id71_] = currentFrame;
__setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2();
};
}
function __setProp___id71__m_gfx_hero_MightOfHeavent_Layer2_2(){
try {
__id71_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id71_.degree = 45;
__id71_.type = "damage";
__id71_.tempDamage = 20;
__id71_.valuePoint = 0;
try {
__id71_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 178
//m_obj_boss5_goldBAR (m_obj_boss5_goldBAR)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_obj_boss5_goldBAR extends itemGoldBar {
public function m_obj_boss5_goldBAR(){
addFrameScript(0, frame1);
__setProp_hitObj_m_obj_boss5_goldBAR_Layer3_0();
}
function __setProp_hitObj_m_obj_boss5_goldBAR_Layer3_0(){
try {
hitObj["componentInspectorSetting"] = true;
} catch(e:Error) {
};
hitObj.degree = 0;
hitObj.type = "damage";
hitObj.tempDamage = 10;
hitObj.valuePoint = 0;
try {
hitObj["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame1(){
stop();
}
}
}//package
Section 179
//m_object_bear_A (m_object_bear_A)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_bear_A extends BaseObject {
public var __id100_:Hitchild;
public var timeAlpha:Number;
public var __id101_:Hitchild;
public var __setPropDict:Dictionary;
public var __id99_:Hitchild;
public function m_object_bear_A(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 28, frame29, 40, frame41, 91, frame92, 111, frame112, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91);
}
function frame112(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame30(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 30)) && ((int(__setPropDict[__id100_]) <= 32))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_29();
};
}
function frame31(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 30)) && ((int(__setPropDict[__id100_]) <= 32))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_29();
};
}
function frame32(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 30)) && ((int(__setPropDict[__id100_]) <= 32))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_29();
};
}
function frame33(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame34(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame35(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame36(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame37(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame39(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame38(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function frame40(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
}
function __setProp___id100__m_object_bear_A_hit_29(){
try {
__id100_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id100_.degree = 0;
__id100_.type = "damage";
__id100_.tempDamage = 10;
__id100_.valuePoint = 0;
try {
__id100_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame86(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame87(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame88(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame89(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame83(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame84(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame41(){
if ((((__setPropDict[__id100_] == undefined)) || (!((((int(__setPropDict[__id100_]) >= 33)) && ((int(__setPropDict[__id100_]) <= 41))))))){
__setPropDict[__id100_] = currentFrame;
__setProp___id100__m_object_bear_A_hit_32();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame85(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function __setProp___id100__m_object_bear_A_hit_32(){
try {
__id100_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id100_.degree = 0;
__id100_.type = "damage";
__id100_.damage = 10;
__id100_.valuePoint = 0;
try {
__id100_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame90(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame91(){
if ((((__setPropDict[__id101_] == undefined)) || (!((((int(__setPropDict[__id101_]) >= 83)) && ((int(__setPropDict[__id101_]) <= 91))))))){
__setPropDict[__id101_] = currentFrame;
__setProp___id101__m_object_bear_A_code_82();
};
}
function frame92(){
stop();
}
function frame10(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function __setProp___id101__m_object_bear_A_code_82(){
try {
__id101_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id101_.degree = 0;
__id101_.type = "AoE";
__id101_.tempDamage = 10;
__id101_.valuePoint = 0;
try {
__id101_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame19(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame8(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function frame29(){
gotoAndPlay("walk");
}
function frame24(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
function __setProp___id99__m_object_bear_A_AoE_0(){
try {
__id99_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id99_.degree = 0;
__id99_.type = "AoE";
__id99_.tempDamage = 10;
__id99_.valuePoint = 0;
try {
__id99_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame20(){
if ((((__setPropDict[__id99_] == undefined)) || (!((((int(__setPropDict[__id99_]) >= 1)) && ((int(__setPropDict[__id99_]) <= 24))))))){
__setPropDict[__id99_] = currentFrame;
__setProp___id99__m_object_bear_A_AoE_0();
};
}
}
}//package
Section 180
//m_object_bear_B (m_object_bear_B)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_bear_B extends BaseObject {
public var __id96_:Hitchild;
public var timeAlpha:Number;
public var __id97_:Hitchild;
public var __id98_:Hitchild;
public var __setPropDict:Dictionary;
public function m_object_bear_B(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 28, frame29, 40, frame41, 91, frame92, 111, frame112, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 82, frame83, 83, frame84, 84, frame85, 85, frame86);
}
function __setProp___id97__m_object_bear_B_hit_29(){
try {
__id97_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id97_.degree = 0;
__id97_.type = "damage";
__id97_.tempDamage = 10;
__id97_.valuePoint = 0;
try {
__id97_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame112(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame31(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 30)) && ((int(__setPropDict[__id97_]) <= 32))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_29();
};
}
function frame32(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 30)) && ((int(__setPropDict[__id97_]) <= 32))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_29();
};
}
function frame33(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame35(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame36(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame37(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame38(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame39(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame34(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame30(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 30)) && ((int(__setPropDict[__id97_]) <= 32))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_29();
};
}
function __setProp___id96__m_object_bear_B_AoE_0(){
try {
__id96_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id96_.degree = 0;
__id96_.type = "AoE";
__id96_.tempDamage = 10;
__id96_.valuePoint = 0;
try {
__id96_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id97__m_object_bear_B_hit_32(){
try {
__id97_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id97_.degree = 0;
__id97_.type = "damage";
__id97_.tempDamage = 80;
__id97_.valuePoint = 0;
try {
__id97_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame83(){
if ((((__setPropDict[__id98_] == undefined)) || (!((((int(__setPropDict[__id98_]) >= 83)) && ((int(__setPropDict[__id98_]) <= 86))))))){
__setPropDict[__id98_] = currentFrame;
__setProp___id98__m_object_bear_B_code_82();
};
}
function frame40(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
}
function frame41(){
if ((((__setPropDict[__id97_] == undefined)) || (!((((int(__setPropDict[__id97_]) >= 33)) && ((int(__setPropDict[__id97_]) <= 41))))))){
__setPropDict[__id97_] = currentFrame;
__setProp___id97__m_object_bear_B_hit_32();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame86(){
if ((((__setPropDict[__id98_] == undefined)) || (!((((int(__setPropDict[__id98_]) >= 83)) && ((int(__setPropDict[__id98_]) <= 86))))))){
__setPropDict[__id98_] = currentFrame;
__setProp___id98__m_object_bear_B_code_82();
};
}
function frame84(){
if ((((__setPropDict[__id98_] == undefined)) || (!((((int(__setPropDict[__id98_]) >= 83)) && ((int(__setPropDict[__id98_]) <= 86))))))){
__setPropDict[__id98_] = currentFrame;
__setProp___id98__m_object_bear_B_code_82();
};
}
function frame85(){
if ((((__setPropDict[__id98_] == undefined)) || (!((((int(__setPropDict[__id98_]) >= 83)) && ((int(__setPropDict[__id98_]) <= 86))))))){
__setPropDict[__id98_] = currentFrame;
__setProp___id98__m_object_bear_B_code_82();
};
}
function __setProp___id98__m_object_bear_B_code_82(){
try {
__id98_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id98_.degree = 0;
__id98_.type = "AoE";
__id98_.tempDamage = 10;
__id98_.valuePoint = 0;
try {
__id98_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame92(){
stop();
}
function frame11(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame20(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
function frame29(){
gotoAndPlay("walk");
}
function frame24(){
if ((((__setPropDict[__id96_] == undefined)) || (!((((int(__setPropDict[__id96_]) >= 1)) && ((int(__setPropDict[__id96_]) <= 24))))))){
__setPropDict[__id96_] = currentFrame;
__setProp___id96__m_object_bear_B_AoE_0();
};
}
}
}//package
Section 181
//m_object_cactus (m_object_cactus)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_cactus extends BaseObject {
public var __id86_:Hitchild;
public var timeAlpha:Number;
public var __setPropDict:Dictionary;
public var __id87_:Hitchild;
public function m_object_cactus(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 21, frame22, 29, frame30, 80, frame81, 107, frame108, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 22, frame23, 23, frame24, 76, frame77, 77, frame78, 78, frame79, 79, frame80);
}
function frame11(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame79(){
if ((((__setPropDict[__id87_] == undefined)) || (!((((int(__setPropDict[__id87_]) >= 77)) && ((int(__setPropDict[__id87_]) <= 81))))))){
__setPropDict[__id87_] = currentFrame;
__setProp___id87__m_object_cactus_code_76();
};
}
function __setProp___id86__m_object_cactus_AoE_0(){
try {
__id86_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id86_.degree = 0;
__id86_.type = "AoE";
__id86_.tempDamage = 10;
__id86_.valuePoint = 0;
try {
__id86_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame30(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame17(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame77(){
if ((((__setPropDict[__id87_] == undefined)) || (!((((int(__setPropDict[__id87_]) >= 77)) && ((int(__setPropDict[__id87_]) <= 81))))))){
__setPropDict[__id87_] = currentFrame;
__setProp___id87__m_object_cactus_code_76();
};
}
function frame78(){
if ((((__setPropDict[__id87_] == undefined)) || (!((((int(__setPropDict[__id87_]) >= 77)) && ((int(__setPropDict[__id87_]) <= 81))))))){
__setPropDict[__id87_] = currentFrame;
__setProp___id87__m_object_cactus_code_76();
};
}
function frame15(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id87_] == undefined)) || (!((((int(__setPropDict[__id87_]) >= 77)) && ((int(__setPropDict[__id87_]) <= 81))))))){
__setPropDict[__id87_] = currentFrame;
__setProp___id87__m_object_cactus_code_76();
};
stop();
}
function frame4(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
gotoAndPlay("walk");
}
function frame23(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame20(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame108(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame2(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function __setProp___id87__m_object_cactus_code_76(){
try {
__id87_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id87_.degree = 0;
__id87_.type = "AoE";
__id87_.tempDamage = 10;
__id87_.valuePoint = 0;
try {
__id87_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame21(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
function frame80(){
if ((((__setPropDict[__id87_] == undefined)) || (!((((int(__setPropDict[__id87_]) >= 77)) && ((int(__setPropDict[__id87_]) <= 81))))))){
__setPropDict[__id87_] = currentFrame;
__setProp___id87__m_object_cactus_code_76();
};
}
function frame24(){
if ((((__setPropDict[__id86_] == undefined)) || (!((((int(__setPropDict[__id86_]) >= 1)) && ((int(__setPropDict[__id86_]) <= 24))))))){
__setPropDict[__id86_] = currentFrame;
__setProp___id86__m_object_cactus_AoE_0();
};
}
}
}//package
Section 182
//m_object_doll (m_object_doll)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_doll extends BaseObject {
public var __id94_:Hitchild;
public var timeAlpha:Number;
public var __setPropDict:Dictionary;
public var __id95_:Hitchild;
public function m_object_doll(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 35, frame36, 86, frame87, 119, frame120, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82);
}
function __setProp___id95__m_object_doll_code_77(){
try {
__id95_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id95_.degree = 0;
__id95_.type = "AoE";
__id95_.tempDamage = 10;
__id95_.valuePoint = 0;
try {
__id95_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame10(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame79(){
if ((((__setPropDict[__id95_] == undefined)) || (!((((int(__setPropDict[__id95_]) >= 78)) && ((int(__setPropDict[__id95_]) <= 82))))))){
__setPropDict[__id95_] = currentFrame;
__setProp___id95__m_object_doll_code_77();
};
}
function frame36(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame15(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame78(){
if ((((__setPropDict[__id95_] == undefined)) || (!((((int(__setPropDict[__id95_]) >= 78)) && ((int(__setPropDict[__id95_]) <= 82))))))){
__setPropDict[__id95_] = currentFrame;
__setProp___id95__m_object_doll_code_77();
};
}
function frame14(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame87(){
stop();
}
function frame22(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame120(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function __setProp___id94__m_object_doll_AoE_0(){
try {
__id94_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id94_.degree = 0;
__id94_.type = "AoE";
__id94_.tempDamage = 10;
__id94_.valuePoint = 0;
try {
__id94_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame9(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame80(){
if ((((__setPropDict[__id95_] == undefined)) || (!((((int(__setPropDict[__id95_]) >= 78)) && ((int(__setPropDict[__id95_]) <= 82))))))){
__setPropDict[__id95_] = currentFrame;
__setProp___id95__m_object_doll_code_77();
};
}
function frame81(){
if ((((__setPropDict[__id95_] == undefined)) || (!((((int(__setPropDict[__id95_]) >= 78)) && ((int(__setPropDict[__id95_]) <= 82))))))){
__setPropDict[__id95_] = currentFrame;
__setProp___id95__m_object_doll_code_77();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame20(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id94_] == undefined)) || (!((((int(__setPropDict[__id94_]) >= 1)) && ((int(__setPropDict[__id94_]) <= 24))))))){
__setPropDict[__id94_] = currentFrame;
__setProp___id94__m_object_doll_AoE_0();
};
gotoAndPlay("walk");
}
function frame82(){
if ((((__setPropDict[__id95_] == undefined)) || (!((((int(__setPropDict[__id95_]) >= 78)) && ((int(__setPropDict[__id95_]) <= 82))))))){
__setPropDict[__id95_] = currentFrame;
__setProp___id95__m_object_doll_code_77();
};
}
}
}//package
Section 183
//m_object_fire_ant (m_object_fire_ant)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_fire_ant extends BaseObject {
public var __id84_:Hitchild;
public var timeAlpha:Number;
public var __id85_:Hitchild;
public var __setPropDict:Dictionary;
public var __id83_:Hitchild;
public function m_object_fire_ant(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 40, frame41, 91, frame92, 113, frame114, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91);
}
function frame114(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame30(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function __setProp___id85__m_object_fire_ant_code_86(){
try {
__id85_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id85_.degree = 0;
__id85_.type = "AoE";
__id85_.tempDamage = 10;
__id85_.valuePoint = 0;
try {
__id85_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame32(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame33(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame34(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame35(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame31(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame39(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame36(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame37(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame38(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function __setProp___id83__m_object_fire_ant_AoE_0(){
try {
__id83_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id83_.degree = 0;
__id83_.type = "AoE";
__id83_.tempDamage = 10;
__id83_.valuePoint = 0;
try {
__id83_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame40(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame41(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame87(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
}
function frame88(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
}
function frame89(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
}
function frame90(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
}
function frame91(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
}
function frame92(){
if ((((__setPropDict[__id85_] == undefined)) || (!((((int(__setPropDict[__id85_]) >= 87)) && ((int(__setPropDict[__id85_]) <= 92))))))){
__setPropDict[__id85_] = currentFrame;
__setProp___id85__m_object_fire_ant_code_86();
};
stop();
}
function frame10(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame13(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
gotoAndPlay("stand");
}
function __setProp___id84__m_object_fire_ant_hit_28(){
try {
__id84_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id84_.degree = 0;
__id84_.type = "damage";
__id84_.tempDamage = 10;
__id84_.valuePoint = 0;
try {
__id84_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame16(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame6(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame28(){
gotoAndPlay("walk");
}
function frame29(){
if ((((__setPropDict[__id84_] == undefined)) || (!((((int(__setPropDict[__id84_]) >= 29)) && ((int(__setPropDict[__id84_]) <= 41))))))){
__setPropDict[__id84_] = currentFrame;
__setProp___id84__m_object_fire_ant_hit_28();
};
}
function frame24(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id83_] == undefined)) || (!((((int(__setPropDict[__id83_]) >= 1)) && ((int(__setPropDict[__id83_]) <= 24))))))){
__setPropDict[__id83_] = currentFrame;
__setProp___id83__m_object_fire_ant_AoE_0();
};
}
}
}//package
Section 184
//m_object_fire_big (m_object_fire_big)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_fire_big extends BaseObject {
public var __id80_:Hitchild;
public var timeAlpha:Number;
public var __id81_:Hitchild;
public var __id82_:Hitchild;
public var __setPropDict:Dictionary;
public function m_object_fire_big(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 40, frame41, 91, frame92, 113, frame114, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 85, frame86, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91);
}
function __setProp___id82__m_object_fire_big_code_85(){
try {
__id82_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id82_.degree = 0;
__id82_.type = "AoE";
__id82_.tempDamage = 10;
__id82_.valuePoint = 0;
try {
__id82_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame114(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame30(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame31(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame33(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame34(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame35(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame36(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame37(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame38(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame32(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame39(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function __setProp___id80__m_object_fire_big_AoE_0(){
try {
__id80_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id80_.degree = 0;
__id80_.type = "AoE";
__id80_.tempDamage = 10;
__id80_.valuePoint = 0;
try {
__id80_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame40(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame41(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame87(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame88(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame89(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame86(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame90(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame91(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
}
function frame92(){
if ((((__setPropDict[__id82_] == undefined)) || (!((((int(__setPropDict[__id82_]) >= 86)) && ((int(__setPropDict[__id82_]) <= 92))))))){
__setPropDict[__id82_] = currentFrame;
__setProp___id82__m_object_fire_big_code_85();
};
stop();
}
function frame10(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function __setProp___id81__m_object_fire_big_hit_28(){
try {
__id81_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id81_.degree = 0;
__id81_.type = "damage";
__id81_.tempDamage = 10;
__id81_.valuePoint = 0;
try {
__id81_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame1(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame20(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame28(){
gotoAndPlay("walk");
}
function frame29(){
if ((((__setPropDict[__id81_] == undefined)) || (!((((int(__setPropDict[__id81_]) >= 29)) && ((int(__setPropDict[__id81_]) <= 41))))))){
__setPropDict[__id81_] = currentFrame;
__setProp___id81__m_object_fire_big_hit_28();
};
}
function frame24(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id80_] == undefined)) || (!((((int(__setPropDict[__id80_]) >= 1)) && ((int(__setPropDict[__id80_]) <= 24))))))){
__setPropDict[__id80_] = currentFrame;
__setProp___id80__m_object_fire_big_AoE_0();
};
}
}
}//package
Section 185
//m_object_guard_A (m_object_guard_A)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_guard_A extends BaseObject {
public var __id122_:Hitchild;
public var __setPropDict:Dictionary;
public var __id121_:Hitchild;
public function m_object_guard_A(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 37, frame38, 88, frame89, 114, frame115, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88);
}
function frame84(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame85(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame87(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame115(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame10(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame38(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame17(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function __setProp___id121__m_object_guard_A_AoE_0(){
try {
__id121_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id121_.degree = 0;
__id121_.type = "AoE";
__id121_.tempDamage = 10;
__id121_.valuePoint = 0;
try {
__id121_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame16(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame89(){
stop();
}
function frame24(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame28(){
gotoAndPlay("walk");
}
function __setProp___id122__m_object_guard_A_AoE_79(){
try {
__id122_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id122_.degree = 0;
__id122_.type = "AoE";
__id122_.tempDamage = 10;
__id122_.valuePoint = 0;
try {
__id122_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame23(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame83(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame26(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame86(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame21(){
if ((((__setPropDict[__id121_] == undefined)) || (!((((int(__setPropDict[__id121_]) >= 1)) && ((int(__setPropDict[__id121_]) <= 27))))))){
__setPropDict[__id121_] = currentFrame;
__setProp___id121__m_object_guard_A_AoE_0();
};
}
function frame88(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame80(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame81(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
function frame82(){
if ((((__setPropDict[__id122_] == undefined)) || (!((((int(__setPropDict[__id122_]) >= 80)) && ((int(__setPropDict[__id122_]) <= 88))))))){
__setPropDict[__id122_] = currentFrame;
__setProp___id122__m_object_guard_A_AoE_79();
};
}
}
}//package
Section 186
//m_object_guard_B (m_object_guard_B)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_guard_B extends BaseObject {
public var __id120_:Hitchild;
public var __setPropDict:Dictionary;
public var __id119_:Hitchild;
public function m_object_guard_B(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 21, frame22, 31, frame32, 82, frame83, 109, frame110, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 73, frame74, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82);
}
function frame110(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function __setProp___id119__m_object_guard_B_AoE_0(){
try {
__id119_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id119_.degree = 0;
__id119_.type = "AoE";
__id119_.tempDamage = 10;
__id119_.valuePoint = 0;
try {
__id119_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame74(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame32(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame11(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
gotoAndPlay("stand");
}
function __setProp___id120__m_object_guard_B_AoE_73(){
try {
__id120_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id120_.degree = 0;
__id120_.type = "AoE";
__id120_.tempDamage = 10;
__id120_.valuePoint = 0;
try {
__id120_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame14(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame77(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame78(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame13(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame75(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame1(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame83(){
stop();
}
function frame6(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
gotoAndPlay("walk");
}
function frame76(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame5(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame79(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame20(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id119_] == undefined)) || (!((((int(__setPropDict[__id119_]) >= 1)) && ((int(__setPropDict[__id119_]) <= 22))))))){
__setPropDict[__id119_] = currentFrame;
__setProp___id119__m_object_guard_B_AoE_0();
};
}
function frame80(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame81(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
function frame82(){
if ((((__setPropDict[__id120_] == undefined)) || (!((((int(__setPropDict[__id120_]) >= 74)) && ((int(__setPropDict[__id120_]) <= 82))))))){
__setPropDict[__id120_] = currentFrame;
__setProp___id120__m_object_guard_B_AoE_73();
};
}
}
}//package
Section 187
//m_object_maid_A (m_object_maid_A)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_maid_A extends BaseObject {
public var __id118_:Hitchild;
public var __setPropDict:Dictionary;
public var __id117_:Hitchild;
public function m_object_maid_A(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 17, frame18, 29, frame30, 80, frame81, 109, frame110, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 77, frame78, 78, frame79, 79, frame80);
}
function frame110(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame30(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame28(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame10(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
gotoAndPlay("walk");
}
function frame19(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame79(){
if ((((__setPropDict[__id118_] == undefined)) || (!((((int(__setPropDict[__id118_]) >= 78)) && ((int(__setPropDict[__id118_]) <= 81))))))){
__setPropDict[__id118_] = currentFrame;
__setProp___id118__m_object_maid_A_AoE_77();
};
}
function frame78(){
if ((((__setPropDict[__id118_] == undefined)) || (!((((int(__setPropDict[__id118_]) >= 78)) && ((int(__setPropDict[__id118_]) <= 81))))))){
__setPropDict[__id118_] = currentFrame;
__setProp___id118__m_object_maid_A_AoE_77();
};
}
function frame1(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function __setProp___id117__m_object_maid_A_AoE_0(){
try {
__id117_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id117_.degree = 5;
__id117_.type = "AoE";
__id117_.tempDamage = 10;
__id117_.valuePoint = 0;
try {
__id117_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame4(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function __setProp___id118__m_object_maid_A_AoE_77(){
try {
__id118_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id118_.degree = 0;
__id118_.type = "AoE";
__id118_.tempDamage = 10;
__id118_.valuePoint = 0;
try {
__id118_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame9(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id118_] == undefined)) || (!((((int(__setPropDict[__id118_]) >= 78)) && ((int(__setPropDict[__id118_]) <= 81))))))){
__setPropDict[__id118_] = currentFrame;
__setProp___id118__m_object_maid_A_AoE_77();
};
stop();
}
function frame23(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame24(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame25(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function __setProp___id117__m_object_maid_A_AoE_18(){
try {
__id117_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id117_.degree = 5;
__id117_.type = "AoE";
try {
__id117_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame8(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame22(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame3(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 1)) && ((int(__setPropDict[__id117_]) <= 18))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame27(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame20(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame29(){
if ((((__setPropDict[__id117_] == undefined)) || (!((((int(__setPropDict[__id117_]) >= 19)) && ((int(__setPropDict[__id117_]) <= 29))))))){
__setPropDict[__id117_] = currentFrame;
__setProp___id117__m_object_maid_A_AoE_18();
};
}
function frame80(){
if ((((__setPropDict[__id118_] == undefined)) || (!((((int(__setPropDict[__id118_]) >= 78)) && ((int(__setPropDict[__id118_]) <= 81))))))){
__setPropDict[__id118_] = currentFrame;
__setProp___id118__m_object_maid_A_AoE_77();
};
}
}
}//package
Section 188
//m_object_maid_A4 (m_object_maid_A4)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_maid_A4 extends BaseObject {
public var __id116_:Hitchild;
public var __setPropDict:Dictionary;
public var __id115_:Hitchild;
public function m_object_maid_A4(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 17, frame18, 29, frame30, 80, frame81, 106, frame107, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80);
}
function frame30(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame10(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame18(){
gotoAndPlay("walk");
}
function frame78(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
}
function frame79(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
}
function frame15(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame77(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
}
function frame1(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
stop();
}
function frame4(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame107(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame2(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame76(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
}
function __setProp___id116__m_object_maid_A4_AoE_75(){
try {
__id116_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id116_.degree = 0;
__id116_.type = "AoE";
__id116_.tempDamage = 10;
__id116_.valuePoint = 0;
try {
__id116_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame8(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id115_] == undefined)) || (!((((int(__setPropDict[__id115_]) >= 1)) && ((int(__setPropDict[__id115_]) <= 17))))))){
__setPropDict[__id115_] = currentFrame;
__setProp___id115__m_object_maid_A4_AoE_0();
};
}
function frame80(){
if ((((__setPropDict[__id116_] == undefined)) || (!((((int(__setPropDict[__id116_]) >= 76)) && ((int(__setPropDict[__id116_]) <= 81))))))){
__setPropDict[__id116_] = currentFrame;
__setProp___id116__m_object_maid_A4_AoE_75();
};
}
function __setProp___id115__m_object_maid_A4_AoE_0(){
try {
__id115_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id115_.degree = 0;
__id115_.type = "AoE";
__id115_.tempDamage = 10;
__id115_.valuePoint = 0;
try {
__id115_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 189
//m_object_office_boy_A (m_object_office_boy_A)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_office_boy_A extends BaseObject {
public var __id112_:Hitchild;
public var __id113_:Hitchild;
public var __id114_:Hitchild;
public var __setPropDict:Dictionary;
public function m_object_office_boy_A(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 32, frame33, 108, frame109, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83);
}
function frame30(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame31(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame32(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame33(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame79(){
if ((((__setPropDict[__id114_] == undefined)) || (!((((int(__setPropDict[__id114_]) >= 79)) && ((int(__setPropDict[__id114_]) <= 83))))))){
__setPropDict[__id114_] = currentFrame;
__setProp___id114__m_object_office_boy_A_();
};
}
function __setProp___id112__m_object_office_boy_A_AoE_0(){
try {
__id112_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id112_.degree = 0;
__id112_.type = "AoE";
__id112_.tempDamage = 0;
__id112_.valuePoint = 0;
try {
__id112_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame81(){
if ((((__setPropDict[__id114_] == undefined)) || (!((((int(__setPropDict[__id114_]) >= 79)) && ((int(__setPropDict[__id114_]) <= 83))))))){
__setPropDict[__id114_] = currentFrame;
__setProp___id114__m_object_office_boy_A_();
};
}
function frame83(){
if ((((__setPropDict[__id114_] == undefined)) || (!((((int(__setPropDict[__id114_]) >= 79)) && ((int(__setPropDict[__id114_]) <= 83))))))){
__setPropDict[__id114_] = currentFrame;
__setProp___id114__m_object_office_boy_A_();
};
}
function frame80(){
if ((((__setPropDict[__id114_] == undefined)) || (!((((int(__setPropDict[__id114_]) >= 79)) && ((int(__setPropDict[__id114_]) <= 83))))))){
__setPropDict[__id114_] = currentFrame;
__setProp___id114__m_object_office_boy_A_();
};
}
function frame82(){
if ((((__setPropDict[__id114_] == undefined)) || (!((((int(__setPropDict[__id114_]) >= 79)) && ((int(__setPropDict[__id114_]) <= 83))))))){
__setPropDict[__id114_] = currentFrame;
__setProp___id114__m_object_office_boy_A_();
};
}
function frame10(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame13(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function __setProp___id113__m_object_office_boy_A_hit_24(){
try {
__id113_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id113_.degree = 0;
__id113_.type = "damage";
__id113_.tempDamage = 0;
__id113_.valuePoint = 0;
try {
__id113_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame17(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
gotoAndPlay("stand");
}
function frame16(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function __setProp___id114__m_object_office_boy_A_(){
try {
__id114_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id114_.degree = 0;
__id114_.type = "AoE";
__id114_.tempDamage = 10;
__id114_.valuePoint = 0;
try {
__id114_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame3(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame109(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame23(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame24(){
gotoAndPlay("walk");
}
function frame25(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame26(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame20(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame29(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame27(){
if ((((__setPropDict[__id113_] == undefined)) || (!((((int(__setPropDict[__id113_]) >= 25)) && ((int(__setPropDict[__id113_]) <= 32))))))){
__setPropDict[__id113_] = currentFrame;
__setProp___id113__m_object_office_boy_A_hit_24();
};
}
function frame21(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id112_] == undefined)) || (!((((int(__setPropDict[__id112_]) >= 1)) && ((int(__setPropDict[__id112_]) <= 23))))))){
__setPropDict[__id112_] = currentFrame;
__setProp___id112__m_object_office_boy_A_AoE_0();
};
}
}
}//package
Section 190
//m_object_office_boy_B (m_object_office_boy_B)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_office_boy_B extends BaseObject {
public var __id108_:Hitchild;
public var __id109_:Hitchild;
public var __id110_:Hitchild;
public var __setPropDict:Dictionary;
public var __id111_:Hitchild;
public function m_object_office_boy_B(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 32, frame33, 98, frame99, 108, frame109, 124, frame125, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91, 91, frame92, 92, frame93, 93, frame94, 94, frame95, 95, frame96, 96, frame97, 97, frame98, 99, frame100, 100, frame101, 101, frame102, 102, frame103, 103, frame104, 104, frame105, 105, frame106, 106, frame107, 107, frame108);
}
function frame104(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame29(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame108(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame98(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame30(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame31(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame32(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame33(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame78(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame79(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame75(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame76(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame105(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame106(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame77(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame80(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function __setProp___id111__m_object_office_boy_B_AoE_74(){
try {
__id111_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id111_.degree = 0;
__id111_.type = "AoE";
__id111_.tempDamage = 30;
__id111_.valuePoint = 0;
try {
__id111_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame125(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame83(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame84(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame85(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame86(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame87(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame81(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame82(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame88(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame89(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame90(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame91(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame92(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame93(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame94(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame95(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame97(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame10(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame99(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
stop();
}
function frame12(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function __setProp___id109__m_object_office_boy_B_hit_24(){
try {
__id109_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id109_.degree = 0;
__id109_.type = "damage";
__id109_.tempDamage = 30;
__id109_.valuePoint = 0;
try {
__id109_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame16(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function __setProp___id108__m_object_office_boy_B_AoE_0(){
try {
__id108_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id108_.degree = 0;
__id108_.type = "AoE";
__id108_.tempDamage = 0;
__id108_.valuePoint = 0;
try {
__id108_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame96(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 75)) && ((int(__setPropDict[__id111_]) <= 99))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_74();
};
}
function frame1(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame109(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
stop();
}
function __setProp___id110__m_object_office_boy_B_hit_24(){
try {
__id110_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id110_.degree = 0;
__id110_.type = "damage";
__id110_.tempDamage = 30;
__id110_.valuePoint = 0;
try {
__id110_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame24(){
gotoAndPlay("walk");
}
function __setProp___id111__m_object_office_boy_B_AoE_99(){
try {
__id111_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id111_.degree = 0;
__id111_.type = "AoE";
__id111_.tempDamage = 0;
__id111_.valuePoint = 0;
try {
__id111_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame26(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame20(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame22(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame103(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame25(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame6(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id110_] == undefined)) || (!((((int(__setPropDict[__id110_]) >= 25)) && ((int(__setPropDict[__id110_]) <= 33))))))){
__setPropDict[__id110_] = currentFrame;
__setProp___id110__m_object_office_boy_B_hit_24();
};
if ((((__setPropDict[__id109_] == undefined)) || (!((((int(__setPropDict[__id109_]) >= 25)) && ((int(__setPropDict[__id109_]) <= 33))))))){
__setPropDict[__id109_] = currentFrame;
__setProp___id109__m_object_office_boy_B_hit_24();
};
}
function frame107(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame21(){
if ((((__setPropDict[__id108_] == undefined)) || (!((((int(__setPropDict[__id108_]) >= 1)) && ((int(__setPropDict[__id108_]) <= 23))))))){
__setPropDict[__id108_] = currentFrame;
__setProp___id108__m_object_office_boy_B_AoE_0();
};
}
function frame100(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame101(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
function frame102(){
if ((((__setPropDict[__id111_] == undefined)) || (!((((int(__setPropDict[__id111_]) >= 100)) && ((int(__setPropDict[__id111_]) <= 109))))))){
__setPropDict[__id111_] = currentFrame;
__setProp___id111__m_object_office_boy_B_AoE_99();
};
}
}
}//package
Section 191
//m_object_office_girl_A (m_object_office_girl_A)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_office_girl_A extends BaseObject {
public var __id105_:Hitchild;
public var __id106_:Hitchild;
public var __setPropDict:Dictionary;
public var __id107_:Hitchild;
public function m_object_office_girl_A(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 32, frame33, 108, frame109, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84);
}
function frame29(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame30(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame31(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame32(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame33(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame79(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function frame80(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function frame81(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function frame82(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function frame83(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function frame84(){
if ((((__setPropDict[__id107_] == undefined)) || (!((((int(__setPropDict[__id107_]) >= 79)) && ((int(__setPropDict[__id107_]) <= 84))))))){
__setPropDict[__id107_] = currentFrame;
__setProp___id107__m_object_office_girl_A_AoE_78();
};
}
function __setProp___id107__m_object_office_girl_A_AoE_78(){
try {
__id107_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id107_.degree = 0;
__id107_.type = "AoE";
__id107_.tempDamage = 10;
__id107_.valuePoint = 0;
try {
__id107_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id105__m_object_office_girl_A_AoE_0(){
try {
__id105_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id105_.degree = 0;
__id105_.type = "AoE";
__id105_.tempDamage = 10;
__id105_.valuePoint = 0;
try {
__id105_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame10(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function __setProp___id106__m_object_office_girl_A_hit_24(){
try {
__id106_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id106_.degree = 0;
__id106_.type = "damage";
__id106_.tempDamage = 10;
__id106_.valuePoint = 0;
try {
__id106_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame1(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame109(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame23(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
gotoAndPlay("walk");
}
function frame25(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame26(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame27(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame28(){
if ((((__setPropDict[__id106_] == undefined)) || (!((((int(__setPropDict[__id106_]) >= 25)) && ((int(__setPropDict[__id106_]) <= 33))))))){
__setPropDict[__id106_] = currentFrame;
__setProp___id106__m_object_office_girl_A_hit_24();
};
}
function frame22(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id105_] == undefined)) || (!((((int(__setPropDict[__id105_]) >= 1)) && ((int(__setPropDict[__id105_]) <= 24))))))){
__setPropDict[__id105_] = currentFrame;
__setProp___id105__m_object_office_girl_A_AoE_0();
};
}
}
}//package
Section 192
//m_object_office_girl_B (m_object_office_girl_B)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_office_girl_B extends BaseObject {
public var __id104_:Hitchild;
public var __id102_:Hitchild;
public var __setPropDict:Dictionary;
public var __id103_:Hitchild;
public function m_object_office_girl_B(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 32, frame33, 93, frame94, 108, frame109, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84);
}
function frame28(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame31(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame32(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame33(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame79(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function frame30(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame78(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function __setProp___id103__m_object_office_girl_B_hit_24(){
try {
__id103_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id103_.degree = 0;
__id103_.type = "damage";
__id103_.tempDamage = 30;
__id103_.valuePoint = 0;
try {
__id103_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame80(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function frame81(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function frame82(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function frame83(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function frame84(){
if ((((__setPropDict[__id104_] == undefined)) || (!((((int(__setPropDict[__id104_]) >= 78)) && ((int(__setPropDict[__id104_]) <= 84))))))){
__setPropDict[__id104_] = currentFrame;
__setProp___id104__m_object_office_girl_B_AoE_77();
};
}
function __setProp___id102__m_object_office_girl_B_AoE_0(){
try {
__id102_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id102_.degree = 0;
__id102_.type = "AoE";
__id102_.tempDamage = 10;
__id102_.valuePoint = 0;
try {
__id102_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame94(){
stop();
}
function frame11(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame109(){
if (MovieClip(parent) != null){
MovieClip(parent).removeChild(this);
};
stop();
}
function frame23(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
gotoAndPlay("walk");
}
function frame25(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame26(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame20(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame29(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function frame3(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id103_] == undefined)) || (!((((int(__setPropDict[__id103_]) >= 25)) && ((int(__setPropDict[__id103_]) <= 33))))))){
__setPropDict[__id103_] = currentFrame;
__setProp___id103__m_object_office_girl_B_hit_24();
};
}
function __setProp___id104__m_object_office_girl_B_AoE_77(){
try {
__id104_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id104_.degree = 0;
__id104_.type = "AoE";
__id104_.tempDamage = 10;
__id104_.valuePoint = 0;
try {
__id104_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame22(){
if ((((__setPropDict[__id102_] == undefined)) || (!((((int(__setPropDict[__id102_]) >= 1)) && ((int(__setPropDict[__id102_]) <= 24))))))){
__setPropDict[__id102_] = currentFrame;
__setProp___id102__m_object_office_girl_B_AoE_0();
};
}
}
}//package
Section 193
//m_object_plane (m_object_plane)
package {
import object.bullet.*;
public dynamic class m_object_plane extends Bullet_plan {
public function m_object_plane(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package
Section 194
//m_object_robot (m_object_robot)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_robot extends BaseObject {
public var __id92_:Hitchild;
public var timeAlpha:Number;
public var __setPropDict:Dictionary;
public var __id93_:Hitchild;
public function m_object_robot(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 23, frame24, 33, frame34, 84, frame85, 108, frame109, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84);
}
function frame10(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function __setProp___id92__m_object_robot_AoE_0(){
try {
__id92_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id92_.degree = 0;
__id92_.type = "AoE";
__id92_.tempDamage = 10;
__id92_.valuePoint = 0;
try {
__id92_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame34(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame15(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function __setProp___id93__m_object_robot_code_76(){
try {
__id93_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id93_.degree = 0;
__id93_.type = "AoE";
__id93_.tempDamage = 10;
__id93_.valuePoint = 0;
try {
__id93_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame79(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame18(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame109(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame23(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame78(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame7(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame83(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame84(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame85(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
stop();
}
function frame77(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame80(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
function frame24(){
if ((((__setPropDict[__id92_] == undefined)) || (!((((int(__setPropDict[__id92_]) >= 1)) && ((int(__setPropDict[__id92_]) <= 24))))))){
__setPropDict[__id92_] = currentFrame;
__setProp___id92__m_object_robot_AoE_0();
};
gotoAndPlay("walk");
}
function frame82(){
if ((((__setPropDict[__id93_] == undefined)) || (!((((int(__setPropDict[__id93_]) >= 77)) && ((int(__setPropDict[__id93_]) <= 85))))))){
__setPropDict[__id93_] = currentFrame;
__setProp___id93__m_object_robot_code_76();
};
}
}
}//package
Section 195
//m_object_rockingdoll (m_object_rockingdoll)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_rockingdoll extends BaseObject {
public var __id88_:Hitchild;
public var timeAlpha:Number;
public var __id89_:Hitchild;
public var __id90_:Hitchild;
public var __setPropDict:Dictionary;
public var __id91_:Hitchild;
public function m_object_rockingdoll(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 19, frame20, 31, frame32, 43, frame44, 94, frame95, 115, frame116, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91, 91, frame92, 92, frame93, 93, frame94);
}
function frame116(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame32(){
gotoAndPlay("walk");
}
function frame33(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame34(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame35(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame36(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame37(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame38(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame39(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame40(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame41(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame42(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame43(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
}
function frame44(){
if ((((__setPropDict[__id89_] == undefined)) || (!((((int(__setPropDict[__id89_]) >= 33)) && ((int(__setPropDict[__id89_]) <= 44))))))){
__setPropDict[__id89_] = currentFrame;
__setProp___id89__m_object_rockingdoll_hit_32();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame89(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame87(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame88(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function __setProp___id90__m_object_rockingdoll_code_86(){
try {
__id90_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id90_.degree = 0;
__id90_.type = "AoE";
__id90_.tempDamage = 10;
__id90_.valuePoint = 0;
try {
__id90_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id91__m_object_rockingdoll_AoE_92(){
try {
__id91_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id91_.degree = 0;
__id91_.type = "AoE";
__id91_.tempDamage = 10;
__id91_.valuePoint = 0;
try {
__id91_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame90(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame91(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame93(){
if ((((__setPropDict[__id91_] == undefined)) || (!((((int(__setPropDict[__id91_]) >= 93)) && ((int(__setPropDict[__id91_]) <= 95))))))){
__setPropDict[__id91_] = currentFrame;
__setProp___id91__m_object_rockingdoll_AoE_92();
};
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame94(){
if ((((__setPropDict[__id91_] == undefined)) || (!((((int(__setPropDict[__id91_]) >= 93)) && ((int(__setPropDict[__id91_]) <= 95))))))){
__setPropDict[__id91_] = currentFrame;
__setProp___id91__m_object_rockingdoll_AoE_92();
};
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame95(){
if ((((__setPropDict[__id91_] == undefined)) || (!((((int(__setPropDict[__id91_]) >= 93)) && ((int(__setPropDict[__id91_]) <= 95))))))){
__setPropDict[__id91_] = currentFrame;
__setProp___id91__m_object_rockingdoll_AoE_92();
};
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
stop();
}
function frame10(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame13(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function __setProp___id89__m_object_rockingdoll_hit_32(){
try {
__id89_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id89_.degree = 0;
__id89_.type = "damage";
__id89_.tempDamage = 20;
__id89_.valuePoint = 0;
try {
__id89_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame11(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame92(){
if ((((__setPropDict[__id90_] == undefined)) || (!((((int(__setPropDict[__id90_]) >= 87)) && ((int(__setPropDict[__id90_]) <= 95))))))){
__setPropDict[__id90_] = currentFrame;
__setProp___id90__m_object_rockingdoll_code_86();
};
}
function frame1(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
gotoAndPlay("stand");
}
function frame22(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame8(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
function __setProp___id88__m_object_rockingdoll_AoE_0(){
try {
__id88_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id88_.degree = 0;
__id88_.type = "AoE";
__id88_.tempDamage = 10;
__id88_.valuePoint = 0;
try {
__id88_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame21(){
if ((((__setPropDict[__id88_] == undefined)) || (!((((int(__setPropDict[__id88_]) >= 1)) && ((int(__setPropDict[__id88_]) <= 24))))))){
__setPropDict[__id88_] = currentFrame;
__setProp___id88__m_object_rockingdoll_AoE_0();
};
}
}
}//package
Section 196
//m_object_scorpion (m_object_scorpion)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_scorpion extends BaseObject {
public var __id76_:Hitchild;
public var timeAlpha:Number;
public var __id77_:Hitchild;
public var __id78_:Hitchild;
public var __setPropDict:Dictionary;
public var __id79_:Hitchild;
public function m_object_scorpion(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 19, frame20, 33, frame34, 84, frame85, 111, frame112, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84);
}
function frame31(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame112(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
function frame33(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame34(){
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame79(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame32(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame30(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function __setProp___id77__m_object_scorpion_hit_20(){
try {
__id77_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id77_.degree = 0;
__id77_.type = "damage";
__id77_.tempDamage = 10;
__id77_.valuePoint = 0;
try {
__id77_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id79__m_object_scorpion_AoE_78(){
try {
__id79_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id79_.degree = 0;
__id79_.type = "AoE";
__id79_.tempDamage = 10;
__id79_.valuePoint = 0;
try {
__id79_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame82(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame83(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame84(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame85(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
stop();
}
function frame80(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame81(){
if ((((__setPropDict[__id79_] == undefined)) || (!((((int(__setPropDict[__id79_]) >= 79)) && ((int(__setPropDict[__id79_]) <= 85))))))){
__setPropDict[__id79_] = currentFrame;
__setProp___id79__m_object_scorpion_AoE_78();
};
}
function frame10(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function __setProp___id78__m_object_scorpion_hit_24(){
try {
__id78_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id78_.degree = 0;
__id78_.type = "damage";
__id78_.tempDamage = 10;
__id78_.valuePoint = 0;
try {
__id78_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame20(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
gotoAndPlay("walk");
}
function frame21(){
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function __setProp___id76__m_object_scorpion_AoE_0(){
try {
__id76_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id76_.degree = 0;
__id76_.type = "AoE";
__id76_.tempDamage = 10;
__id76_.valuePoint = 0;
try {
__id76_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame25(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame26(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame27(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame28(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame29(){
if ((((__setPropDict[__id78_] == undefined)) || (!((((int(__setPropDict[__id78_]) >= 25)) && ((int(__setPropDict[__id78_]) <= 33))))))){
__setPropDict[__id78_] = currentFrame;
__setProp___id78__m_object_scorpion_hit_24();
};
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
}
function frame23(){
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id77_] == undefined)) || (!((((int(__setPropDict[__id77_]) >= 21)) && ((int(__setPropDict[__id77_]) <= 33))))))){
__setPropDict[__id77_] = currentFrame;
__setProp___id77__m_object_scorpion_hit_20();
};
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id76_] == undefined)) || (!((((int(__setPropDict[__id76_]) >= 1)) && ((int(__setPropDict[__id76_]) <= 24))))))){
__setPropDict[__id76_] = currentFrame;
__setProp___id76__m_object_scorpion_AoE_0();
};
}
}
}//package
Section 197
//m_object_wolf (m_object_wolf)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class m_object_wolf extends BaseObject {
public var timeAlpha:Number;
public var __id73_:Hitchild;
public var __id74_:Hitchild;
public var __setPropDict:Dictionary;
public var __id75_:Hitchild;
public function m_object_wolf(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 19, frame20, 31, frame32, 82, frame83, 102, frame103, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 78, frame79, 79, frame80, 80, frame81, 81, frame82);
}
function frame28(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame30(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame31(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame32(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
gotoAndPlay("stand");
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
}
function frame79(){
if ((((__setPropDict[__id75_] == undefined)) || (!((((int(__setPropDict[__id75_]) >= 79)) && ((int(__setPropDict[__id75_]) <= 83))))))){
__setPropDict[__id75_] = currentFrame;
__setProp___id75__m_object_wolf_AoE_78();
};
}
function frame80(){
if ((((__setPropDict[__id75_] == undefined)) || (!((((int(__setPropDict[__id75_]) >= 79)) && ((int(__setPropDict[__id75_]) <= 83))))))){
__setPropDict[__id75_] = currentFrame;
__setProp___id75__m_object_wolf_AoE_78();
};
}
function frame81(){
if ((((__setPropDict[__id75_] == undefined)) || (!((((int(__setPropDict[__id75_]) >= 79)) && ((int(__setPropDict[__id75_]) <= 83))))))){
__setPropDict[__id75_] = currentFrame;
__setProp___id75__m_object_wolf_AoE_78();
};
}
function frame82(){
if ((((__setPropDict[__id75_] == undefined)) || (!((((int(__setPropDict[__id75_]) >= 79)) && ((int(__setPropDict[__id75_]) <= 83))))))){
__setPropDict[__id75_] = currentFrame;
__setProp___id75__m_object_wolf_AoE_78();
};
}
function frame83(){
if ((((__setPropDict[__id75_] == undefined)) || (!((((int(__setPropDict[__id75_]) >= 79)) && ((int(__setPropDict[__id75_]) <= 83))))))){
__setPropDict[__id75_] = currentFrame;
__setProp___id75__m_object_wolf_AoE_78();
};
stop();
}
function __setProp___id75__m_object_wolf_AoE_78(){
try {
__id75_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id75_.degree = 0;
__id75_.type = "AoE";
__id75_.tempDamage = 10;
__id75_.valuePoint = 0;
try {
__id75_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame11(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function __setProp___id73__m_object_wolf_AoE_0(){
try {
__id73_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id73_.degree = 0;
__id73_.type = "AoE";
__id73_.tempDamage = 10;
__id73_.valuePoint = 0;
try {
__id73_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame1(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
gotoAndPlay("walk");
}
function frame9(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame103(){
stop();
this.addEventListener(Event.ENTER_FRAME, process);
timeAlpha = 0;
}
public function process(_arg1:Event):void{
this.alpha = (this.alpha - 0.09);
if (this.alpha < 0){
this.removeEventListener(Event.ENTER_FRAME, process);
MovieClip(parent).removeChild(this);
};
}
function frame25(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame26(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame27(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame21(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame29(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
}
function frame23(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
function __setProp___id74__m_object_wolf_hit_20(){
try {
__id74_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id74_.degree = 0;
__id74_.type = "damage";
__id74_.tempDamage = 10;
__id74_.valuePoint = 0;
try {
__id74_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame22(){
if ((((__setPropDict[__id74_] == undefined)) || (!((((int(__setPropDict[__id74_]) >= 21)) && ((int(__setPropDict[__id74_]) <= 32))))))){
__setPropDict[__id74_] = currentFrame;
__setProp___id74__m_object_wolf_hit_20();
};
if ((((__setPropDict[__id73_] == undefined)) || (!((((int(__setPropDict[__id73_]) >= 1)) && ((int(__setPropDict[__id73_]) <= 24))))))){
__setPropDict[__id73_] = currentFrame;
__setProp___id73__m_object_wolf_AoE_0();
};
}
}
}//package
Section 198
//Main (Main)
package {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import worldmap.*;
import ai.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
public class Main extends MovieClip {
public var txt_point:TextField;
public var mc_hero:mobj_hero;
public var bcontinue:SimpleButton;
public var heroControl:HeroController;
public var b_buy_vit:SimpleButton;
public var b_buy_power_Counter:SimpleButton;
public var bback2:SimpleButton;
public var is4Down:Boolean;// = false
public var b_buy_str:SimpleButton;
public var b_moregames1:SimpleButton;
public var b_moregames2:SimpleButton;
public var camera:Camera;
public var hero:MovieClip;
public var b_preload:SimpleButton;
public var bossControl:BaseMinorController;
public var aiKeeper:Array;
public var b_preloadRelease;
public var playingState:String;// = "playingState"
public var totalZoom:Number;// = 0
public var b_highscores:SimpleButton;
public var txt_hp_price:TextField;
public var gameCase:String;// = "gameCase"
public var bstart:SimpleButton;
public var enemyView:BaseMinorView;
public var pauseState:String;// = "pauseState"
public var waiting:String;// = "waiting"
public var shopCase:String;// = "shopCase"
public var maxZoom:Number;// = 10
public var txt_deMP_price:TextField;
public var textBox:TextField;
public var initState:String;// = "initState"
public var aiEnemy:AInumberOne;
var BMP:Sound;
public var b_mfz_logo:SimpleButton;
public var heroModel:HeroModel;
public var i;
public var boss:MovieClip;
public var ui_black_screen:MovieClip;
public var enemyModel:BaseMinorModel;
public var resultState:String;// = "resultState"
var soundBMPMIX:SoundChannel;
public var textObj:TextField;
public var is3Down:Boolean;// = false
public var b_mfz_logo2:SimpleButton;
public var b_mfz_logo3:SimpleButton;
public var endState:String;// = "endState"
public var sceneManager:SceneManager;
public var b_submit:SimpleButton;
public var b_buy_decreaseMP:SimpleButton;
public var txt_vit_price:TextField;
public var hightScore;
public var b_back:SimpleButton;
public var enemy1:MovieClip;
public var txt_str_price:TextField;
public var titleCase:String;// = "titleCase"
public var b_next:SimpleButton;
public var bossView:BaseMinorView;
public var enemyControl:BaseMinorController;
public var heroView:HeroView;
public var ui_gage_hp:MovieClip;
public var bossModel:BaseMinorModel;
public var bmenu:SimpleButton;
public var txt_score_submit:TextField;
public var aiBoss:AInumberOne;
public var isSoundPlay:Boolean;// = false
public var b_close:SimpleButton;
public var now;
public var b_buy_hp:SimpleButton;
public var world1:BaseWorld;
public var EPOCH_TIME;
public var b_continue:SimpleButton;
public var gameOver:String;// = "gameOver"
public var preState:String;// = "preState"
public var playername:TextField;
public var b_buy_agi:SimpleButton;
public var bstart2:SimpleButton;
public var txt_AddPower_price:TextField;
public var txt_agi_price:TextField;
public static var sceneCase:String = "gameCase";
public static var gameState:String = "initState";
public function Main(){
aiKeeper = new Array();
BMP = new Sound();
soundBMPMIX = new SoundChannel();
addFrameScript(0, frame1, 9, frame10, 24, frame25, 114, frame115, 513, frame514, 517, frame518, 518, frame519, 519, frame520, 524, frame525, 526, frame527, 527, frame528, 528, frame529, 809, frame810);
super();
this.addEventListener(Event.ENTER_FRAME, process);
this.stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandeler);
this.stage.addEventListener(KeyboardEvent.KEY_UP, keyUpHandeler);
this.stage.focus = this;
}
public function keyUpHandeler(_arg1:KeyboardEvent){
if (gameState == playingState){
sceneManager.keyUpHandeler(_arg1.keyCode);
};
}
public function onClick_b_buy_agi(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.AGI.index;
var _local3:* = Environment.data.priceItem.AGI.price[_local2];
buyItem(_local3);
Environment.data.AGI++;
Environment.data.priceItem.AGI.index++;
}
function frame528(){
stop();
stage.focus = playername;
txt_score_submit.text = Environment.data.totalScore.toString();
b_submit.addEventListener(MouseEvent.CLICK, onClick_b_submit);
b_moregames2.addEventListener(MouseEvent.CLICK, playMoreGameTitle);
b_mfz_logo3.addEventListener(MouseEvent.CLICK, playMoreGameTitle);
bmenu.addEventListener(MouseEvent.CLICK, bmenu_click);
}
public function bback2CLick(_arg1:MouseEvent){
gotoAndStop(1);
}
public function processTitle(_arg1:Event):void{
this.alpha = i;
i = (i + 0.015);
if (this.alpha >= 1){
this.removeEventListener(Event.ENTER_FRAME, processTitle);
};
}
public function onClick_b_submit(_arg1:Event):void{
}
public function onClick_b_buy_decreaseMP(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.DecreaseMpUsage.index;
var _local3:* = Environment.data.priceItem.DecreaseMpUsage.price[_local2];
buyItem(_local3);
if (Environment.data.priceItem.DecreaseMpUsage.index == (Environment.data.priceItem.DecreaseMpUsage.value.length - 1)){
} else {
Environment.data.priceItem.DecreaseMpUsage.index++;
};
}
public function initGame():void{
gameState = initState;
}
public function onClick_bcontinue(_arg1:MouseEvent){
gotoAndPlay(1, "Game");
}
public function onClick_b_buy_vit(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.VIT.index;
var _local3:* = Environment.data.priceItem.VIT.price[_local2];
buyItem(_local3);
Environment.data.VIT++;
Environment.data.priceItem.VIT.index++;
}
public function onFrameUpdate(_arg1:Event):void{
ui_black_screen.visible = false;
ui_black_screen.x = 20000;
bindButtom();
var _local2:Number = ((Environment.data.hpHero * 100) / Environment.data.hpMax);
ui_gage_hp.gotoAndStop(Math.floor(_local2));
txt_point.text = Environment.data.point.toString();
}
public function getURL(_arg1:String, _arg2:String){
var url = _arg1;
var method = _arg2;
var web:String = url;
var request:URLRequest = new URLRequest(web);
try {
navigateToURL(request, method);
} catch(e:Error) {
};
}
public function onClick_b_buy_str(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.STR.index;
var _local3:* = Environment.data.priceItem.STR.price[_local2];
buyItem(_local3);
Environment.data.STR++;
Environment.data.priceItem.STR.index++;
}
function frame10(){
}
public function onClick_bstart(_arg1:MouseEvent){
var _local2:SharedObject = SharedObject.getLocal("FOdataSAVE");
if (_local2.data.env == undefined){
_local2.clear();
gotoAndPlay(1, "Tutorail");
} else {
gotoAndStop(5);
};
}
function frame1(){
now = new Date();
EPOCH_TIME = now.getTime();
b_preloadRelease = function (){
getURL("http://www.mofunzone.com/", "_blank");
};
b_preload.addEventListener("mouseUp", b_preloadRelease);
stop();
}
public function onEndScene(_arg1:GameEvent):void{
gameState = resultState;
}
public function onClick_b_buy_hp(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.hp.index;
var _local3:* = Environment.data.priceItem.hp.price[_local2];
buyItem(_local3);
Environment.data.hpHero = (Environment.data.hpHero + 50);
}
function frame25(){
gotoAndPlay(1, "stating");
}
public function onClick_b_close(_arg1:Event):void{
gotoAndPlay(1, "Game");
}
public function bmenu_click(_arg1:Event){
this.gotoAndStop(1, "Title");
bmenu.removeEventListener("click", bmenu_click);
}
function frame514(){
this.alpha = 0;
this.addEventListener(Event.ENTER_FRAME, processTitle);
i = 0;
b_moregames1.addEventListener(MouseEvent.CLICK, playMoreGameTitle2);
b_mfz_logo.addEventListener(MouseEvent.CLICK, playMoreGameTitle2);
b_mfz_logo2.addEventListener(MouseEvent.CLICK, playMoreGameTitle2);
b_continue.addEventListener(MouseEvent.CLICK, onClick_b_continue);
stop();
bstart.addEventListener(MouseEvent.CLICK, onClick_bstart);
hightScore = function (){
getURL("http://www.mofunzone.com/game_scores/fury_officer/highscores.shtml", "_blank");
};
b_highscores.addEventListener("click", hightScore);
}
public function keyDownSkipIntro(_arg1:KeyboardEvent):void{
if (_arg1.keyCode == 75){
this.stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownSkipIntro);
this.gotoAndPlay(1, "Title");
};
}
function frame518(){
bback2.addEventListener(MouseEvent.CLICK, bback2CLick);
bstart2.addEventListener(MouseEvent.CLICK, bstart2CLick);
}
public function keyDownHandeler(_arg1:KeyboardEvent){
if (gameState == playingState){
sceneManager.keyDownHandeler(_arg1.keyCode);
};
}
function frame519(){
stop();
b_next.addEventListener(MouseEvent.CLICK, onClick_b_next);
this.stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownSkip);
b_back.addEventListener(MouseEvent.CLICK, onClick_b_back);
b_close.addEventListener(MouseEvent.CLICK, onClick_b_close);
}
function frame520(){
stop();
}
function frame115(){
stop();
this.stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownSkipIntro);
play();
}
function frame525(){
stop();
}
public function loadVariablesNum(_arg1:String){
var _local2:* = new URLRequest(_arg1);
var _local3:* = new URLLoader();
_local3.load(_local2);
}
function frame527(){
stop();
this.addEventListener(Event.ENTER_FRAME, onFrameUpdate);
txt_point.text = Environment.data.point.toString();
bcontinue.addEventListener(MouseEvent.CLICK, onClick_bcontinue);
b_buy_agi.addEventListener(MouseEvent.CLICK, onClick_b_buy_agi);
b_buy_str.addEventListener(MouseEvent.CLICK, onClick_b_buy_str);
b_buy_vit.addEventListener(MouseEvent.CLICK, onClick_b_buy_vit);
b_buy_hp.addEventListener(MouseEvent.CLICK, onClick_b_buy_hp);
b_buy_power_Counter.addEventListener(MouseEvent.CLICK, onClick_b_buy_power_Counter);
b_buy_decreaseMP.addEventListener(MouseEvent.CLICK, onClick_b_buy_decreaseMP);
}
public function buyItem(_arg1:Number):void{
if (Environment.data.point >= _arg1){
Environment.data.point = (Environment.data.point - _arg1);
mc_hero.gotoAndPlay("attack_counter");
};
}
public function onClick_b_buy_power_Counter(_arg1:MouseEvent){
var _local2:* = Environment.data.priceItem.CounterPower.index;
var _local3:* = Environment.data.priceItem.CounterPower.price[_local2];
var _local4:* = Environment.data.priceItem.CounterPower.value[_local2];
buyItem(_local3);
if (Environment.data.priceItem.CounterPower.index == (Environment.data.priceItem.CounterPower.value.length - 1)){
} else {
Environment.data.priceItem.CounterPower.index++;
};
}
public function keyDownSkip(_arg1:KeyboardEvent):void{
if (_arg1.keyCode == 75){
this.stage.removeEventListener(KeyboardEvent.KEY_DOWN, keyDownSkip);
this.gotoAndPlay(1, "Game");
};
}
public function onClick_b_back(_arg1:Event):void{
this.prevFrame();
}
function frame529(){
}
public function onSoundComplete(_arg1:Event):void{
BMP.play();
}
public function onClick_b_next(_arg1:Event):void{
this.nextFrame();
}
public function bindButtom():void{
var _local1:Number;
var _local2:Number;
var _local3:Number = Environment.data.point;
var _local4:Number = 10;
_local1 = Environment.data.priceItem.AGI.index;
_local2 = Environment.data.priceItem.AGI.price[_local1];
_local4 = (Environment.data.priceItem.AGI.value.length - 1);
txt_agi_price.text = (_local2.toString() + "p");
if ((((_local3 < _local2)) || ((_local1 > _local4)))){
b_buy_agi.visible = false;
if (_local1 > _local4){
txt_agi_price.text = "MAX";
};
};
_local1 = Environment.data.priceItem.STR.index;
_local2 = Environment.data.priceItem.STR.price[_local1];
txt_str_price.text = (_local2.toString() + "p");
_local4 = (Environment.data.priceItem.STR.value.length - 1);
if ((((_local3 < _local2)) || ((_local1 > _local4)))){
b_buy_str.visible = false;
if (_local1 > _local4){
txt_str_price.text = "MAX";
};
};
_local1 = Environment.data.priceItem.VIT.index;
_local2 = Environment.data.priceItem.VIT.price[_local1];
_local4 = (Environment.data.priceItem.VIT.value.length - 1);
txt_vit_price.text = (_local2.toString() + "p");
if ((((_local3 < _local2)) || ((_local1 > _local4)))){
b_buy_vit.visible = false;
if (_local1 > _local4){
txt_vit_price.text = "MAX";
};
};
_local1 = Environment.data.priceItem.hp.index;
_local2 = Environment.data.priceItem.hp.price[_local1];
txt_hp_price.text = (_local2.toString() + "p");
var _local5 = (Environment.data.hpMax == Environment.data.hpHero);
if ((((_local3 < _local2)) || (_local5))){
b_buy_hp.visible = false;
txt_hp_price.visible = false;
};
_local1 = Environment.data.priceItem.CounterPower.index;
_local2 = Environment.data.priceItem.CounterPower.price[_local1];
_local4 = (Environment.data.priceItem.CounterPower.value.length - 1);
txt_AddPower_price.text = (_local2.toString() + "p");
if ((((_local3 < _local2)) || ((_local1 == _local4)))){
b_buy_power_Counter.visible = false;
if (_local1 == _local4){
txt_AddPower_price.text = "MAX";
};
};
_local1 = Environment.data.priceItem.DecreaseMpUsage.index;
_local2 = Environment.data.priceItem.DecreaseMpUsage.price[_local1];
_local4 = (Environment.data.priceItem.DecreaseMpUsage.value.length - 1);
txt_deMP_price.text = (_local2.toString() + "p");
if ((((_local3 < _local2)) || ((_local1 == _local4)))){
b_buy_decreaseMP.visible = false;
if (_local1 == _local4){
txt_deMP_price.text = "MAX";
};
};
}
function frame810(){
this.gotoAndPlay(1, "submit");
}
public function bstart2CLick(_arg1:MouseEvent){
gotoAndPlay(1, "Tutorail");
}
public function process(_arg1:Event):void{
var so:SharedObject;
var e = _arg1;
if (this.currentScene.name == "Shop"){
sceneCase = shopCase;
} else {
if (this.currentScene.name == "Game"){
sceneCase = gameCase;
} else {
if ((((this.currentScene.name == "Title")) && (!((sceneCase == waiting))))){
sceneCase = titleCase;
Environment.data.level = 1;
} else {
sceneCase = "";
};
};
};
switch (sceneCase){
case titleCase:
gameState = initState;
Environment.newData();
Environment.data.hpHero = Environment.data.hpMax;
sceneCase = waiting;
break;
case gameCase:
switch (gameState){
case initState:
Environment.data.resaultGoToShow = 0;
Environment.data.offsetScreen = 0;
sceneManager = new SceneManager(this);
sceneManager.init();
sceneManager.addEventListener(GameEvent.ENDSCENE, onEndScene);
sceneManager.addEventListener(GameEvent.DEAD, onDEAD);
Environment.data.uiControl.initUI();
Environment.data.updateSPAction();
Environment.data.combo = 1;
gameState = preState;
break;
case preState:
gameState = playingState;
if ((((Environment.data.level < 8)) && (!(isSoundPlay)))){
SoundMixer.stopAll();
isSoundPlay = true;
BMP = new newgrounds_biosee();
soundBMPMIX = BMP.play(0, 300000000, new SoundTransform(0.3));
} else {
if ((((Environment.data.level < 11)) && (!(isSoundPlay)))){
SoundMixer.stopAll();
isSoundPlay = true;
BMP = new newgrounds_tenchu();
soundBMPMIX = BMP.play(0, 300000000, new SoundTransform(0.3));
} else {
if ((((Environment.data.level < 14)) && (!(isSoundPlay)))){
SoundMixer.stopAll();
isSoundPlay = true;
BMP = new newgroundsmm3bo();
soundBMPMIX = BMP.play(0, 300000000, new SoundTransform(0.3));
};
};
};
soundBMPMIX.soundTransform = new SoundTransform(1, 0);
break;
case playingState:
sceneManager.process();
if ((Environment.data.time - Environment.data.lastTimeCombo) > 10){
Environment.data.combo = 0;
};
break;
case pauseState:
break;
case resultState:
Environment.data.sceneManager.scene.addChild(new mc_ui_result());
if (Environment.data.level == 4){
Environment.data.resaultGoToShow = 43;
} else {
if (Environment.data.level == 7){
Environment.data.resaultGoToShow = 61;
} else {
if (Environment.data.level == 10){
Environment.data.resaultGoToShow = 79;
} else {
if (Environment.data.level == 13){
Environment.data.resaultGoToShow = 97;
};
};
};
};
gameState = waiting;
break;
case endState:
Environment.data._score = 0;
Environment.data.level++;
Environment.data.clearLeverValue();
Environment.data.updateSPAction();
sceneManager.removeEventListener(GameEvent.DEAD, onDEAD);
sceneManager.removeEventListener(GameEvent.ENDSCENE, onEndScene);
sceneManager.sceneClear();
Environment.data.resaultGoToShow = 0;
isSoundPlay = false;
try {
so = SharedObject.getLocal("FOdataSAVE");
so.data.env = Environment.data;
so.flush();
so.close();
} catch(e:Error) {
};
if (Environment.data.level == 15){
isSoundPlay = false;
};
if (Environment.data.level == 16){
this.gotoAndPlay(1, "ending");
SoundMixer.stopAll();
} else {
this.gotoAndPlay(1, "Shop");
};
break;
case gameOver:
sceneManager.removeEventListener(GameEvent.DEAD, onDEAD);
sceneManager.removeEventListener(GameEvent.ENDSCENE, onEndScene);
sceneManager.sceneClear();
this.gotoAndPlay(1, "submit");
break;
};
break;
case shopCase:
soundBMPMIX.soundTransform = new SoundTransform(0.3, 0);
gameState = initState;
break;
};
}
public function onDEAD(_arg1:GameEvent):void{
gameState = gameOver;
}
public function playMoreGameTitle2(_arg1:MouseEvent){
getURL("http://www.mofunzone.com/", "_blank");
}
public function onClick_b_continue(_arg1:MouseEvent){
var obj:*;
var num:Number;
var obj2:*;
var e = _arg1;
var so:SharedObject = SharedObject.getLocal("FOdataSAVE");
if (so.data.env != null){
for (obj in so.data.env) {
num = 0;
try {
for (obj2 in so.data.env[obj]) {
num = (num + 1);
};
if (num == 0){
Environment.data[obj] = so.data.env[obj];
};
if ("priceItem" == obj){
Environment.data[obj] = so.data.env[obj];
};
} catch(e:Error) {
};
};
} else {
Environment.data;
};
Environment.data.hpHero = Environment.data.hpMax;
gotoAndPlay(1, "Game");
}
public function playMoreGameTitle(_arg1:MouseEvent){
getURL("http://www.mofunzone.com/", "_blank");
}
}
}//package
Section 199
//mc_ui (mc_ui)
package {
import flash.events.*;
import object.*;
public dynamic class mc_ui extends UIcontrol {
public function mc_ui(){
addFrameScript(0, frame1);
}
function frame1(){
b_nextlevel.addEventListener(MouseEvent.CLICK, onClick_b_nextlevel);
stop();
}
public function onClick_b_nextlevel(_arg1:MouseEvent){
Main.gameState = "resultState";
}
}
}//package
Section 200
//mc_ui_result (mc_ui_result)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mc_ui_result extends MovieClip {
public var txt_point:TextField;
public var txt_score:TextField;
public var numPoint;
public var numberCount:Number;
public var b_next:SimpleButton;
public function mc_ui_result(){
addFrameScript(4, frame5, 14, frame15, 26, frame27, 41, frame42, 59, frame60, 77, frame78, 95, frame96, 113, frame114);
}
function frame60(){
stop();
b_next.visible = true;
}
function frame5(){
this.addEventListener(Event.ENTER_FRAME, process);
numberCount = 0;
}
public function onclick(_arg1:Event):void{
Main.gameState = "endState";
}
function frame42(){
b_next.addEventListener(MouseEvent.CLICK, onclick);
if (Environment.data.resaultGoToShow != 0){
this.gotoAndPlay(Environment.data.resaultGoToShow);
b_next.visible = false;
};
stop();
}
function frame78(){
stop();
b_next.visible = true;
}
public function process(_arg1:Event):void{
numberCount = (numberCount + Math.floor((Environment.data.score / 10)));
txt_score.text = numberCount.toString();
}
function frame15(){
this.removeEventListener(Event.ENTER_FRAME, process);
txt_score.text = Environment.data.score.toString();
}
function frame27(){
numPoint = Math.floor((Environment.data.score / 100));
Environment.data.point = (Environment.data.point + numPoint);
txt_point.text = numPoint.toString();
}
function frame114(){
stop();
b_next.visible = true;
}
function frame96(){
stop();
b_next.visible = true;
}
}
}//package
Section 201
//mc_ui_time (mc_ui_time)
package {
import object.*;
public dynamic class mc_ui_time extends TimeFO {
}
}//package
Section 202
//mcItem1 (mcItem1)
package {
import flash.display.*;
import flash.events.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import object.item.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mcItem1 extends ItemObj {
public var __id123_:Hitchild;
public function mcItem1(){
addFrameScript(0, frame1);
__setProp___id123__mcItem1_Layer2_0();
}
function frame1(){
stop();
}
function __setProp___id123__mcItem1_Layer2_0(){
try {
__id123_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id123_.degree = 0;
__id123_.type = "AoE";
__id123_.tempDamage = 10;
__id123_.valuePoint = 0;
try {
__id123_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 203
//mobj_boss1 (mobj_boss1)
package {
import flash.display.*;
import flash.events.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_boss1 extends BaseBoss {
public var __id68_:Hitchild;
public var __id69_:Hitchild;
public var __id65_:Hitchild;
public var __id66_:Hitchild;
public var __setPropDict:Dictionary;
public var __id67_:Hitchild;
public function mobj_boss1(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 36, frame37, 47, frame48, 58, frame59, 87, frame88, 97, frame98, 107, frame108, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 46, frame47, 53, frame54, 54, frame55, 55, frame56, 56, frame57, 57, frame58, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 88, frame89, 89, frame90, 90, frame91, 91, frame92, 92, frame93, 93, frame94, 94, frame95, 95, frame96, 96, frame97);
}
function frame29(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame54(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
}
function frame30(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function __setProp___id66__mobj_boss1_hit_37(){
try {
__id66_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id66_.degree = 0;
__id66_.type = "damage";
try {
__id66_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id65__mobj_boss1_AoE_0(){
try {
__id65_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id65_.degree = 0;
__id65_.type = "AoE";
__id65_.tempDamage = 10;
__id65_.valuePoint = 0;
try {
__id65_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame33(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame34(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame35(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame36(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame37(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
stop();
}
function frame31(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame32(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 29)) && ((int(__setPropDict[__id66_]) <= 37))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_28();
};
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
}
function frame79(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame38(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 38)) && ((int(__setPropDict[__id66_]) <= 40))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_37();
};
}
function frame39(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 38)) && ((int(__setPropDict[__id66_]) <= 40))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_37();
};
}
function __setProp___id68__mobj_boss1_AoE_78(){
try {
__id68_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id68_.degree = 0;
__id68_.type = "AoE";
__id68_.tempDamage = 10;
__id68_.valuePoint = 0;
try {
__id68_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id66__mobj_boss1_hit_40(){
try {
__id66_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id66_.degree = 0;
__id66_.type = "damage";
__id66_.tempDamage = 20;
__id66_.valuePoint = 0;
try {
__id66_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id67__mobj_boss1_hit_53(){
try {
__id67_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id67_.degree = 0;
__id67_.type = "damage";
__id67_.tempDamage = 20;
__id67_.valuePoint = 0;
try {
__id67_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame81(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame82(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame83(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame40(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 38)) && ((int(__setPropDict[__id66_]) <= 40))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_37();
};
}
function frame41(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame42(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame43(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame88(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
stop();
}
function frame45(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame46(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame47(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame48(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
stop();
}
function frame86(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame87(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame44(){
if ((((__setPropDict[__id66_] == undefined)) || (!((((int(__setPropDict[__id66_]) >= 41)) && ((int(__setPropDict[__id66_]) <= 48))))))){
__setPropDict[__id66_] = currentFrame;
__setProp___id66__mobj_boss1_hit_40();
};
}
function frame89(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame84(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame85(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function frame80(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 79)) && ((int(__setPropDict[__id68_]) <= 88))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_78();
};
}
function __setProp___id68__mobj_boss1_AoE_88(){
try {
__id68_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id68_.degree = 0;
__id68_.type = "AoE";
try {
__id68_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame91(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame93(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame94(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame95(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function __setProp___id69__mobj_boss1_hit_88(){
try {
__id69_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id69_.degree = 0;
__id69_.type = "damage";
__id69_.tempDamage = 5;
__id69_.valuePoint = 0;
try {
__id69_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame10(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame59(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
stop();
}
function frame16(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame57(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
}
function frame58(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
}
function frame15(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame96(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame97(){
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame55(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
}
function frame56(){
if ((((__setPropDict[__id67_] == undefined)) || (!((((int(__setPropDict[__id67_]) >= 54)) && ((int(__setPropDict[__id67_]) <= 59))))))){
__setPropDict[__id67_] = currentFrame;
__setProp___id67__mobj_boss1_hit_53();
};
}
function frame92(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
function frame1(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function __setProp___id65__mobj_boss1_AoE_27(){
try {
__id65_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id65_.degree = 0;
__id65_.type = "AoE";
try {
__id65_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame7(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function __setProp___id66__mobj_boss1_hit_28(){
try {
__id66_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id66_.degree = 0;
__id66_.type = "damage";
__id66_.tempDamage = 20;
__id66_.valuePoint = 0;
try {
__id66_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame98(){
stop();
}
function frame24(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame108(){
MovieClip(parent).removeChild(this);
stop();
}
function frame22(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 28)) && ((int(__setPropDict[__id65_]) <= 36))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_27();
};
gotoAndPlay("walk");
}
function frame9(){
if ((((__setPropDict[__id65_] == undefined)) || (!((((int(__setPropDict[__id65_]) >= 1)) && ((int(__setPropDict[__id65_]) <= 27))))))){
__setPropDict[__id65_] = currentFrame;
__setProp___id65__mobj_boss1_AoE_0();
};
}
function frame90(){
if ((((__setPropDict[__id69_] == undefined)) || (!((((int(__setPropDict[__id69_]) >= 89)) && ((int(__setPropDict[__id69_]) <= 95))))))){
__setPropDict[__id69_] = currentFrame;
__setProp___id69__mobj_boss1_hit_88();
};
if ((((__setPropDict[__id68_] == undefined)) || (!((((int(__setPropDict[__id68_]) >= 89)) && ((int(__setPropDict[__id68_]) <= 97))))))){
__setPropDict[__id68_] = currentFrame;
__setProp___id68__mobj_boss1_AoE_88();
};
}
}
}//package
Section 204
//mobj_boss2 (mobj_boss2)
package {
import flash.display.*;
import flash.events.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_boss2 extends Boss2 {
public var __id60_:Hitchild;
public var __id61_:Hitchild;
public var __id62_:Hitchild;
public var __setPropDict:Dictionary;
public var __id63_:Hitchild;
public var __id64_:Hitchild;
public function mobj_boss2(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 36, frame37, 58, frame59, 67, frame68, 68, frame69, 87, frame88, 97, frame98, 107, frame108, 117, frame118, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 46, frame47, 47, frame48, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53, 53, frame54, 54, frame55, 55, frame56, 56, frame57, 57, frame58, 59, frame60, 60, frame61, 61, frame62, 62, frame63, 63, frame64, 64, frame65, 65, frame66, 66, frame67, 69, frame70, 70, frame71, 71, frame72, 72, frame73, 73, frame74, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 101, frame102, 102, frame103, 103, frame104, 104, frame105, 105, frame106, 106, frame107, 108, frame109);
}
function frame70(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame71(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame72(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame73(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame75(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame77(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame78(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function __setProp___id61__mobj_boss2_hit_37(){
try {
__id61_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id61_.degree = 0;
__id61_.type = "damage";
__id61_.tempDamage = 50;
__id61_.valuePoint = 0;
try {
__id61_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id62__mobj_boss2_AoE_59(){
try {
__id62_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id62_.degree = 0;
__id62_.type = "AoE";
__id62_.tempDamage = 10;
__id62_.valuePoint = 0;
try {
__id62_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame76(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame79(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame74(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 70)) && ((int(__setPropDict[__id63_]) <= 78))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_69();
};
}
function frame80(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame81(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame82(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame83(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function __setProp___id64__mobj_boss2_hit_101(){
try {
__id64_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id64_.degree = 0;
__id64_.type = "damage";
__id64_.tempDamage = 50;
__id64_.valuePoint = 0;
try {
__id64_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame86(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame87(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame88(){
stop();
}
function frame84(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function frame85(){
if ((((__setPropDict[__id63_] == undefined)) || (!((((int(__setPropDict[__id63_]) >= 79)) && ((int(__setPropDict[__id63_]) <= 87))))))){
__setPropDict[__id63_] = currentFrame;
__setProp___id63__mobj_boss2_AoE_78();
};
}
function __setProp___id61__mobj_boss2_hit_54(){
try {
__id61_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id61_.degree = 0;
__id61_.type = "damage";
__id61_.tempDamage = 90;
__id61_.valuePoint = 0;
try {
__id61_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame98(){
stop();
}
function frame11(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame108(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
stop();
}
function frame29(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame102(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function frame4(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame104(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function frame105(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function frame10(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 1)) && ((int(__setPropDict[__id60_]) <= 27))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_0();
};
}
function frame109(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function frame103(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function frame28(){
if ((((__setPropDict[__id60_] == undefined)) || (!((int(__setPropDict[__id60_]) == 28))))){
__setPropDict[__id60_] = 28;
__setProp___id60__mobj_boss2_AoE_27();
};
gotoAndPlay("walk");
}
function frame107(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function __setProp___id60__mobj_boss2_AoE_0(){
try {
__id60_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id60_.degree = 0;
__id60_.type = "AoE";
__id60_.tempDamage = 10;
__id60_.valuePoint = 0;
try {
__id60_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame30(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame118(){
MovieClip(parent).removeChild(this);
stop();
}
function frame32(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame33(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame34(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame35(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame37(){
stop();
}
function frame31(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame39(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function __setProp___id63__mobj_boss2_AoE_69(){
try {
__id63_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id63_.degree = 0;
__id63_.type = "AoE";
__id63_.tempDamage = 10;
__id63_.valuePoint = 0;
try {
__id63_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame38(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame36(){
if ((((__setPropDict[__id60_] == undefined)) || (!((((int(__setPropDict[__id60_]) >= 29)) && ((int(__setPropDict[__id60_]) <= 36))))))){
__setPropDict[__id60_] = currentFrame;
__setProp___id60__mobj_boss2_AoE_28();
};
}
function frame106(){
if ((((__setPropDict[__id64_] == undefined)) || (!((((int(__setPropDict[__id64_]) >= 102)) && ((int(__setPropDict[__id64_]) <= 109))))))){
__setPropDict[__id64_] = currentFrame;
__setProp___id64__mobj_boss2_hit_101();
};
}
function __setProp___id63__mobj_boss2_AoE_78(){
try {
__id63_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id63_.degree = 0;
__id63_.type = "AoE";
try {
__id63_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame40(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame41(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame42(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame43(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame44(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame45(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame46(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame47(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame48(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame49(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame50(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame51(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame52(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame53(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame54(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 38)) && ((int(__setPropDict[__id61_]) <= 54))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_37();
};
}
function frame55(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 55)) && ((int(__setPropDict[__id61_]) <= 59))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_54();
};
}
function frame57(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 55)) && ((int(__setPropDict[__id61_]) <= 59))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_54();
};
}
function frame58(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 55)) && ((int(__setPropDict[__id61_]) <= 59))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_54();
};
}
function frame59(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 55)) && ((int(__setPropDict[__id61_]) <= 59))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_54();
};
stop();
}
function frame56(){
if ((((__setPropDict[__id61_] == undefined)) || (!((((int(__setPropDict[__id61_]) >= 55)) && ((int(__setPropDict[__id61_]) <= 59))))))){
__setPropDict[__id61_] = currentFrame;
__setProp___id61__mobj_boss2_hit_54();
};
}
function frame60(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame61(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame62(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame63(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame64(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame65(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function __setProp___id60__mobj_boss2_AoE_27(){
try {
__id60_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id60_.degree = 0;
__id60_.type = "AoE";
try {
__id60_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id60__mobj_boss2_AoE_28(){
try {
__id60_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id60_.degree = 0;
__id60_.type = "AoE";
__id60_.tempDamage = 10;
__id60_.valuePoint = 0;
try {
__id60_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame68(){
stop();
}
function frame69(){
stop();
}
function frame66(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
function frame67(){
if ((((__setPropDict[__id62_] == undefined)) || (!((((int(__setPropDict[__id62_]) >= 60)) && ((int(__setPropDict[__id62_]) <= 67))))))){
__setPropDict[__id62_] = currentFrame;
__setProp___id62__mobj_boss2_AoE_59();
};
}
}
}//package
Section 205
//mobj_boss3 (mobj_boss3)
package {
import flash.display.*;
import flash.events.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_boss3 extends Boss3 {
public var __id58_:Hitchild;
public var __setPropDict:Dictionary;
public var __id59_:Hitchild;
public function mobj_boss3(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 17, frame18, 41, frame42, 47, frame48, 53, frame54, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 88, frame89, 90, frame91, 91, frame92, 92, frame93, 94, frame95, 96, frame97, 98, frame99, 99, frame100, 109, frame110, 118, frame119, 169, frame170, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 46, frame47, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53);
}
function frame110(){
stop();
}
function __setProp___id59__mobj_boss3_hit_47(){
try {
__id59_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id59_.degree = 0;
__id59_.type = "damage";
__id59_.tempDamage = 100;
__id59_.valuePoint = 0;
try {
__id59_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame30(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame119(){
stop();
}
function frame33(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame34(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame35(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame36(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame37(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame31(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame32(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame38(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame39(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function __setProp___id59__mobj_boss3_hit_18(){
try {
__id59_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id59_.degree = 0;
__id59_.type = "damage";
__id59_.tempDamage = 100;
__id59_.valuePoint = 0;
try {
__id59_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame84(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 10);
}
function frame85(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 15);
}
function frame86(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 20);
}
function frame87(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 25);
}
function frame88(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 30);
}
function frame89(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 35);
}
function frame83(){
stop();
}
function frame40(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame48(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
gotoAndPlay("attack_1");
}
function frame42(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
stop();
}
function frame43(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 43)) && ((int(__setPropDict[__id59_]) <= 47))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_42();
};
}
function frame44(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 43)) && ((int(__setPropDict[__id59_]) <= 47))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_42();
};
}
function frame45(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 43)) && ((int(__setPropDict[__id59_]) <= 47))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_42();
};
}
function frame47(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 43)) && ((int(__setPropDict[__id59_]) <= 47))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_42();
};
}
function frame41(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 31)) && ((int(__setPropDict[__id59_]) <= 42))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_30();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame170(){
MovieClip(parent).removeChild(this);
stop();
}
function frame46(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 43)) && ((int(__setPropDict[__id59_]) <= 47))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_42();
};
}
function frame91(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 40);
}
function frame92(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 45);
}
function __setProp___id59__mobj_boss3_hit_21(){
try {
__id59_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id59_.degree = 0;
__id59_.type = "damage";
__id59_.tempDamage = 50;
__id59_.valuePoint = 0;
try {
__id59_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame50(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
}
function frame95(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 70);
}
function frame49(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
}
function frame97(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 80);
}
function frame54(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
stop();
}
function frame99(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 100);
}
function frame12(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame10(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
gotoAndPlay("walk");
}
function frame19(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 19)) && ((int(__setPropDict[__id59_]) <= 21))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_18();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame93(){
Environment.data.world.transform.colorTransform = new ColorTransform(1, 0.8, 0.8, 1, 50);
}
function frame51(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
}
function frame52(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
}
function frame17(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function __setProp___id59__mobj_boss3_hit_30(){
try {
__id59_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id59_.degree = 0;
__id59_.type = "damage";
__id59_.tempDamage = 40;
__id59_.valuePoint = 0;
try {
__id59_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame53(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 48)) && ((int(__setPropDict[__id59_]) <= 54))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_47();
};
}
function frame1(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function __setProp___id58__mobj_boss3_AoE_0(){
try {
__id58_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id58_.degree = 0;
__id58_.type = "AoE";
__id58_.tempDamage = 10;
__id58_.valuePoint = 0;
try {
__id58_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame100(){
stop();
}
function frame29(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 22)) && ((int(__setPropDict[__id59_]) <= 30))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_21();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 19)) && ((int(__setPropDict[__id59_]) <= 21))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_18();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id59_] == undefined)) || (!((((int(__setPropDict[__id59_]) >= 19)) && ((int(__setPropDict[__id59_]) <= 21))))))){
__setPropDict[__id59_] = currentFrame;
__setProp___id59__mobj_boss3_hit_18();
};
if ((((__setPropDict[__id58_] == undefined)) || (!((((int(__setPropDict[__id58_]) >= 1)) && ((int(__setPropDict[__id58_]) <= 42))))))){
__setPropDict[__id58_] = currentFrame;
__setProp___id58__mobj_boss3_AoE_0();
};
}
function __setProp___id59__mobj_boss3_hit_42(){
try {
__id59_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id59_.degree = 0;
__id59_.type = "damage";
__id59_.tempDamage = 10;
__id59_.valuePoint = 0;
try {
__id59_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 206
//mobj_boss4 (mobj_boss4)
package {
import flash.display.*;
import flash.events.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_boss4 extends Boss4 {
public var __id56_:Hitchild;
public var __id57_:Hitchild;
public var __setPropDict:Dictionary;
public var __id55_:Hitchild;
public function mobj_boss4(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 27, frame28, 44, frame45, 58, frame59, 69, frame70, 78, frame79, 88, frame89, 98, frame99, 108, frame109, 118, frame119, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 45, frame46, 46, frame47, 47, frame48, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53, 53, frame54, 54, frame55, 55, frame56, 56, frame57, 57, frame58, 59, frame60, 60, frame61, 61, frame62, 62, frame63, 63, frame64, 64, frame65, 65, frame66, 66, frame67, 67, frame68, 68, frame69, 70, frame71, 71, frame72, 72, frame73, 73, frame74, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 89, frame90, 99, frame100, 100, frame101, 101, frame102, 102, frame103, 103, frame104, 104, frame105, 105, frame106, 106, frame107, 107, frame108, 109, frame110, 110, frame111, 111, frame112, 112, frame113, 113, frame114, 114, frame115, 115, frame116, 116, frame117, 117, frame118);
}
function frame71(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame72(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame73(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame74(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame75(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame76(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame70(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
stop();
}
function frame78(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame79(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
stop();
}
function frame77(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame80(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame82(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame83(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame84(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame85(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame86(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame87(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame88(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame89(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
stop();
}
function frame90(){
if ((((__setPropDict[__id55_] == undefined)) || (!((int(__setPropDict[__id55_]) == 90))))){
__setPropDict[__id55_] = 90;
__setProp___id55__mobj_boss4_AoE_89();
};
}
function frame10(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame99(){
stop();
}
function frame12(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
gotoAndPlay("stand");
}
function frame13(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame19(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame1(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame109(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
stop();
}
function frame23(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function __setProp___id55__mobj_boss4_AoE_0(){
try {
__id55_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id55_.degree = 0;
__id55_.type = "AoE";
__id55_.tempDamage = 10;
__id55_.valuePoint = 0;
try {
__id55_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame26(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
gotoAndPlay("walk");
}
function frame29(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame102(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame103(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame25(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame105(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame106(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame20(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame101(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function __setProp___id56__mobj_boss4_hit_63(){
try {
__id56_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id56_.degree = 0;
__id56_.type = "damage";
__id56_.tempDamage = 100;
__id56_.valuePoint = 0;
try {
__id56_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame107(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame108(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame112(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame100(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame114(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame115(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame116(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame30(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame31(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame119(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
MovieClip(parent).removeChild(this);
stop();
}
function frame33(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame34(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame35(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame36(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame37(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame38(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame32(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame104(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame117(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame39(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame110(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame111(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function __setProp___id57__mobj_boss4_AoE_99(){
try {
__id57_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id57_.degree = 0;
__id57_.type = "AoE";
__id57_.tempDamage = 10;
__id57_.valuePoint = 0;
try {
__id57_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame118(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame113(){
if ((((__setPropDict[__id57_] == undefined)) || (!((((int(__setPropDict[__id57_]) >= 100)) && ((int(__setPropDict[__id57_]) <= 119))))))){
__setPropDict[__id57_] = currentFrame;
__setProp___id57__mobj_boss4_AoE_99();
};
}
function frame40(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame41(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame42(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame43(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame44(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame45(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
stop();
}
function frame46(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame47(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame48(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame49(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function __setProp___id55__mobj_boss4_AoE_89(){
try {
__id55_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id55_.degree = 0;
__id55_.type = "AoE";
__id55_.damage = 10;
__id55_.valuePoint = 0;
try {
__id55_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame51(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame52(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame53(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame54(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame55(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame56(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame57(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame58(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame59(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
stop();
}
function frame50(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame60(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame61(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame62(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame63(){
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame64(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame65(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame66(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame67(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame68(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
function frame69(){
if ((((__setPropDict[__id56_] == undefined)) || (!((((int(__setPropDict[__id56_]) >= 64)) && ((int(__setPropDict[__id56_]) <= 70))))))){
__setPropDict[__id56_] = currentFrame;
__setProp___id56__mobj_boss4_hit_63();
};
if ((((__setPropDict[__id55_] == undefined)) || (!((((int(__setPropDict[__id55_]) >= 1)) && ((int(__setPropDict[__id55_]) <= 89))))))){
__setPropDict[__id55_] = currentFrame;
__setProp___id55__mobj_boss4_AoE_0();
};
}
}
}//package
Section 207
//mobj_boss5 (mobj_boss5)
package {
import flash.display.*;
import flash.events.*;
import abstract.enemy.boss.*;
import flash.geom.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_boss5 extends Boss5 {
public var __id44_:Hitchild;
public var __id32_:Hitchild;
public var __id45_:Hitchild;
public var __id33_:Hitchild;
public var __id46_:Hitchild;
public var __id34_:Hitchild;
public var __id50_:Hitchild;
public var __setPropDict:Dictionary;
public var __id47_:Hitchild;
public var __id35_:Hitchild;
public var __id51_:Hitchild;
public var __id48_:Hitchild;
public var __id36_:Hitchild;
public var __id52_:Hitchild;
public var __id40_:Hitchild;
public var __id49_:Hitchild;
public var __id37_:Hitchild;
public var __id53_:Hitchild;
public var __id41_:Hitchild;
public var __id38_:Hitchild;
public var __id54_:Hitchild;
public var __id42_:Hitchild;
public var __id30_:Hitchild;
public var __id39_:Hitchild;
public var __id43_:Hitchild;
public var __id31_:Hitchild;
public function mobj_boss5(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 16, frame17, 32, frame33, 47, frame48, 64, frame65, 82, frame83, 88, frame89, 123, frame124, 133, frame134, 143, frame144, 153, frame154, 261, frame262, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 11, frame12, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 21, frame22, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 33, frame34, 34, frame35, 35, frame36, 36, frame37, 37, frame38, 38, frame39, 39, frame40, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 46, frame47, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53, 53, frame54, 54, frame55, 55, frame56, 56, frame57, 57, frame58, 58, frame59, 59, frame60, 60, frame61, 61, frame62, 62, frame63, 63, frame64, 65, frame66, 66, frame67, 67, frame68, 68, frame69, 69, frame70, 70, frame71, 71, frame72, 72, frame73, 73, frame74, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 89, frame90, 90, frame91, 91, frame92, 92, frame93, 93, frame94, 94, frame95, 104, frame105, 105, frame106, 106, frame107, 107, frame108, 108, frame109, 109, frame110, 110, frame111, 111, frame112, 112, frame113, 113, frame114, 114, frame115, 115, frame116, 116, frame117, 117, frame118, 118, frame119, 119, frame120, 120, frame121, 121, frame122, 122, frame123);
}
function frame154(){
stop();
}
function frame70(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame71(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame73(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame75(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame76(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame77(){
if ((((__setPropDict[__id38_] == undefined)) || (!((int(__setPropDict[__id38_]) == 77))))){
__setPropDict[__id38_] = 77;
__setProp___id38__mobj_boss5_hit_76();
};
if ((((__setPropDict[__id37_] == undefined)) || (!((int(__setPropDict[__id37_]) == 77))))){
__setPropDict[__id37_] = 77;
__setProp___id37__mobj_boss5_hit_76();
};
if ((((__setPropDict[__id36_] == undefined)) || (!((int(__setPropDict[__id36_]) == 77))))){
__setPropDict[__id36_] = 77;
__setProp___id36__mobj_boss5_hit_76();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame72(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame74(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame78(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame79(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id46__mobj_boss5_hit_83(){
try {
__id46_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id46_.degree = 0;
__id46_.type = "damage";
__id46_.tempDamage = 10;
__id46_.valuePoint = 0;
try {
__id46_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id31__mobj_boss5_hit_33(){
try {
__id31_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id31_.degree = 0;
__id31_.type = "damage";
__id31_.tempDamage = 70;
__id31_.valuePoint = 0;
try {
__id31_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id32__mobj_boss5_hit2_75(){
try {
__id32_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id32_.degree = 0;
__id32_.type = "damage";
__id32_.tempDamage = 10;
__id32_.valuePoint = 0;
try {
__id32_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame82(){
if ((((__setPropDict[__id42_] == undefined)) || (!((int(__setPropDict[__id42_]) == 82))))){
__setPropDict[__id42_] = 82;
__setProp___id42__mobj_boss5_hit_81();
};
if ((((__setPropDict[__id41_] == undefined)) || (!((int(__setPropDict[__id41_]) == 82))))){
__setPropDict[__id41_] = 82;
__setProp___id41__mobj_boss5_hit_81();
};
if ((((__setPropDict[__id40_] == undefined)) || (!((int(__setPropDict[__id40_]) == 82))))){
__setPropDict[__id40_] = 82;
__setProp___id40__mobj_boss5_hit_81();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id31__mobj_boss5_hit_36(){
try {
__id31_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id31_.degree = 0;
__id31_.type = "damage";
__id31_.tempDamage = 80;
__id31_.valuePoint = 0;
try {
__id31_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame84(){
if ((((__setPropDict[__id46_] == undefined)) || (!((int(__setPropDict[__id46_]) == 84))))){
__setPropDict[__id46_] = 84;
__setProp___id46__mobj_boss5_hit_83();
};
if ((((__setPropDict[__id45_] == undefined)) || (!((int(__setPropDict[__id45_]) == 84))))){
__setPropDict[__id45_] = 84;
__setProp___id45__mobj_boss5_hit_83();
};
if ((((__setPropDict[__id44_] == undefined)) || (!((int(__setPropDict[__id44_]) == 84))))){
__setPropDict[__id44_] = 84;
__setProp___id44__mobj_boss5_hit_83();
};
if ((((__setPropDict[__id43_] == undefined)) || (!((int(__setPropDict[__id43_]) == 84))))){
__setPropDict[__id43_] = 84;
__setProp___id43__mobj_boss5_hit_83();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame85(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id52__mobj_boss5_hit_86(){
try {
__id52_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id52_.degree = 0;
__id52_.type = "damage";
__id52_.tempDamage = 10;
__id52_.valuePoint = 0;
try {
__id52_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame80(){
if ((((__setPropDict[__id39_] == undefined)) || (!((int(__setPropDict[__id39_]) == 80))))){
__setPropDict[__id39_] = 80;
__setProp___id39__mobj_boss5_hit_79();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame81(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id30__mobj_boss5_AoE_0(){
try {
__id30_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id30_.degree = 0;
__id30_.type = "AoE";
__id30_.tempDamage = 10;
__id30_.valuePoint = 0;
try {
__id30_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id34__mobj_boss5_hit2_75(){
try {
__id34_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id34_.degree = 0;
__id34_.type = "damage";
__id34_.tempDamage = 10;
__id34_.valuePoint = 0;
try {
__id34_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame86(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame87(){
if ((((__setPropDict[__id52_] == undefined)) || (!((int(__setPropDict[__id52_]) == 87))))){
__setPropDict[__id52_] = 87;
__setProp___id52__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id51_] == undefined)) || (!((int(__setPropDict[__id51_]) == 87))))){
__setPropDict[__id51_] = 87;
__setProp___id51__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id50_] == undefined)) || (!((int(__setPropDict[__id50_]) == 87))))){
__setPropDict[__id50_] = 87;
__setProp___id50__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id49_] == undefined)) || (!((int(__setPropDict[__id49_]) == 87))))){
__setPropDict[__id49_] = 87;
__setProp___id49__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id48_] == undefined)) || (!((int(__setPropDict[__id48_]) == 87))))){
__setPropDict[__id48_] = 87;
__setProp___id48__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id47_] == undefined)) || (!((int(__setPropDict[__id47_]) == 87))))){
__setPropDict[__id47_] = 87;
__setProp___id47__mobj_boss5_hit_86();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame88(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame89(){
if ((((__setPropDict[__id53_] == undefined)) || (!((int(__setPropDict[__id53_]) == 89))))){
__setPropDict[__id53_] = 89;
__setProp___id53__mobj_boss5_hit_88();
};
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
stop();
}
function frame83(){
if ((((__setPropDict[__id35_] == undefined)) || (!((((int(__setPropDict[__id35_]) >= 76)) && ((int(__setPropDict[__id35_]) <= 89))))))){
__setPropDict[__id35_] = currentFrame;
__setProp___id35__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id34_] == undefined)) || (!((((int(__setPropDict[__id34_]) >= 76)) && ((int(__setPropDict[__id34_]) <= 89))))))){
__setPropDict[__id34_] = currentFrame;
__setProp___id34__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id33_] == undefined)) || (!((((int(__setPropDict[__id33_]) >= 76)) && ((int(__setPropDict[__id33_]) <= 89))))))){
__setPropDict[__id33_] = currentFrame;
__setProp___id33__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id32_] == undefined)) || (!((((int(__setPropDict[__id32_]) >= 76)) && ((int(__setPropDict[__id32_]) <= 89))))))){
__setPropDict[__id32_] = currentFrame;
__setProp___id32__mobj_boss5_hit2_75();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id49__mobj_boss5_hit_86(){
try {
__id49_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id49_.degree = 0;
__id49_.type = "damage";
__id49_.tempDamage = 10;
__id49_.valuePoint = 0;
try {
__id49_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id38__mobj_boss5_hit_76(){
try {
__id38_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id38_.degree = 0;
__id38_.type = "damage";
__id38_.tempDamage = 10;
__id38_.valuePoint = 0;
try {
__id38_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id41__mobj_boss5_hit_81(){
try {
__id41_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id41_.degree = 0;
__id41_.type = "damage";
__id41_.tempDamage = 10;
__id41_.valuePoint = 0;
try {
__id41_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame90(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame91(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame93(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame13(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
gotoAndPlay("stand");
}
function frame18(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame94(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame95(){
if ((((__setPropDict[__id30_] == undefined)) || (!((int(__setPropDict[__id30_]) == 95))))){
__setPropDict[__id30_] = 95;
__setProp___id30__mobj_boss5_AoE_94();
};
}
function frame19(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id44__mobj_boss5_hit_83(){
try {
__id44_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id44_.degree = 0;
__id44_.type = "damage";
__id44_.tempDamage = 10;
__id44_.valuePoint = 0;
try {
__id44_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame1(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id50__mobj_boss5_hit_86(){
try {
__id50_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id50_.degree = 0;
__id50_.type = "damage";
__id50_.tempDamage = 10;
__id50_.valuePoint = 0;
try {
__id50_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame10(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame23(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame105(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame27(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame29(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame109(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function __setProp___id47__mobj_boss5_hit_86(){
try {
__id47_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id47_.degree = 0;
__id47_.type = "damage";
__id47_.tempDamage = 10;
__id47_.valuePoint = 0;
try {
__id47_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id36__mobj_boss5_hit_76(){
try {
__id36_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id36_.degree = 0;
__id36_.type = "damage";
__id36_.tempDamage = 10;
__id36_.valuePoint = 0;
try {
__id36_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame106(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame107(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function __setProp___id53__mobj_boss5_hit_88(){
try {
__id53_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id53_.degree = 0;
__id53_.type = "damage";
__id53_.tempDamage = 10;
__id53_.valuePoint = 0;
try {
__id53_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame116(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame31(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame33(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
gotoAndPlay("walk");
}
function frame35(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 34)) && ((int(__setPropDict[__id31_]) <= 36))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_33();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame36(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 34)) && ((int(__setPropDict[__id31_]) <= 36))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_33();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame30(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame32(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame112(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame34(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 34)) && ((int(__setPropDict[__id31_]) <= 36))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_33();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame115(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame37(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame38(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame39(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame110(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame111(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function __setProp___id42__mobj_boss5_hit_81(){
try {
__id42_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id42_.degree = 0;
__id42_.type = "damage";
__id42_.tempDamage = 10;
__id42_.valuePoint = 0;
try {
__id42_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame117(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame118(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame119(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame108(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame113(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function __setProp___id35__mobj_boss5_hit2_75(){
try {
__id35_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id35_.degree = 0;
__id35_.type = "damage";
__id35_.tempDamage = 10;
__id35_.valuePoint = 0;
try {
__id35_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame41(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame42(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame43(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame124(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
stop();
}
function __setProp___id39__mobj_boss5_hit_79(){
try {
__id39_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id39_.degree = 0;
__id39_.type = "damage";
__id39_.tempDamage = 10;
__id39_.valuePoint = 0;
try {
__id39_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame46(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame40(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame48(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
stop();
}
function frame49(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame122(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame44(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id54__mobj_boss5_AoE_104(){
try {
__id54_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id54_.degree = 0;
__id54_.type = "AoE";
__id54_.tempDamage = 10;
__id54_.valuePoint = 0;
try {
__id54_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame47(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame92(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame120(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame121(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function __setProp___id45__mobj_boss5_hit_83(){
try {
__id45_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id45_.degree = 0;
__id45_.type = "damage";
__id45_.tempDamage = 10;
__id45_.valuePoint = 0;
try {
__id45_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame114(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame50(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id33__mobj_boss5_hit2_75(){
try {
__id33_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id33_.degree = 0;
__id33_.type = "damage";
__id33_.tempDamage = 10;
__id33_.valuePoint = 0;
try {
__id33_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame53(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame55(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame56(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame57(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame52(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame123(){
if ((((__setPropDict[__id54_] == undefined)) || (!((((int(__setPropDict[__id54_]) >= 105)) && ((int(__setPropDict[__id54_]) <= 124))))))){
__setPropDict[__id54_] = currentFrame;
__setProp___id54__mobj_boss5_AoE_104();
};
}
function frame54(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id51__mobj_boss5_hit_86(){
try {
__id51_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id51_.degree = 0;
__id51_.type = "damage";
__id51_.tempDamage = 10;
__id51_.valuePoint = 0;
try {
__id51_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame58(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame51(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame45(){
if ((((__setPropDict[__id31_] == undefined)) || (!((((int(__setPropDict[__id31_]) >= 37)) && ((int(__setPropDict[__id31_]) <= 47))))))){
__setPropDict[__id31_] = currentFrame;
__setProp___id31__mobj_boss5_hit_36();
};
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id30__mobj_boss5_AoE_94(){
try {
__id30_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id30_.degree = 0;
__id30_.type = "AoE";
__id30_.damage = 10;
__id30_.valuePoint = 0;
try {
__id30_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id40__mobj_boss5_hit_81(){
try {
__id40_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id40_.degree = 0;
__id40_.type = "damage";
__id40_.tempDamage = 10;
__id40_.valuePoint = 0;
try {
__id40_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame262(){
MovieClip(parent).removeChild(this);
stop();
}
function __setProp___id48__mobj_boss5_hit_86(){
try {
__id48_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id48_.degree = 0;
__id48_.type = "damage";
__id48_.tempDamage = 10;
__id48_.valuePoint = 0;
try {
__id48_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame134(){
stop();
}
function frame61(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame59(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame63(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame144(){
stop();
}
function frame65(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
stop();
}
function __setProp___id37__mobj_boss5_hit_76(){
try {
__id37_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id37_.degree = 0;
__id37_.type = "damage";
__id37_.tempDamage = 10;
__id37_.valuePoint = 0;
try {
__id37_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame60(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame68(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame62(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame64(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame66(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame67(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function frame69(){
if ((((__setPropDict[__id30_] == undefined)) || (!((((int(__setPropDict[__id30_]) >= 1)) && ((int(__setPropDict[__id30_]) <= 94))))))){
__setPropDict[__id30_] = currentFrame;
__setProp___id30__mobj_boss5_AoE_0();
};
}
function __setProp___id43__mobj_boss5_hit_83(){
try {
__id43_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id43_.degree = 0;
__id43_.type = "damage";
__id43_.tempDamage = 10;
__id43_.valuePoint = 0;
try {
__id43_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
}
}//package
Section 208
//mobj_hero (mobj_hero)
package {
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import flash.geom.*;
import abstract.*;
import flash.utils.*;
import flash.media.*;
import flash.text.*;
import flash.net.*;
import adobe.utils.*;
import flash.accessibility.*;
import flash.errors.*;
import flash.external.*;
import flash.filters.*;
import flash.printing.*;
import flash.profiler.*;
import flash.sampler.*;
import flash.system.*;
import flash.ui.*;
import flash.xml.*;
public dynamic class mobj_hero extends BaseHero {
public var __setPropDict:Dictionary;
public var __id0_:Hitchild;
public var __id1_:Hitchild;
public var __id2_:Hitchild;
public var __id3_:Hitchild;
public var __id4_:Hitchild;
public var __id5_:Hitchild;
public var __id6_:Hitchild;
public var __id7_:Hitchild;
public var __id10_:Hitchild;
public var __id8_:Hitchild;
public var __id11_:Hitchild;
public var __id9_:Hitchild;
public var __id12_:Hitchild;
public var __id13_:Hitchild;
public function mobj_hero(){
__setPropDict = new Dictionary(true);
super();
addFrameScript(0, frame1, 11, frame12, 21, frame22, 33, frame34, 37, frame38, 46, frame47, 56, frame57, 70, frame71, 120, frame121, 131, frame132, 152, frame153, 160, frame161, 164, frame165, 171, frame172, 177, frame178, 184, frame185, 192, frame193, 200, frame201, 206, frame207, 231, frame232, 241, frame242, 1, frame2, 2, frame3, 3, frame4, 4, frame5, 5, frame6, 6, frame7, 7, frame8, 8, frame9, 9, frame10, 10, frame11, 12, frame13, 13, frame14, 14, frame15, 15, frame16, 16, frame17, 17, frame18, 18, frame19, 19, frame20, 20, frame21, 22, frame23, 23, frame24, 24, frame25, 25, frame26, 26, frame27, 27, frame28, 28, frame29, 29, frame30, 30, frame31, 31, frame32, 32, frame33, 34, frame35, 35, frame36, 36, frame37, 40, frame41, 41, frame42, 42, frame43, 43, frame44, 44, frame45, 45, frame46, 47, frame48, 48, frame49, 49, frame50, 50, frame51, 51, frame52, 52, frame53, 53, frame54, 54, frame55, 55, frame56, 57, frame58, 58, frame59, 59, frame60, 60, frame61, 61, frame62, 62, frame63, 63, frame64, 64, frame65, 65, frame66, 66, frame67, 67, frame68, 68, frame69, 69, frame70, 71, frame72, 72, frame73, 73, frame74, 74, frame75, 75, frame76, 76, frame77, 77, frame78, 78, frame79, 79, frame80, 80, frame81, 81, frame82, 82, frame83, 83, frame84, 84, frame85, 85, frame86, 86, frame87, 87, frame88, 88, frame89, 89, frame90, 90, frame91, 91, frame92, 92, frame93, 93, frame94, 94, frame95, 95, frame96, 96, frame97, 97, frame98, 98, frame99, 99, frame100, 100, frame101, 101, frame102, 102, frame103, 103, frame104, 104, frame105, 105, frame106, 106, frame107, 107, frame108, 108, frame109, 109, frame110, 110, frame111, 111, frame112, 112, frame113, 113, frame114, 114, frame115, 115, frame116, 116, frame117, 117, frame118, 118, frame119, 119, frame120, 121, frame122, 122, frame123, 123, frame124, 124, frame125, 125, frame126, 126, frame127, 127, frame128, 128, frame129, 129, frame130, 130, frame131, 132, frame133, 133, frame134, 134, frame135, 135, frame136, 136, frame137, 137, frame138, 138, frame139, 139, frame140, 140, frame141, 141, frame142, 142, frame143, 143, frame144, 144, frame145, 145, frame146, 146, frame147, 147, frame148, 148, frame149, 149, frame150, 150, frame151, 151, frame152, 153, frame154, 154, frame155, 155, frame156, 156, frame157, 157, frame158, 158, frame159, 159, frame160, 165, frame166, 166, frame167, 167, frame168, 168, frame169, 169, frame170, 170, frame171, 172, frame173, 173, frame174, 174, frame175, 175, frame176, 176, frame177, 178, frame179, 179, frame180, 180, frame181, 181, frame182, 182, frame183, 183, frame184, 185, frame186, 186, frame187, 187, frame188, 188, frame189, 189, frame190, 190, frame191, 191, frame192, 193, frame194, 194, frame195, 195, frame196, 196, frame197, 197, frame198, 198, frame199, 199, frame200, 201, frame202, 202, frame203, 203, frame204, 204, frame205, 205, frame206, 232, frame233, 233, frame234, 234, frame235, 235, frame236, 236, frame237, 237, frame238, 238, frame239, 239, frame240, 240, frame241);
}
function frame151(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame152(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame153(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame154(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame155(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame156(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame157(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame158(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame159(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame160(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame161(){
if ((((__setPropDict[hit_RisngSun] == undefined)) || (!((((int(__setPropDict[hit_RisngSun]) >= 154)) && ((int(__setPropDict[hit_RisngSun]) <= 161))))))){
__setPropDict[hit_RisngSun] = currentFrame;
__setProp_hit_RisngSun_mobj_hero_hitobj_153();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame165(){
stop();
}
function frame166(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function frame167(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function frame168(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function frame169(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function __setProp___id7__mobj_hero_hitobj_57(){
try {
__id7_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id7_.degree = 45;
__id7_.type = "damage";
__id7_.tempDamage = 0;
__id7_.valuePoint = 1;
try {
__id7_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id1__mobj_hero_hitobj_34(){
try {
__id1_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id1_.degree = 45;
__id1_.type = "damage";
__id1_.tempDamage = 10;
__id1_.valuePoint = 0;
try {
__id1_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id3__mobj_hero_AoE_71(){
try {
__id3_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id3_.degree = 0;
__id3_.type = "AoE";
__id3_.tempDamage = 10;
__id3_.valuePoint = 0;
try {
__id3_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id10__mobj_hero_hitobj_124(){
try {
__id10_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id10_.degree = 45;
__id10_.type = "damage";
__id10_.tempDamage = 80;
__id10_.valuePoint = 0;
try {
__id10_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame170(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function frame171(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
}
function frame172(){
if ((((__setPropDict[__id11_] == undefined)) || (!((((int(__setPropDict[__id11_]) >= 166)) && ((int(__setPropDict[__id11_]) <= 172))))))){
__setPropDict[__id11_] = currentFrame;
__setProp___id11__mobj_hero_hitobj_165();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame173(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame174(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame175(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame176(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame177(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame178(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
stop();
}
function frame179(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame10(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame11(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function __setProp___id4__mobj_hero_hitobj_57(){
try {
__id4_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id4_.degree = 45;
__id4_.type = "damage";
__id4_.tempDamage = 0;
__id4_.valuePoint = 1;
try {
__id4_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame13(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame14(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame15(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame16(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame17(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame18(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame12(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
this.gotoAndPlay("stand");
}
function frame19(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame181(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame182(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame183(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame184(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame185(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
stop();
}
function frame186(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame180(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame1(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame2(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame3(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame4(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame5(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame6(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame20(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame9(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame22(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
stop();
}
function frame23(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame24(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame25(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame26(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame27(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame28(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame29(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame7(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame8(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame21(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame188(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame189(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame193(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
stop();
}
function frame194(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame195(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame196(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame190(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame191(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame192(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame187(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame31(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame32(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function __setProp___id4__mobj_hero_hitobj_71(){
try {
__id4_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id4_.degree = 45;
__id4_.type = "damage";
__id4_.damage = 10;
__id4_.valuePoint = 0;
try {
__id4_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame34(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
this.gotoAndPlay("walk");
}
function frame35(){
if ((((__setPropDict[__id1_] == undefined)) || (!((((int(__setPropDict[__id1_]) >= 35)) && ((int(__setPropDict[__id1_]) <= 38))))))){
__setPropDict[__id1_] = currentFrame;
__setProp___id1__mobj_hero_hitobj_34();
};
}
function frame36(){
if ((((__setPropDict[__id1_] == undefined)) || (!((((int(__setPropDict[__id1_]) >= 35)) && ((int(__setPropDict[__id1_]) <= 38))))))){
__setPropDict[__id1_] = currentFrame;
__setProp___id1__mobj_hero_hitobj_34();
};
}
function frame30(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame38(){
if ((((__setPropDict[__id1_] == undefined)) || (!((((int(__setPropDict[__id1_]) >= 35)) && ((int(__setPropDict[__id1_]) <= 38))))))){
__setPropDict[__id1_] = currentFrame;
__setProp___id1__mobj_hero_hitobj_34();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame199(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame33(){
if ((((__setPropDict[__id0_] == undefined)) || (!((((int(__setPropDict[__id0_]) >= 1)) && ((int(__setPropDict[__id0_]) <= 34))))))){
__setPropDict[__id0_] = currentFrame;
__setProp___id0__mobj_hero_AoE_0();
};
}
function frame37(){
if ((((__setPropDict[__id1_] == undefined)) || (!((((int(__setPropDict[__id1_]) >= 35)) && ((int(__setPropDict[__id1_]) <= 38))))))){
__setPropDict[__id1_] = currentFrame;
__setProp___id1__mobj_hero_hitobj_34();
};
}
function frame197(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame198(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame41(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame42(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame43(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame44(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame45(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame46(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame47(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 41)) && ((int(__setPropDict[__id3_]) <= 47))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_40();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
stop();
this.gotoAndPlay("sitdown");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame48(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame49(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame51(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function __setProp___id8__mobj_hero_hitobj_57(){
try {
__id8_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id8_.degree = 45;
__id8_.type = "damage";
__id8_.tempDamage = 10;
__id8_.valuePoint = 0;
try {
__id8_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame53(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame54(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame55(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame56(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame57(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame58(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame52(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame50(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 41)) && ((int(__setPropDict[__id2_]) <= 57))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_40();
};
}
function frame59(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function __setProp___id13__mobj_hero_AoE_232(){
try {
__id13_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id13_.degree = 0;
__id13_.type = "AoE";
__id13_.tempDamage = 0;
__id13_.valuePoint = 0;
try {
__id13_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame60(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame61(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame62(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function __setProp___id2__mobj_hero_hitobj_40(){
try {
__id2_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id2_.degree = 45;
__id2_.type = "damage";
__id2_.tempDamage = 10;
__id2_.valuePoint = 0;
try {
__id2_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame64(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame65(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function __setProp___id5__mobj_hero_hitobj_57(){
try {
__id5_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id5_.degree = 45;
__id5_.type = "damage";
__id5_.tempDamage = 0;
__id5_.valuePoint = 0;
try {
__id5_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame67(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame68(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame69(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame63(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame66(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function frame71(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame72(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame73(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame74(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame75(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame76(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function __setProp___id5__mobj_hero_hitobj_100(){
try {
__id5_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id5_.degree = 45;
__id5_.type = "damage";
__id5_.tempDamage = 10;
__id5_.valuePoint = 0;
try {
__id5_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame78(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame79(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function __setProp___id2__mobj_hero_hitobj_57(){
try {
__id2_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id2_.degree = 45;
__id2_.type = "damage";
try {
__id2_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame77(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame70(){
if ((((__setPropDict[__id9_] == undefined)) || (!((((int(__setPropDict[__id9_]) >= 58)) && ((int(__setPropDict[__id9_]) <= 71))))))){
__setPropDict[__id9_] = currentFrame;
__setProp___id9__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id8_] == undefined)) || (!((((int(__setPropDict[__id8_]) >= 58)) && ((int(__setPropDict[__id8_]) <= 71))))))){
__setPropDict[__id8_] = currentFrame;
__setProp___id8__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id7_] == undefined)) || (!((((int(__setPropDict[__id7_]) >= 58)) && ((int(__setPropDict[__id7_]) <= 71))))))){
__setPropDict[__id7_] = currentFrame;
__setProp___id7__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 58)) && ((int(__setPropDict[__id6_]) <= 71))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 58)) && ((int(__setPropDict[__id5_]) <= 71))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 58)) && ((int(__setPropDict[__id4_]) <= 71))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_57();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 48)) && ((int(__setPropDict[__id3_]) <= 71))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_47();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 58)) && ((int(__setPropDict[__id2_]) <= 71))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_57();
};
}
function __setProp___id5__mobj_hero_hitobj_71(){
try {
__id5_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id5_.degree = 45;
__id5_.type = "damage";
__id5_.damage = 10;
__id5_.valuePoint = 0;
try {
__id5_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame201(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
stop();
}
function frame82(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame83(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame84(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame85(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame86(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame207(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
stop();
}
function frame81(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame89(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame203(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame204(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame205(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame206(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame87(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame80(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame202(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function frame88(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame200(){
if ((((__setPropDict[__id12_] == undefined)) || (!((((int(__setPropDict[__id12_]) >= 173)) && ((int(__setPropDict[__id12_]) <= 207))))))){
__setPropDict[__id12_] = currentFrame;
__setProp___id12__mobj_hero_AoE_172();
};
}
function __setProp___id12__mobj_hero_AoE_172(){
try {
__id12_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id12_.degree = 0;
__id12_.type = "AoE";
__id12_.tempDamage = 50;
__id12_.valuePoint = 0;
try {
__id12_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame92(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame93(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function __setProp___id2__mobj_hero_hitobj_71(){
try {
__id2_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id2_.degree = 45;
__id2_.type = "damage";
__id2_.damage = 10;
__id2_.valuePoint = 0;
try {
__id2_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame95(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame96(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame90(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame91(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame99(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame94(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame97(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame98(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame101(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function __setProp_hit_RisngSun_mobj_hero_hitobj_153(){
try {
hit_RisngSun["componentInspectorSetting"] = true;
} catch(e:Error) {
};
hit_RisngSun.degree = 45;
hit_RisngSun.type = "damage";
hit_RisngSun.tempDamage = 5;
hit_RisngSun.valuePoint = 0;
try {
hit_RisngSun["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame103(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame104(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function __setProp___id9__mobj_hero_hitobj_57(){
try {
__id9_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id9_.degree = 45;
__id9_.type = "damage";
__id9_.tempDamage = 0;
__id9_.valuePoint = 0;
try {
__id9_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame106(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame100(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 72)) && ((int(__setPropDict[__id5_]) <= 100))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame108(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame102(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame105(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame107(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame109(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame232(){
stop();
}
function frame112(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame113(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame114(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame115(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame116(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame110(){
if ((((__setPropDict[__id6_] == undefined)) || (!((((int(__setPropDict[__id6_]) >= 72)) && ((int(__setPropDict[__id6_]) <= 110))))))){
__setPropDict[__id6_] = currentFrame;
__setProp___id6__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id5_] == undefined)) || (!((((int(__setPropDict[__id5_]) >= 101)) && ((int(__setPropDict[__id5_]) <= 110))))))){
__setPropDict[__id5_] = currentFrame;
__setProp___id5__mobj_hero_hitobj_100();
};
if ((((__setPropDict[__id4_] == undefined)) || (!((((int(__setPropDict[__id4_]) >= 72)) && ((int(__setPropDict[__id4_]) <= 110))))))){
__setPropDict[__id4_] = currentFrame;
__setProp___id4__mobj_hero_hitobj_71();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
if ((((__setPropDict[__id2_] == undefined)) || (!((((int(__setPropDict[__id2_]) >= 72)) && ((int(__setPropDict[__id2_]) <= 110))))))){
__setPropDict[__id2_] = currentFrame;
__setProp___id2__mobj_hero_hitobj_71();
};
}
function frame111(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function __setProp___id6__mobj_hero_hitobj_57(){
try {
__id6_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id6_.degree = 45;
__id6_.type = "damage";
__id6_.tempDamage = 0;
__id6_.valuePoint = 0;
try {
__id6_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame234(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame236(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame237(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame117(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame118(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame119(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame233(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame235(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function __setProp___id3__mobj_hero_AoE_120(){
try {
__id3_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id3_.degree = 0;
__id3_.type = "AoE";
__id3_.damage = 10;
__id3_.valuePoint = 0;
try {
__id3_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id3__mobj_hero_AoE_121(){
try {
__id3_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id3_.degree = 0;
__id3_.type = "AoE";
__id3_.tempDamage = 50;
__id3_.valuePoint = 0;
try {
__id3_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame240(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame121(){
if ((((__setPropDict[__id3_] == undefined)) || (!((int(__setPropDict[__id3_]) == 121))))){
__setPropDict[__id3_] = 121;
__setProp___id3__mobj_hero_AoE_120();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function frame122(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame123(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame124(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame125(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame126(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame120(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 72)) && ((int(__setPropDict[__id3_]) <= 120))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_71();
};
}
function frame242(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
stop();
}
function frame129(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame238(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame239(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function frame127(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame128(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame241(){
if ((((__setPropDict[__id13_] == undefined)) || (!((((int(__setPropDict[__id13_]) >= 233)) && ((int(__setPropDict[__id13_]) <= 242))))))){
__setPropDict[__id13_] = currentFrame;
__setProp___id13__mobj_hero_AoE_232();
};
}
function __setProp___id0__mobj_hero_AoE_0(){
try {
__id0_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id0_.degree = 0;
__id0_.type = "AoE";
__id0_.tempDamage = 0;
__id0_.valuePoint = 0;
try {
__id0_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame130(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame131(){
if ((((__setPropDict[__id10_] == undefined)) || (!((((int(__setPropDict[__id10_]) >= 125)) && ((int(__setPropDict[__id10_]) <= 131))))))){
__setPropDict[__id10_] = currentFrame;
__setProp___id10__mobj_hero_hitobj_124();
};
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame132(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
stop();
this.gotoAndPlay("stand");
if (this.parent != null){
dispatchEvent(new GameEvent(GameEvent.SUCCESS, this.currentLabel));
};
}
function __setProp___id6__mobj_hero_hitobj_71(){
try {
__id6_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id6_.degree = 45;
__id6_.type = "damage";
__id6_.damage = 10;
__id6_.valuePoint = 0;
try {
__id6_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame134(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame135(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame136(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame137(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame138(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame139(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame133(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function __setProp___id3__mobj_hero_AoE_40(){
try {
__id3_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id3_.degree = 0;
__id3_.type = "AoE";
__id3_.tempDamage = 10;
__id3_.valuePoint = 0;
try {
__id3_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function __setProp___id3__mobj_hero_AoE_47(){
try {
__id3_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id3_.degree = 0;
__id3_.type = "AoE";
__id3_.damage = 10;
__id3_.valuePoint = 0;
try {
__id3_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame140(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame141(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame142(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame143(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame144(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame145(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame146(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame147(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame148(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function frame149(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
function __setProp___id11__mobj_hero_hitobj_165(){
try {
__id11_["componentInspectorSetting"] = true;
} catch(e:Error) {
};
__id11_.degree = 45;
__id11_.type = "damage";
__id11_.tempDamage = 20;
__id11_.valuePoint = 0;
try {
__id11_["componentInspectorSetting"] = false;
} catch(e:Error) {
};
}
function frame150(){
if ((((__setPropDict[__id3_] == undefined)) || (!((((int(__setPropDict[__id3_]) >= 122)) && ((int(__setPropDict[__id3_]) <= 161))))))){
__setPropDict[__id3_] = currentFrame;
__setProp___id3__mobj_hero_AoE_121();
};
}
}
}//package
Section 209
//muigameOver (muigameOver)
package {
import flash.display.*;
public dynamic class muigameOver extends MovieClip {
public function muigameOver(){
addFrameScript(17, frame18);
}
function frame18(){
stop();
}
}
}//package
Section 210
//newgrounds_biosee (newgrounds_biosee)
package {
import flash.media.*;
public dynamic class newgrounds_biosee extends Sound {
}
}//package
Section 211
//newgrounds_tenchu (newgrounds_tenchu)
package {
import flash.media.*;
public dynamic class newgrounds_tenchu extends Sound {
}
}//package
Section 212
//newgroundsmm3bo (newgroundsmm3bo)
package {
import flash.media.*;
public dynamic class newgroundsmm3bo extends Sound {
}
}//package
Section 213
//numberHit (numberHit)
package {
import flash.display.*;
public dynamic class numberHit extends MovieClip {
}
}//package
Section 214
//Puached (Puached)
package {
import flash.media.*;
public dynamic class Puached extends Sound {
}
}//package
Section 215
//SceneManager (SceneManager)
package {
import abstract.enemy.minor.*;
import flash.display.*;
import xinnix.event.*;
import flash.events.*;
import object.*;
import xinnix.utils.*;
import worldmap.*;
import flash.geom.*;
import state.*;
import ai.*;
import flash.utils.*;
import sceneControl.*;
public class SceneManager extends EventDispatcher {
public var aiBox:Array;
public var inputList:Array;
public var heroControl:HeroController;
public var scene:MovieClip;
public var factory:GameFactory;
public var world:BaseWorld;
public var randomWeight:RandomWeight;
public var camera:Camera;
public var uiControl:UIcontrol;
public var enemyModelList:Array;
public var state1:String;// = "state1"
public var state2:String;// = "state2"
public var isPuase:Boolean;// = false
public var state3:String;// = "state3"
public var counterEnd:Number;// = 0
public var heroModel:HeroModel;
public var optionItemRealease:Number;// = 1
public var heroView:HeroView;
public var stateCase:String;// = ""
public var lasttime:Number;// = 0
public var rangOfItemDrop:Number;// = 10
public var _processList:Array;
public var scenecon:BaseScene;
public var hero:MovieClip;
public function SceneManager(_arg1:MovieClip){
aiBox = new Array();
_processList = new Array();
inputList = new Array();
enemyModelList = new Array();
super();
this.scene = _arg1;
this.factory = new GameFactory();
var _local2:Class = (getDefinitionByName(("sceneControl.Scene" + Environment.data.level)) as Class);
scenecon = new _local2(this);
initItem();
stateCase = state1;
scenecon.addEventListener(GameEvent.ENDSCENE, onEndScene);
uiControl = new mc_ui();
}
public function createPlayer():void{
var _local1:* = factory.cCharacter(Enum.hero);
hero = _local1["mc"];
(hero.name == "hero");
heroModel = _local1["model"];
heroControl = _local1["control"];
heroView = _local1["view"];
world.heroLayer.addChild(hero);
processList.push(heroControl);
inputList.push(heroControl);
heroModel.addEventListener(GameEvent.CHANG_UI, onUIhandle);
}
public function init():void{
createWorld();
createPlayer();
cameraSetup();
createEnvironment();
scene.addChild(uiControl);
scene.addChild(new help());
uiControl.updateScore();
}
public function dispose():void{
}
public function sceneClear():void{
processList = new Array();
inputList = new Array();
enemyModelList = new Array();
while (scene.numChildren != 0) {
delete ??getglobalscope
[this.scene.removeChildAt(0)];
};
}
public function onUIhandle(_arg1:GameEvent):void{
}
public function keyUpHandeler(_arg1:Number):void{
var _local2:* = 0;
while (_local2 < inputList.length) {
if (inputList[_local2].keyRelease != undefined){
inputList[_local2].keyRelease(_arg1);
};
_local2++;
};
if (_arg1 == KeyboardCode.B6){
};
if (_arg1 == KeyboardCode.B7){
};
}
public function notifyProceed(_arg1:String){
var _local2:*;
if (Enum.proc_hurt_enemy){
if (Environment.data.combo > 150){
Environment.data.combo = 0;
};
_local2 = 0;
_local2 = (Environment.data.combo + 1);
Environment.data.combo++;
Environment.data.uiControl.setCombo(_local2);
Environment.data.lastTimeCombo = Environment.data.time;
Environment.data.score = (Environment.data.score + Math.floor((Environment.data.combo / 2)));
Environment.data.uiControl.updateScore();
if ((Environment.data.combo % 5) == 0){
Environment.data.mpHero = (Environment.data.mpHero + (2 + (Environment.data.combo / 1.5)));
};
Environment.data.uiControl.updateMp();
} else {
if (Enum.proc_hurt_enemy2){
if (Environment.data.combo > 150){
Environment.data.combo = 0;
};
_local2 = 0;
_local2 = (Environment.data.combo + 1);
Environment.data.combo++;
Environment.data.uiControl.setCombo(_local2);
Environment.data.lastTimeCombo = Environment.data.time;
Environment.data.score = (Environment.data.score + Math.floor((Environment.data.combo / 2)));
Environment.data.uiControl.updateScore();
};
};
}
public function get processList():Array{
return (_processList);
}
public function play():void{
isPuase = false;
}
public function initItem():void{
randomWeight = new RandomWeight();
randomWeight.add(Enum.item_hp1, 50);
randomWeight.add(Enum.item_hp2, 20);
randomWeight.add(Enum.item_hp3, 30);
randomWeight.add(Enum.item_mp1, 50);
randomWeight.add(Enum.item_attackUP, 10);
randomWeight.add(Enum.item_agiUP, 10);
randomWeight.add(Enum.item_score, 20);
randomWeight.refesh();
}
public function keyDownHandeler(_arg1:Number):void{
var _local2:*;
if (!isPuase){
_local2 = 0;
while (_local2 < inputList.length) {
if (inputList[_local2].keyPress != undefined){
inputList[_local2].keyPress(_arg1);
};
_local2++;
};
};
if ((((((_arg1 == KeyboardCode.SpaceBar)) && (!((scenecon.sceneState == scenecon.initState))))) && (!((scenecon.sceneState == scenecon.state1))))){
Environment.data.uiControl.toggleActionList();
};
if (_arg1 == KeyboardCode.B2){
};
if (_arg1 == KeyboardCode.B3){
};
if (_arg1 == KeyboardCode.B4){
};
}
public function puase():void{
isPuase = true;
}
public function cameraSetup():void{
camera = new Camera(hero, world);
processList.push(camera);
}
public function set processList(_arg1:Array):void{
_processList = _arg1;
}
public function process():void{
var _local1:Object;
var _local2:Object;
var _local3:*;
var _local4:*;
if (!isPuase){
for each (_local1 in processList) {
_local2 = _local1;
_local2.update();
if (_local2.isKill != undefined){
if (_local2.isKill()){
if (_local2.kill != undefined){
_local2.kill();
};
_local3 = processList.indexOf(_local2);
delete ??getglobalscope
[processList.splice(_local3, 1)];
};
};
};
if ((((Math.abs((Environment.data.world.scaleX - 1)) > 5E-5)) && ((((Environment.data.heroModel.currentState is StandState)) || ((Environment.data.heroModel.currentState is WalkState)))))){
if (Environment.data.world.scaleX < 1){
Environment.data.camera.zoomIn();
} else {
Environment.data.camera.zoomOut();
};
};
Environment.data.mpHero = (Environment.data.mpHero + 0.5);
Environment.data.uiControl.updateMp();
};
if (Environment.data.hpHero <= 0){
switch (stateCase){
case state1:
_local4 = new muigameOver();
_local4.x = (700 / 2);
_local4.y = (480 / 2);
scene.addChild(_local4);
stateCase = state2;
break;
case state2:
counterEnd++;
if (counterEnd > 80){
dispatchEvent(new GameEvent(GameEvent.DEAD, ""));
};
break;
};
};
scenecon.update();
}
public function onEndScene(_arg1:GameEvent):void{
dispatchEvent(new GameEvent(GameEvent.ENDSCENE, ""));
}
public function createEnemy():void{
var _local1:*;
var _local2:*;
var _local3:MovieClip;
var _local4:BaseMinorModel;
var _local5:*;
var _local6:*;
var _local7:AInumberOne;
_local1 = 0;
while (_local1 < 1) {
_local2 = getDefinitionByName("m_object_maid_A4");
_local3 = new (_local2);
_local4 = new BaseMinorModel();
_local3.numOfDevRotation = 3;
_local4.mass = 14;
_local5 = new BaseMinorController(_local4);
_local6 = new BaseMinorView(_local4, _local5, _local3);
_local7 = new AInumberOne(500, _local5, _local4);
processList.push(_local7);
world.enemyLayer.addChild(_local3);
_local1++;
};
_local1 = 0;
while (_local1 < 1) {
_local3 = new m_object_guard_A();
_local4 = new BaseMinorModel();
_local3.numOfDevRotation = 3;
_local4.mass = 14;
_local5 = new BaseMinorController(_local4);
_local6 = new BaseMinorView(_local4, _local5, _local3);
_local7 = new AInumberOne(500, _local5, _local4);
processList.push(_local7);
world.enemyLayer.addChild(_local3);
_local1++;
};
_local1 = 0;
while (_local1 < 1) {
_local2 = getDefinitionByName("m_object_guard_B");
_local3 = new (_local2);
_local4 = new BaseMinorModel();
_local3.numOfDevRotation = 3;
_local4.mass = 14;
_local5 = new BaseMinorController(_local4);
_local6 = new BaseMinorView(_local4, _local5, _local3);
_local7 = new AInumberOne(500, _local5, _local4);
processList.push(_local7);
world.enemyLayer.addChild(_local3);
_local1++;
};
_local1 = 0;
while (_local1 < 1) {
_local2 = getDefinitionByName("m_object_office_girl_A");
_local3 = new (_local2);
_local4 = new BaseMinorModel();
_local3.numOfDevRotation = 3;
_local4.mass = 14;
_local5 = new BaseMinorController(_local4);
_local6 = new BaseMinorView(_local4, _local5, _local3);
_local7 = new AInumberOne(500, _local5, _local4);
processList.push(_local7);
world.enemyLayer.addChild(_local3);
_local1++;
};
_local1 = 0;
while (_local1 < 3) {
_local3 = new m_object_office_boy_A();
_local4 = new BaseMinorModel();
_local5 = new BaseMinorController(_local4);
_local6 = new BaseMinorView(_local4, _local5, _local3);
_local7 = new AInumberOne(500, _local5, _local4);
processList.push(_local7);
world.enemyLayer.addChild(_local3);
_local1++;
};
}
public function createEnvironment():void{
Environment.data.gameHeight = 480;
Environment.data.gameWidth = 700;
Environment.data.setWorld(world);
Environment.data.setHeroModel(heroModel);
Environment.data.setHeroController(heroControl);
Environment.data.setCamera(camera);
Environment.data.setUIControl(uiControl);
Environment.data.setSceneManager(this);
}
public function itemRealease(_arg1:Point, _arg2:Boolean=true, _arg3:Number=0){
var _local6:Object;
var _local4:Number = Random.next(1, rangOfItemDrop);
var _local5 = "";
_local5 = randomWeight.next().toString();
if (_local4 < 5){
_local6 = factory.cItem(Enum.item_hp1);
switch (_local5){
case Enum.item_hp1:
_local6 = factory.cItem(Enum.item_hp1);
break;
case Enum.item_hp2:
_local6 = factory.cItem(Enum.item_hp2);
break;
case Enum.item_hp3:
_local6 = factory.cItem(Enum.item_hp3);
break;
case Enum.item_mp1:
_local6 = factory.cItem(Enum.item_mp1);
break;
case Enum.item_attackUP:
_local6 = factory.cItem(Enum.item_attackUP);
break;
case Enum.item_agiUP:
_local6 = factory.cItem(Enum.item_agiUP);
break;
case Enum.item_score:
_local6 = factory.cItem(Enum.item_score);
break;
};
_local6.mc.x = _arg1.x;
_local6.mc.y = _arg1.y;
if (!_arg2){
_local6.mc.dropLeft();
};
Environment.data.sceneManager.processList.push(_local6.mc);
Environment.data.world.itemLayer.addChild(_local6.mc);
};
}
public function addMonster(_arg1:String, _arg2:Number, _arg3:Number):void{
var _local4:* = getDefinitionByName(_arg1);
var _local5:MovieClip = new (_local4);
var _local6:BaseMinorModel = new BaseMinorModel();
_local6.hp = _arg3;
_local5.numOfDevRotation = 3;
_local6.mass = 14;
_local5.scaleX = _arg2;
_local5.scaleY = _arg2;
_local6.scaleX = _arg2;
_local6.scaleY = _arg2;
var _local7:* = new BaseMinorController(_local6);
var _local8:* = new BaseMinorView(_local6, _local7, _local5);
var _local9:AInumberOne = new AInumberOne(500, _local7, _local6);
processList.push(_local9);
world.enemyLayer.addChild(_local5);
}
public function createWorld():void{
var _local1:* = getDefinitionByName(("World" + Environment.data.level));
world = new (_local1);
this.scene.addChild(world);
processList.push(world);
}
}
}//package
Section 216
//spr_bg3_prop2 (spr_bg3_prop2)
package {
import flash.display.*;
public dynamic class spr_bg3_prop2 extends MovieClip {
}
}//package
Section 217
//spr_bg3_prop7 (spr_bg3_prop7)
package {
import flash.display.*;
public dynamic class spr_bg3_prop7 extends MovieClip {
public function spr_bg3_prop7(){
addFrameScript(0, frame1);
}
function frame1(){
stop();
}
}
}//package
Section 218
//ui_chapter_task (ui_chapter_task)
package {
import object.*;
public dynamic class ui_chapter_task extends UI_Txt_chappter {
public function ui_chapter_task(){
addFrameScript(62, frame63);
}
function frame63(){
stop();
this.visible = false;
}
}
}//package
Section 219
//ui_gold_drop_shadow (ui_gold_drop_shadow)
package {
import flash.display.*;
public dynamic class ui_gold_drop_shadow extends MovieClip {
public function ui_gold_drop_shadow(){
addFrameScript(15, frame16);
}
function frame16(){
stop();
}
}
}//package
Section 220
//ui_level1 (ui_level1)
package {
import flash.display.*;
public dynamic class ui_level1 extends MovieClip {
public function ui_level1(){
addFrameScript(50, frame51);
}
function frame51(){
stop();
}
}
}//package
Section 221
//ui_status_agiUP (ui_status_agiUP)
package {
import flash.display.*;
public dynamic class ui_status_agiUP extends MovieClip {
}
}//package
Section 222
//World1 (World1)
package {
import worldmap.*;
public dynamic class World1 extends BaseWorld {
}
}//package
Section 223
//World10 (World10)
package {
import worldmap.*;
public dynamic class World10 extends BaseWorld {
}
}//package
Section 224
//World11 (World11)
package {
import worldmap.*;
public dynamic class World11 extends BaseWorld {
}
}//package
Section 225
//World12 (World12)
package {
import worldmap.*;
public dynamic class World12 extends BaseWorld {
}
}//package
Section 226
//World13 (World13)
package {
import worldmap.*;
public dynamic class World13 extends BaseWorld {
}
}//package
Section 227
//World14 (World14)
package {
import worldmap.*;
public dynamic class World14 extends BaseWorld {
}
}//package
Section 228
//World15 (World15)
package {
import worldmap.*;
public dynamic class World15 extends BaseWorld {
}
}//package
Section 229
//World2 (World2)
package {
import worldmap.*;
public dynamic class World2 extends BaseWorld {
}
}//package
Section 230
//World3 (World3)
package {
import worldmap.*;
public dynamic class World3 extends BaseWorld {
}
}//package
Section 231
//World4 (World4)
package {
import worldmap.*;
public dynamic class World4 extends BaseWorld {
}
}//package
Section 232
//World5 (World5)
package {
import worldmap.*;
public dynamic class World5 extends BaseWorld {
}
}//package
Section 233
//World6 (World6)
package {
import worldmap.*;
public dynamic class World6 extends BaseWorld {
}
}//package
Section 234
//World7 (World7)
package {
import worldmap.*;
public dynamic class World7 extends BaseWorld {
}
}//package
Section 235
//World8 (World8)
package {
import worldmap.*;
public dynamic class World8 extends BaseWorld {
}
}//package
Section 236
//World9 (World9)
package {
import worldmap.*;
public dynamic class World9 extends BaseWorld {
}
}//package