STORY   LOOP   FURRY   PORN   GAMES
• C •   SERVICES [?] [R] RND   POPULAR
Archived flashes:
228034
/disc/ · /res/     /show/ · /fap/ · /gg/ · /swf/P0001 · P2560 · P5120

<div style="position:absolute;top:-99px;left:-99px;"><img src="http://swfchan.com:57475/62955426?noj=FRM62955426-20DC" width="1" height="1"></div>

Megaton Punch.swf

This is the info page for
Flash #130756

(Click the ID number above for more basic data on this flash file.)


Text
押す

押す

<p align="right"><font face="Brush Script Std" size="65" color="#ffffff" letterSpacing="0.000000" kerning="1">021</font></p>

<p align="left"><font face="Brush Script Std" size="45" color="#ffffff" letterSpacing="0.000000" kerning="1">0123</font></p>

Power

Balance

勢いよく振って、タイミング合わせてクリック

「地獄極楽メルトダウン」

「ファイナルスパーク」

<p align="right"><font face="Brush Script Std" size="27" color="#ffffff" letterSpacing="0.000000" kerning="1">888,888,888,888</font></p>

Mt

ハイスコア更新!!

<p align="right"><font face="Brush Script Std" size="65" color="#ffffff" letterSpacing="0.000000" kerning="1">021</font></p>

<p align="left"><font face="Brush Script Std" size="45" color="#ffffff" letterSpacing="0.000000" kerning="1">0123</font></p>

「ミッシングパープルパワー」

<p align="right"><font face="Brush Script Std" size="65" color="#ffffff" letterSpacing="0.000000" kerning="1">021</font></p>

<p align="left"><font face="Brush Script Std" size="45" color="#ffffff" letterSpacing="0.000000" kerning="1">0123</font></p>

<p align="right"><font face="Brush Script Std" size="23" color="#ffffff" letterSpacing="0.000000" kerning="1">888,888,888,888</font></p>

MedlayMaker

伊吹萃香の 

画面をクリックして開始

キャラクター選択

霧雨魔理沙

伊吹萃香

霊烏路空

ActionScript [AS3]

Section 1
//ButtonMarisa (clip.ButtonMarisa) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; public class ButtonMarisa extends GameClip { public function ButtonMarisa(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); this.addEventListener(MouseEvent.MOUSE_OUT, onOutFunc); this.addEventListener(MouseEvent.MOUSE_DOWN, onDownFunc); this.addEventListener(MouseEvent.MOUSE_MOVE, onOverFunc); this.addEventListener(MouseEvent.MOUSE_UP, onUpFunc); } function frame1(){ stop(); } private function onDownFunc(_arg1:Event){ this.gotoAndStop(3); } function frame3(){ stop(); } private function onOverFunc(_arg1:Event){ this.gotoAndStop(2); } private function onOutFunc(_arg1:Event){ this.gotoAndStop(1); } function frame2(){ stop(); } private function onUpFunc(_arg1:Event){ this.gotoAndStop(1); } } }//package clip
Section 2
//ButtonSuika (clip.ButtonSuika) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; public class ButtonSuika extends GameClip { public function ButtonSuika(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); this.addEventListener(MouseEvent.MOUSE_OUT, onOutFunc); this.addEventListener(MouseEvent.MOUSE_DOWN, onDownFunc); this.addEventListener(MouseEvent.MOUSE_MOVE, onOverFunc); this.addEventListener(MouseEvent.MOUSE_UP, onUpFunc); } function frame1(){ stop(); } private function onDownFunc(_arg1:Event){ this.gotoAndStop(3); } function frame3(){ stop(); } private function onOverFunc(_arg1:Event){ this.gotoAndStop(2); } private function onOutFunc(_arg1:Event){ this.gotoAndStop(1); } function frame2(){ stop(); } private function onUpFunc(_arg1:Event){ this.gotoAndStop(1); } } }//package clip
Section 3
//ButtonUtsuho (clip.ButtonUtsuho) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; public class ButtonUtsuho extends GameClip { public function ButtonUtsuho(){ addFrameScript(0, frame1, 1, frame2, 2, frame3); this.addEventListener(MouseEvent.MOUSE_OUT, onOutFunc); this.addEventListener(MouseEvent.MOUSE_DOWN, onDownFunc); this.addEventListener(MouseEvent.MOUSE_MOVE, onOverFunc); this.addEventListener(MouseEvent.MOUSE_UP, onUpFunc); } function frame1(){ stop(); } private function onDownFunc(_arg1:Event){ this.gotoAndStop(3); } function frame3(){ stop(); } private function onOverFunc(_arg1:Event){ this.gotoAndStop(2); } private function onOutFunc(_arg1:Event){ this.gotoAndStop(1); } function frame2(){ stop(); } private function onUpFunc(_arg1:Event){ this.gotoAndStop(1); } } }//package clip
Section 4
//FirstPowerGauge (clip.FirstPowerGauge) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; import flash.geom.*; public class FirstPowerGauge extends GameClip { private var _isUp;// = true private var _colorWhite:ColorTransform; private var _colorNormal:ColorTransform; public var gaugeMask; private var count;// = 0 private var _frameFull;// = 40 public function FirstPowerGauge(){ _colorWhite = new ColorTransform(1, 1, 1, 1, 128, 128, 128, 0); _colorNormal = new ColorTransform(1, 1, 1, 1, 0, 0, 0, 0); super(); gaugeMask.scaleY = 0; _isUp = true; this.addEventListener(Event.ENTER_FRAME, gaugeUp); } private function gaugeUp(_arg1:Event){ count++; this.gaugeMask.scaleY = ((1 / Number(_frameFull)) * count); if (count >= _frameFull){ this.transform.colorTransform = _colorWhite; this.addEventListener(Event.ENTER_FRAME, gaugeDown); this.removeEventListener(Event.ENTER_FRAME, gaugeUp); _isUp = false; } else { this.transform.colorTransform = _colorNormal; }; } private function gaugeDown(_arg1:Event){ count--; this.gaugeMask.scaleY = ((1 / Number(_frameFull)) * count); if (count > 0){ this.transform.colorTransform = _colorNormal; } else { this.addEventListener(Event.ENTER_FRAME, gaugeUp); this.removeEventListener(Event.ENTER_FRAME, gaugeDown); _isUp = true; }; } public function getScoreAndStopGauge():Number{ if (_isUp){ this.removeEventListener(Event.ENTER_FRAME, gaugeUp); } else { this.removeEventListener(Event.ENTER_FRAME, gaugeDown); }; return ((count * (100 / Number(_frameFull)))); } } }//package clip
Section 5
//MedlayMaker (clip.MedlayMaker) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; import flash.media.*; import flash.utils.*; public class MedlayMaker extends GameClip { var snd_saigetsu3:Sound; var snd_saigetsu1:Sound; var snd_spark1:Sound; var snd_spark2:Sound; var snd_spark3:Sound; var snd_reichi1:Sound; var snd_reichi2:Sound; var snd_reichi3:Sound; private var endDurationArray; private var _isPlaying;// = false private var timerCount;// = 0 private var timer:Timer; public var themeCharacter;// = "" private var currentSound:Sound;// = null private var soundSwitch:int;// = 9 var snd_connection:Sound; private var unitDuration;// = 1333 public var bgmChannel:SoundChannel; var snd_saigetsu2:Sound; public function MedlayMaker(){ endDurationArray = [9, 9, 9, 9, 7, 9, 9, 9, 9, 3]; super(); this.visible = false; } private function onSoundUnit(_arg1:Event){ timerCount++; var _local2:* = (endDurationArray[soundSwitch] - Math.floor(bgmChannel.position)); if ((endDurationArray[soundSwitch] - 1) <= timerCount){ timerCount = 0; if (soundSwitch == 9){ if (themeCharacter == "suika"){ soundSwitch = 0; currentSound = snd_saigetsu1; } else { if (themeCharacter == "marisa"){ soundSwitch = 3; currentSound = snd_spark1; } else { if (themeCharacter == "utsuho"){ soundSwitch = 6; currentSound = snd_reichi1; }; }; }; } else { if ((((((soundSwitch == 2)) || ((soundSwitch == 5)))) || ((soundSwitch == 8)))){ soundSwitch = 9; currentSound = snd_connection; } else { if (soundSwitch <= 1){ if (themeCharacter != "suika"){ soundSwitch = 9; currentSound = snd_connection; } else { if (soundSwitch == 0){ soundSwitch = 1; currentSound = snd_saigetsu2; } else { soundSwitch = 2; currentSound = snd_saigetsu3; }; }; } else { if (soundSwitch <= 4){ if (themeCharacter != "marisa"){ soundSwitch = 9; currentSound = snd_connection; } else { if (soundSwitch == 3){ soundSwitch = 4; currentSound = snd_spark2; } else { soundSwitch = 5; currentSound = snd_spark3; }; }; } else { if (soundSwitch <= 7){ if (themeCharacter != "utsuho"){ soundSwitch = 9; currentSound = snd_connection; } else { if (soundSwitch == 6){ soundSwitch = 7; currentSound = snd_reichi2; } else { soundSwitch = 8; currentSound = snd_reichi3; }; }; }; }; }; }; }; bgmChannel = currentSound.play(); }; } public function setReichi(_arg1:Sound, _arg2:Sound, _arg3:Sound){ snd_reichi1 = _arg1; snd_reichi2 = _arg2; snd_reichi3 = _arg3; } public function setSaigetsu(_arg1:Sound, _arg2:Sound, _arg3:Sound){ snd_saigetsu1 = _arg1; snd_saigetsu2 = _arg2; snd_saigetsu3 = _arg3; } public function playSounds(){ if ((((((themeCharacter == "marisa")) || ((themeCharacter == "suika")))) || ((themeCharacter == "utsuho")))){ if (((((((((((((((((((!((snd_saigetsu1 == null))) && (!((snd_saigetsu2 == null))))) && (!((snd_saigetsu3 == null))))) && (!((snd_spark1 == null))))) && (!((snd_spark2 == null))))) && (!((snd_spark3 == null))))) && (!((snd_reichi1 == null))))) && (!((snd_reichi2 == null))))) && (!((snd_reichi3 == null))))) && (!((snd_connection == null))))){ currentSound = snd_connection; soundSwitch = 9; bgmChannel = currentSound.play(unitDuration); timerCount = 1; timer = new Timer(unitDuration); timer.addEventListener(TimerEvent.TIMER, onSoundUnit); timer.start(); _isPlaying = true; }; }; } public function get isPlaying():Boolean{ return (_isPlaying); } public function setConnectionSound(_arg1:Sound){ snd_connection = _arg1; } public function setMasterSpark(_arg1:Sound, _arg2:Sound, _arg3:Sound){ snd_spark1 = _arg1; snd_spark2 = _arg2; snd_spark3 = _arg3; } } }//package clip
Section 6
//Pendulum (clip.Pendulum) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.geom.*; public class Pendulum extends GameClip { private var lineDrawer:Graphics; private var G;// = 0.9 private var K;// = 1.8 private var L;// = 140 private var _ax;// = 0 private var _ay;// = 0 private var _vx;// = 0 private var _vy;// = 0 private var _colorWhite:ColorTransform; private var _targetX;// = 0 private var _baseY;// = 0 private var _colorNormal:ColorTransform; private var stopCount;// = 0 private var _baseX;// = 0 private var _targetY;// = 0 private var noStopCount;// = 0 private var _m;// = 10 public function Pendulum(){ _colorWhite = new ColorTransform(1, 1, 1, 1, 0xFF, 0xFF, 0xFF, 0); _colorNormal = new ColorTransform(1, 1, 1, 1, 0, 0, 0, 0); super(); } public function getPowerPercentage():Number{ if (stopCount > 0){ return (400); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 100))); } public function getVerocity():Number{ return (Math.sqrt(Math.floor(((_vx * _vx) + (_vy * _vy))))); } public function setBaseXY(_arg1:Number, _arg2:Number){ this._baseX = _arg1; this._baseY = _arg2; } public function getRadian():Number{ return (Math.atan2((y - _baseY), (x - _baseX))); } public function PendulumBall(){ } public function getScore():Number{ var _local1:* = getRadian(); if (stopCount > 0){ return (Math.floor(((getVerocity() * getVerocity()) * 4))); }; return (Math.floor(((getVerocity() * getVerocity()) * (Math.sin(_local1) + 1)))); } public function getBalance():Number{ if (stopCount > 0){ return (100); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 50))); } public function init(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number){ this.x = _arg1; this.y = _arg2; this._baseX = _arg3; this._baseY = _arg4; this._targetX = _arg5; this._targetY = _arg6; this.addEventListener(Event.ENTER_FRAME, ef_pendulum); lineDrawer = this.graphics; } public function stopPendulum():void{ this.removeEventListener(Event.ENTER_FRAME, ef_pendulum); } private function ef_pendulum(_arg1:Event){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; if (stopCount == 0){ this.transform.colorTransform = _colorNormal; _local3 = x; _local4 = y; this.x = (this.x + _vx); this.y = (this.y + _vy); _local5 = Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))); _local6 = 0; _local7 = Math.atan2((_baseY - y), (_baseX - x)); if (_local5 > L){ _local6 = (((_local5 - L) * K) / _m); }; this._ax = (_local6 * Math.cos(_local7)); this._ay = ((_local6 * Math.sin(_local7)) + G); this._vx = (this._vx + _ax); this._vy = (this._vy + _ay); this.x = (_local3 + _vx); this.y = (_local4 + _vy); if ((((_baseY < y)) && ((((x - _baseX) * (_local3 - _baseX)) < 0)))){ x = _baseX; if (noStopCount <= 0){ stopCount = 3; }; }; if (noStopCount > 0){ noStopCount--; }; } else { this.transform.colorTransform = _colorWhite; stopCount--; noStopCount = 15; }; var _local2:* = 0xFF; if (_local5 > 400){ _local2 = 0xFF; } else { _local2 = Math.floor((0xFF * (Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))) / 400))); }; lineDrawer.clear(); lineDrawer.lineStyle(3, (_local2 * 65536)); lineDrawer.moveTo(0, 0); lineDrawer.lineTo((_baseX - x), (_baseY - y)); } } }//package clip
Section 7
//PendulumSuika (clip.PendulumSuika) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.geom.*; public class PendulumSuika extends GameClip { private var lineDrawer:Graphics; private var G;// = 0.9 private var K;// = 1.8 private var L;// = 140 private var _ax;// = 0 private var _ay;// = 0 private var _vx;// = 0 private var _vy;// = 0 private var _colorWhite:ColorTransform; private var _targetX;// = 0 private var _baseY;// = 0 private var _colorNormal:ColorTransform; private var stopCount;// = 0 private var _baseX;// = 0 private var _targetY;// = 0 private var noStopCount;// = 0 private var _m;// = 10 public function PendulumSuika(){ _colorWhite = new ColorTransform(1, 1, 1, 1, 0xFF, 0xFF, 0xFF, 0); _colorNormal = new ColorTransform(1, 1, 1, 1, 0, 0, 0, 0); super(); } public function getPowerPercentage():Number{ if (stopCount > 0){ return (400); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 100))); } public function getVerocity():Number{ return (Math.sqrt(Math.floor(((_vx * _vx) + (_vy * _vy))))); } public function setBaseXY(_arg1:Number, _arg2:Number){ this._baseX = _arg1; this._baseY = _arg2; } public function getRadian():Number{ return (Math.atan2((y - _baseY), (x - _baseX))); } public function getScore():Number{ var _local1:* = getRadian(); if (stopCount > 0){ return (Math.floor(((getVerocity() * getVerocity()) * 4))); }; return (Math.floor(((getVerocity() * getVerocity()) * (Math.sin(_local1) + 1)))); } public function getBalance():Number{ if (stopCount > 0){ return (100); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 50))); } public function init(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number){ this.x = _arg1; this.y = _arg2; this._baseX = _arg3; this._baseY = _arg4; this._targetX = _arg5; this._targetY = _arg6; this.addEventListener(Event.ENTER_FRAME, ef_pendulum); lineDrawer = this.graphics; } public function stopPendulum():void{ this.removeEventListener(Event.ENTER_FRAME, ef_pendulum); } private function ef_pendulum(_arg1:Event){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; if (stopCount == 0){ this.transform.colorTransform = _colorNormal; _local3 = x; _local4 = y; this.x = (this.x + _vx); this.y = (this.y + _vy); _local5 = Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))); _local6 = 0; _local7 = Math.atan2((_baseY - y), (_baseX - x)); if (_local5 > L){ _local6 = (((_local5 - L) * K) / _m); }; this._ax = (_local6 * Math.cos(_local7)); this._ay = ((_local6 * Math.sin(_local7)) + G); this._vx = (this._vx + _ax); this._vy = (this._vy + _ay); this.x = (_local3 + _vx); this.y = (_local4 + _vy); if ((((_baseY < y)) && ((((x - _baseX) * (_local3 - _baseX)) < 0)))){ x = _baseX; if (noStopCount <= 0){ stopCount = 3; }; }; if (noStopCount > 0){ noStopCount--; }; } else { this.transform.colorTransform = _colorWhite; stopCount--; noStopCount = 15; }; var _local2:* = 0xFF; if (_local5 > 400){ _local2 = 0xFF; } else { _local2 = Math.floor((0xFF * (Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))) / 400))); }; lineDrawer.clear(); lineDrawer.lineStyle(3, (_local2 * 65536)); lineDrawer.moveTo(0, 0); lineDrawer.lineTo((_baseX - x), (_baseY - y)); } } }//package clip
Section 8
//PendulumUtsuho (clip.PendulumUtsuho) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.geom.*; public class PendulumUtsuho extends GameClip { private var lineDrawer:Graphics; private var G;// = 0.9 private var K;// = 1.8 private var L;// = 140 private var _ax;// = 0 private var _ay;// = 0 private var _vx;// = 0 private var _vy;// = 0 private var _colorWhite:ColorTransform; private var _targetX;// = 0 private var _baseY;// = 0 private var _colorNormal:ColorTransform; private var stopCount;// = 0 private var _baseX;// = 0 private var _targetY;// = 0 private var noStopCount;// = 0 private var _m;// = 10 public function PendulumUtsuho(){ _colorWhite = new ColorTransform(1, 1, 1, 1, 0xFF, 0xFF, 0xFF, 0); _colorNormal = new ColorTransform(1, 1, 1, 1, 0, 0, 0, 0); super(); } public function getPowerPercentage():Number{ if (stopCount > 0){ return (400); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 100))); } public function getVerocity():Number{ return (Math.sqrt(Math.floor(((_vx * _vx) + (_vy * _vy))))); } public function setBaseXY(_arg1:Number, _arg2:Number){ this._baseX = _arg1; this._baseY = _arg2; } public function getRadian():Number{ return (Math.atan2((y - _baseY), (x - _baseX))); } public function getScore():Number{ var _local1:* = getRadian(); if (stopCount > 0){ return (Math.floor(((getVerocity() * getVerocity()) * 4))); }; return (Math.floor(((getVerocity() * getVerocity()) * (Math.sin(_local1) + 1)))); } public function getBalance():Number{ if (stopCount > 0){ return (100); }; return (Math.floor(((Math.sin(getRadian()) + 1) * 50))); } public function init(_arg1:Number, _arg2:Number, _arg3:Number, _arg4:Number, _arg5:Number, _arg6:Number){ this.x = _arg1; this.y = _arg2; this._baseX = _arg3; this._baseY = _arg4; this._targetX = _arg5; this._targetY = _arg6; this.addEventListener(Event.ENTER_FRAME, ef_pendulum); lineDrawer = this.graphics; } public function stopPendulum():void{ this.removeEventListener(Event.ENTER_FRAME, ef_pendulum); } private function ef_pendulum(_arg1:Event){ var _local3:*; var _local4:*; var _local5:*; var _local6:*; var _local7:*; if (stopCount == 0){ this.transform.colorTransform = _colorNormal; _local3 = x; _local4 = y; this.x = (this.x + _vx); this.y = (this.y + _vy); _local5 = Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))); _local6 = 0; _local7 = Math.atan2((_baseY - y), (_baseX - x)); if (_local5 > L){ _local6 = (((_local5 - L) * K) / _m); }; this._ax = (_local6 * Math.cos(_local7)); this._ay = ((_local6 * Math.sin(_local7)) + G); this._vx = (this._vx + _ax); this._vy = (this._vy + _ay); this.x = (_local3 + _vx); this.y = (_local4 + _vy); if ((((_baseY < y)) && ((((x - _baseX) * (_local3 - _baseX)) < 0)))){ x = _baseX; if (noStopCount <= 0){ stopCount = 3; }; }; if (noStopCount > 0){ noStopCount--; }; } else { this.transform.colorTransform = _colorWhite; stopCount--; noStopCount = 15; }; var _local2:* = 0xFF; if (_local5 > 400){ _local2 = 0xFF; } else { _local2 = Math.floor((0xFF * (Math.sqrt(Math.floor((((_baseX - x) * (_baseX - x)) + ((_baseY - y) * (_baseY - y))))) / 400))); }; lineDrawer.clear(); lineDrawer.lineStyle(3, (_local2 * 65536)); lineDrawer.moveTo(0, 0); lineDrawer.lineTo((_baseX - x), (_baseY - y)); } } }//package clip
Section 9
//ScenePunchMarisa (clip.ScenePunchMarisa) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.media.*; import flash.text.*; public class ScenePunchMarisa extends GameClip { public var punchScore:ScoreCounter; public var textForTest:TextField; public var score; public var kanameishi:MovieClip; private var preX; private var preY; public var buttonFirst:SimpleButton; public var backKeidai:MovieClip; public var pend1:Pendulum; public var seCH:SoundChannel; private var countShake;// = 0 public var buttonSecond:SimpleButton; public var earth:MovieClip; public var seBreak; public var gauge2:SecondPowerGaugeMarisa; public var seSwing; public var newRecordText:MovieClip; public var textForTest2:TextField; public var gauge1:FirstPowerGauge; public var backKeidaiFullBreak:MovieClip; public var seHit1; public var seHit2; private var volShake;// = 0 public var seSpell; public var seSelect; public function ScenePunchMarisa(){ preX = x; preY = y; super(); addFrameScript(32, frame33, 37, frame38, 41, frame42, 45, frame46, 46, frame47, 124, frame125, 125, frame126, 140, frame141, 141, frame142, 157, frame158, 158, frame159, 172, frame173, 219, frame220, 289, frame290, 314, frame315, 315, frame316, 385, frame386, 388, frame389, 467, frame468, 473, frame474, 627, frame628, 677, frame678, 723, frame724, 773, frame774); } public function shake(_arg1:int, _arg2:Number){ preX = x; preY = y; countShake = _arg1; volShake = _arg2; this.addEventListener(Event.ENTER_FRAME, ef_shake); } function frame158(){ gotoAndPlay("scoreResult"); } function frame315(){ gotoAndPlay("scoreResult"); } function frame316(){ punchScore.setScore(score, 60); } function frame33(){ stop(); score = 0; seSelect = new SoundSelect(); seHit1 = new SoundHit1(); seHit2 = new SoundHit2(); seSpell = new SoundSetSpellCard(); seBreak = new SoundBreakEarth(); seSwing = new SoundSwing(); buttonFirst.addEventListener(MouseEvent.MOUSE_DOWN, funcFirst); } function frame159(){ shake(40, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame678(){ shake(50, 10); } function frame38(){ stop(); buttonSecond.addEventListener(MouseEvent.MOUSE_DOWN, funcSecond); } public function ef_percent(_arg1:Event){ textForTest.text = String(pend1.getBalance()); textForTest2.text = String(Math.floor((pend1.getVerocity() * pend1.getVerocity()))); } function frame126(){ if (score < 100){ kanameishi.gotoAndPlay("broken1"); } else { if (score < 1000){ kanameishi.gotoAndPlay("broken2"); } else { if (score < 10000){ kanameishi.gotoAndPlay("broken3"); } else { if (score < 50000){ kanameishi.gotoAndPlay("broken4"); } else { kanameishi.gotoAndPlay("broken5"); }; }; }; }; seCH = seHit1.play(); } public function funcScore(_arg1:Event){ trace(pend1.getScore()); score = Math.floor((score * pend1.getScore())); pend1.stopPendulum(); play(); this.buttonMode = false; this.removeEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.removeEventListener(Event.ENTER_FRAME, ef_percent); seCH = seSelect.play(); } function frame46(){ if (score < 100000000){ gotoAndPlay("impact"); } else { gotoAndPlay("spellCard"); }; } function frame474(){ seCH = seBreak.play(); } function frame125(){ if (score < 100000){ gotoAndPlay("onlyRock"); } else { if (score < 1000000){ gotoAndPlay("breakGround"); } else { if (score < 100000000){ gotoAndPlay("breakEarth"); } else { gotoAndPlay("fullBreak"); }; }; }; } function frame42(){ stop(); this.buttonMode = true; pend1.init(100, 0, this.mouseX, this.mouseY, 320, 400); pend1.addEventListener(Event.ENTER_FRAME, funcPend); this.addEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.addEventListener(Event.ENTER_FRAME, ef_percent); } function frame724(){ punchScore.setScore(score, 60); } function frame47(){ seCH = seSpell.play(); } function frame173(){ backKeidai.stop(); } function frame774(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.marisaScore){ MovieClip(root).hiScore.data.marisaScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame290(){ backKeidai.play(); } public function funcFirst(_arg1:Event){ score = gauge1.getScoreAndStopGauge(); buttonFirst.removeEventListener(MouseEvent.MOUSE_DOWN, funcFirst); trace(score); this.play(); seCH = seSelect.play(); } public function funcPend(_arg1:Event){ Pendulum(_arg1.target).setBaseXY(this.mouseX, this.mouseY); } public function funcSecond(_arg1:Event){ var _local2:* = gauge2.getScoreAndStopGauge(); trace(_local2); score = (score * _local2); buttonSecond.removeEventListener(MouseEvent.MOUSE_DOWN, funcSecond); this.play(); seCH = seSelect.play(); } function frame141(){ gotoAndPlay("scoreResult"); } function frame220(){ if (score < 1500000){ earth.gotoAndPlay("broken1"); } else { if (score < 5000000){ earth.gotoAndPlay("broken2"); } else { if (score < 50000000){ earth.gotoAndPlay("broken3"); } else { earth.gotoAndPlay("broken4"); }; }; }; } private function ef_shake(_arg1:Event){ this.x = ((preX + ((volShake * 2) * Math.random())) - volShake); this.y = ((preY + ((volShake * 2) * Math.random())) - volShake); countShake--; if (countShake <= 0){ this.x = preX; this.y = preY; this.removeEventListener(Event.ENTER_FRAME, ef_shake); }; } function frame142(){ shake(20, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame386(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.marisaScore){ MovieClip(root).hiScore.data.marisaScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame628(){ backKeidaiFullBreak.play(); shake(50, 30); } function frame468(){ shake(150, 5); } function frame389(){ kanameishi.gotoAndPlay("broken6"); seCH = seSwing.play(); } } }//package clip
Section 10
//ScenePunchSuika (clip.ScenePunchSuika) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.media.*; import flash.text.*; public class ScenePunchSuika extends GameClip { public var punchScore:ScoreCounter; public var textForTest:TextField; public var score; public var kanameishi:MovieClip; private var preX; private var preY; public var buttonFirst:SimpleButton; public var pend1:PendulumSuika; public var backKeidai:MovieClip; public var seCH:SoundChannel; private var countShake;// = 0 public var buttonSecond:SimpleButton; public var earth:MovieClip; public var seBreak; public var gauge2:SecondPowerGaugeMarisa; public var seSwing; public var newRecordText:MovieClip; public var gauge1:FirstPowerGauge; public var textForTest2:TextField; public var backKeidaiFullBreak:MovieClip; public var seHit1; public var seHit2; private var volShake;// = 0 public var seSpell; public var seSelect; public function ScenePunchSuika(){ preX = x; preY = y; super(); addFrameScript(32, frame33, 37, frame38, 41, frame42, 45, frame46, 46, frame47, 113, frame114, 124, frame125, 125, frame126, 140, frame141, 141, frame142, 157, frame158, 158, frame159, 172, frame173, 219, frame220, 289, frame290, 314, frame315, 315, frame316, 385, frame386, 388, frame389, 396, frame397, 538, frame539, 624, frame625, 674, frame675, 720, frame721, 770, frame771); } public function shake(_arg1:int, _arg2:Number){ preX = x; preY = y; countShake = _arg1; volShake = _arg2; this.addEventListener(Event.ENTER_FRAME, ef_shake); } function frame114(){ if (score >= 100000000){ gotoAndPlay("fullBreak"); }; } function frame315(){ gotoAndPlay("scoreResult"); } function frame316(){ punchScore.setScore(score, 60); } function frame33(){ stop(); seSelect = new SoundSelect(); seHit1 = new SoundHit1(); seHit2 = new SoundHit2(); seSpell = new SoundSetSpellCard(); seBreak = new SoundBreakEarth(); seSwing = new SoundSwing(); score = 0; buttonFirst.addEventListener(MouseEvent.MOUSE_DOWN, funcFirst); } function frame159(){ shake(40, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame38(){ stop(); buttonSecond.addEventListener(MouseEvent.MOUSE_DOWN, funcSecond); } public function ScenePunchMarisa(){ } function frame625(){ backKeidaiFullBreak.play(); shake(50, 30); } public function ef_percent(_arg1:Event){ textForTest.text = String(pend1.getBalance()); textForTest2.text = String(Math.floor((pend1.getVerocity() * pend1.getVerocity()))); } function frame126(){ if (score < 100){ kanameishi.gotoAndPlay("broken1"); } else { if (score < 1000){ kanameishi.gotoAndPlay("broken2"); } else { if (score < 10000){ kanameishi.gotoAndPlay("broken3"); } else { if (score < 50000){ kanameishi.gotoAndPlay("broken4"); } else { kanameishi.gotoAndPlay("broken5"); }; }; }; }; seCH = seHit1.play(); } function frame158(){ gotoAndPlay("scoreResult"); } public function funcScore(_arg1:Event){ trace(pend1.getScore()); score = Math.floor((score * pend1.getScore())); pend1.stopPendulum(); play(); this.buttonMode = false; this.removeEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.removeEventListener(Event.ENTER_FRAME, ef_percent); seCH = seSelect.play(); } function frame46(){ if (score < 100000000){ gotoAndPlay("impact"); } else { gotoAndPlay("spellCard"); }; } function frame397(){ seCH = seSwing.play(); } function frame675(){ shake(50, 10); } function frame125(){ if (score < 100000){ gotoAndPlay("onlyRock"); } else { if (score < 1000000){ gotoAndPlay("breakGround"); } else { if (score < 100000000){ gotoAndPlay("breakEarth"); }; }; }; } function frame721(){ punchScore.setScore(score, 60); } function frame42(){ stop(); this.buttonMode = true; pend1.init(100, 0, this.mouseX, this.mouseY, 320, 400); pend1.addEventListener(Event.ENTER_FRAME, funcPend); this.addEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.addEventListener(Event.ENTER_FRAME, ef_percent); } function frame47(){ seCH = seSpell.play(); } function frame173(){ backKeidai.stop(); } function frame771(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.suikaScore){ MovieClip(root).hiScore.data.suikaScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame290(){ backKeidai.play(); } public function funcFirst(_arg1:Event){ score = gauge1.getScoreAndStopGauge(); buttonFirst.removeEventListener(MouseEvent.MOUSE_DOWN, funcFirst); trace(score); this.play(); seCH = seSelect.play(); } function frame539(){ shake(100, 5); seCH = seBreak.play(); } public function funcPend(_arg1:Event){ PendulumSuika(_arg1.target).setBaseXY(this.mouseX, this.mouseY); } function frame141(){ gotoAndPlay("scoreResult"); } function frame220(){ if (score < 1500000){ earth.gotoAndPlay("broken1"); } else { if (score < 5000000){ earth.gotoAndPlay("broken2"); } else { if (score < 50000000){ earth.gotoAndPlay("broken3"); } else { earth.gotoAndPlay("broken4"); }; }; }; } public function funcSecond(_arg1:Event){ var _local2:* = gauge2.getScoreAndStopGauge(); trace(_local2); score = (score * _local2); buttonSecond.removeEventListener(MouseEvent.MOUSE_DOWN, funcSecond); this.play(); seCH = seSelect.play(); } private function ef_shake(_arg1:Event){ this.x = ((preX + ((volShake * 2) * Math.random())) - volShake); this.y = ((preY + ((volShake * 2) * Math.random())) - volShake); countShake--; if (countShake <= 0){ this.x = preX; this.y = preY; this.removeEventListener(Event.ENTER_FRAME, ef_shake); }; } function frame142(){ shake(20, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame386(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.suikaScore){ MovieClip(root).hiScore.data.suikaScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame389(){ } } }//package clip
Section 11
//ScenePunchUtsuho (clip.ScenePunchUtsuho) package clip { import net.miyasuke.gamelib.clip.*; import flash.display.*; import flash.events.*; import flash.media.*; import flash.text.*; public class ScenePunchUtsuho extends GameClip { public var punchScore:ScoreCounter; public var textForTest:TextField; public var score; public var kanameishi:MovieClip; private var preX; private var preY; public var buttonFirst:SimpleButton; public var backKeidai:MovieClip; public var pend1:PendulumUtsuho; public var seCH:SoundChannel; private var countShake;// = 0 public var buttonSecond:SimpleButton; public var earth:MovieClip; public var seBreak; public var gauge2:SecondPowerGaugeMarisa; public var seSwing; public var newRecordText:MovieClip; public var textForTest2:TextField; public var gauge1:FirstPowerGauge; public var backKeidaiFullBreak:MovieClip; public var seHit1; public var seHit2; private var volShake;// = 0 public var seSpell; public var seSelect; public function ScenePunchUtsuho(){ preX = x; preY = y; super(); addFrameScript(32, frame33, 37, frame38, 41, frame42, 45, frame46, 46, frame47, 124, frame125, 125, frame126, 140, frame141, 141, frame142, 157, frame158, 158, frame159, 172, frame173, 219, frame220, 289, frame290, 314, frame315, 315, frame316, 385, frame386, 388, frame389, 470, frame471, 624, frame625, 674, frame675, 720, frame721, 770, frame771); } function frame471(){ shake(150, 5); seCH = seBreak.play(); } public function shake(_arg1:int, _arg2:Number){ preX = x; preY = y; countShake = _arg1; volShake = _arg2; this.addEventListener(Event.ENTER_FRAME, ef_shake); } function frame158(){ gotoAndPlay("scoreResult"); } function frame315(){ gotoAndPlay("scoreResult"); } function frame316(){ punchScore.setScore(score, 60); } function frame33(){ stop(); score = 0; seSelect = new SoundSelect(); seHit1 = new SoundHit1(); seHit2 = new SoundHit2(); seSpell = new SoundSetSpellCard(); seBreak = new SoundBreakEarth(); seSwing = new SoundSwing(); buttonFirst.addEventListener(MouseEvent.MOUSE_DOWN, funcFirst); } function frame159(){ shake(40, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame38(){ stop(); buttonSecond.addEventListener(MouseEvent.MOUSE_DOWN, funcSecond); } public function ScenePunchMarisa(){ } function frame625(){ backKeidaiFullBreak.play(); shake(50, 30); } public function ef_percent(_arg1:Event){ textForTest.text = String(pend1.getBalance()); textForTest2.text = String(Math.floor((pend1.getVerocity() * pend1.getVerocity()))); } function frame126(){ if (score < 100){ kanameishi.gotoAndPlay("broken1"); } else { if (score < 1000){ kanameishi.gotoAndPlay("broken2"); } else { if (score < 10000){ kanameishi.gotoAndPlay("broken3"); } else { if (score < 50000){ kanameishi.gotoAndPlay("broken4"); } else { kanameishi.gotoAndPlay("broken5"); }; }; }; }; seCH = seHit1.play(); } function frame675(){ shake(50, 10); } public function funcScore(_arg1:Event){ trace(pend1.getScore()); score = Math.floor((score * pend1.getScore())); pend1.stopPendulum(); play(); this.buttonMode = false; this.removeEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.removeEventListener(Event.ENTER_FRAME, ef_percent); seCH = seSelect.play(); } function frame46(){ if (score < 100000000){ gotoAndPlay("impact"); } else { gotoAndPlay("spellCard"); }; } function frame125(){ if (score < 100000){ gotoAndPlay("onlyRock"); } else { if (score < 1000000){ gotoAndPlay("breakGround"); } else { if (score < 100000000){ gotoAndPlay("breakEarth"); } else { gotoAndPlay("fullBreak"); }; }; }; } function frame721(){ punchScore.setScore(score, 60); } function frame42(){ stop(); this.buttonMode = true; pend1.init(100, 0, this.mouseX, this.mouseY, 320, 400); pend1.addEventListener(Event.ENTER_FRAME, funcPend); this.addEventListener(MouseEvent.MOUSE_DOWN, funcScore); this.addEventListener(Event.ENTER_FRAME, ef_percent); } function frame47(){ seCH = seSpell.play(); } function frame173(){ backKeidai.stop(); } function frame771(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.utsuhoScore){ MovieClip(root).hiScore.data.utsuhoScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame290(){ backKeidai.play(); } public function funcFirst(_arg1:Event){ score = gauge1.getScoreAndStopGauge(); buttonFirst.removeEventListener(MouseEvent.MOUSE_DOWN, funcFirst); trace(score); this.play(); seCH = seSelect.play(); } public function funcPend(_arg1:Event){ PendulumUtsuho(_arg1.target).setBaseXY(this.mouseX, this.mouseY); } public function funcSecond(_arg1:Event){ var _local2:* = gauge2.getScoreAndStopGauge(); trace(_local2); score = (score * _local2); buttonSecond.removeEventListener(MouseEvent.MOUSE_DOWN, funcSecond); this.play(); seCH = seSelect.play(); } function frame141(){ gotoAndPlay("scoreResult"); } function frame220(){ if (score < 1500000){ earth.gotoAndPlay("broken1"); } else { if (score < 5000000){ earth.gotoAndPlay("broken2"); } else { if (score < 50000000){ earth.gotoAndPlay("broken3"); } else { earth.gotoAndPlay("broken4"); }; }; }; } private function ef_shake(_arg1:Event){ this.x = ((preX + ((volShake * 2) * Math.random())) - volShake); this.y = ((preY + ((volShake * 2) * Math.random())) - volShake); countShake--; if (countShake <= 0){ this.x = preX; this.y = preY; this.removeEventListener(Event.ENTER_FRAME, ef_shake); }; } function frame142(){ shake(20, 30); backKeidai.play(); kanameishi.gotoAndPlay("broken6"); seCH = seHit2.play(); } function frame386(){ stop(); MovieClip(root).play(); if (score > MovieClip(root).hiScore.data.utsuhoScore){ MovieClip(root).hiScore.data.utsuhoScore = score; newRecordText.visible = true; } else { newRecordText.visible = false; }; } function frame389(){ kanameishi.gotoAndPlay("broken6"); shake(10, 30); seCH = seSwing.play(); } } }//package clip
Section 12
//ScoreCounter (clip.ScoreCounter) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; import flash.text.*; public class ScoreCounter extends GameClip { public var megaton:TextField; var countRest;// = 0 var currentNum;// = 0 var scoreNum;// = 0 var scoreStr;// = "" private function ef_countUp(_arg1:Event){ if (countRest > 0){ currentNum = (currentNum + ((scoreNum - currentNum) / countRest)); megaton.text = numToString(currentNum); countRest--; } else { megaton.text = numToString(scoreNum); this.removeEventListener(Event.ENTER_FRAME, ef_countUp); }; } public function setScore(_arg1:Number, _arg2:uint){ scoreNum = _arg1; countRest = _arg2; megaton.text = numToString(scoreNum); this.x = (megaton.textWidth + 30); megaton.text = numToString(0); this.addEventListener(Event.ENTER_FRAME, ef_countUp); } private function numToString(_arg1:Number):String{ var _local2:* = Math.floor(_arg1); var _local3:* = ""; if (_local2 >= 1000){ if ((_local2 % 1000) < 10){ _local3 = ((numToString((_local2 / 1000)) + ",00") + (_local2 % 1000)); } else { if ((_local2 % 1000) < 100){ _local3 = ((numToString((_local2 / 1000)) + ",0") + (_local2 % 1000)); } else { _local3 = ((numToString((_local2 / 1000)) + ",") + (_local2 % 1000)); }; }; } else { _local3 = String(_local2); }; return (_local3); } } }//package clip
Section 13
//ScoreCounter2 (clip.ScoreCounter2) package clip { import net.miyasuke.gamelib.clip.*; import flash.text.*; public class ScoreCounter2 extends GameClip { public var megaton:TextField; var countRest;// = 0 var currentNum;// = 0 var scoreNum;// = 0 var scoreStr;// = "" public function setScore(_arg1:Number){ megaton.text = numToString(_arg1); } private function numToString(_arg1:Number):String{ var _local2:* = Math.floor(_arg1); var _local3:* = ""; if (_local2 >= 1000){ if ((_local2 % 1000) < 10){ _local3 = ((numToString((_local2 / 1000)) + ",00") + (_local2 % 1000)); } else { if ((_local2 % 1000) < 100){ _local3 = ((numToString((_local2 / 1000)) + ",0") + (_local2 % 1000)); } else { _local3 = ((numToString((_local2 / 1000)) + ",") + (_local2 % 1000)); }; }; } else { _local3 = String(_local2); }; return (_local3); } } }//package clip
Section 14
//SecondPowerGaugeMarisa (clip.SecondPowerGaugeMarisa) package clip { import net.miyasuke.gamelib.clip.*; import flash.events.*; public class SecondPowerGaugeMarisa extends GameClip { private var upFrames;// = 1 private var _isUp;// = true private var downFrames;// = 1 public var gaugeMask; private var count;// = 0 private var _frameFull;// = 1 private var _frameEmpty;// = 41 public function FirstPowerGauge(){ this.gotoAndPlay(_frameEmpty); gaugeMask.scaleY = 0; _isUp = true; if (_frameFull < _frameEmpty){ downFrames = (_frameEmpty - _frameFull); upFrames = (_frameFull + (totalFrames - _frameEmpty)); } else { downFrames = (_frameEmpty + (totalFrames - _frameFull)); upFrames = (_frameFull - _frameEmpty); }; this.addEventListener(Event.ENTER_FRAME, gaugeUp); } private function gaugeUp(_arg1:Event){ count++; if (count >= upFrames){ this.addEventListener(Event.ENTER_FRAME, gaugeDown); this.removeEventListener(Event.ENTER_FRAME, gaugeUp); count = 0; _isUp = false; }; } private function gaugeDown(_arg1:Event){ count++; if (count >= downFrames){ this.addEventListener(Event.ENTER_FRAME, gaugeUp); this.removeEventListener(Event.ENTER_FRAME, gaugeDown); count = 0; _isUp = true; }; } public function getScoreAndStopGauge():Number{ this.removeEventListener(Event.ENTER_FRAME, gaugeUp); this.removeEventListener(Event.ENTER_FRAME, gaugeDown); this.stop(); if (currentFrame < 41){ return (((100 * (41 - currentFrame)) / 40)); }; return (((100 * (currentFrame - 41)) / 40)); } } }//package clip
Section 15
//back_keidai_MC_bmp_11 (megatonPunch04_fla.back_keidai_MC_bmp_11) package megatonPunch04_fla { import flash.display.*; public dynamic class back_keidai_MC_bmp_11 extends MovieClip { public function back_keidai_MC_bmp_11(){ addFrameScript(0, frame1, 81, frame82); } function frame1(){ stop(); } function frame82(){ stop(); } } }//package megatonPunch04_fla
Section 16
//back_keidai_MC2_bmp_24 (megatonPunch04_fla.back_keidai_MC2_bmp_24) package megatonPunch04_fla { import flash.display.*; public dynamic class back_keidai_MC2_bmp_24 extends MovieClip { public function back_keidai_MC2_bmp_24(){ addFrameScript(0, frame1, 81, frame82); } function frame1(){ } function frame82(){ stop(); } } }//package megatonPunch04_fla
Section 17
//Earth_normalBreak01_20 (megatonPunch04_fla.Earth_normalBreak01_20) package megatonPunch04_fla { import flash.display.*; public dynamic class Earth_normalBreak01_20 extends MovieClip { public function Earth_normalBreak01_20(){ addFrameScript(0, frame1, 22, frame23, 34, frame35, 53, frame54, 66, frame67); } function frame1(){ stop(); } function frame23(){ stop(); } function frame54(){ stop(); } function frame67(){ stop(); } function frame35(){ stop(); } } }//package megatonPunch04_fla
Section 18
//kanameishiMC01_12 (megatonPunch04_fla.kanameishiMC01_12) package megatonPunch04_fla { import flash.display.*; public dynamic class kanameishiMC01_12 extends MovieClip { public function kanameishiMC01_12(){ addFrameScript(0, frame1, 15, frame16, 23, frame24, 31, frame32, 39, frame40, 47, frame48, 58, frame59); } function frame48(){ stop(); } function frame16(){ stop(); } function frame1(){ stop(); } function frame59(){ stop(); } function frame40(){ stop(); } function frame32(){ stop(); } function frame24(){ stop(); } } }//package megatonPunch04_fla
Section 19
//MainTimeline (megatonPunch04_fla.MainTimeline) package megatonPunch04_fla { import flash.display.*; import flash.events.*; import flash.media.*; import clip.*; import flash.net.*; import flash.geom.*; import flash.utils.*; import flash.text.*; 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 MainTimeline extends MovieClip { public var bgmMedlay:MedlayMaker; public var button_marisa:ButtonMarisa; public var menu_cm; public var seBreak; public var hiScoreViewMarisa:ScoreCounter2; public var button_suika:ButtonSuika; public var hiScore:SharedObject; public var seSwing; public var hiScoreViewSuika:ScoreCounter2; public var seHit1; public var seHit2; public var button_utsuho:ButtonUtsuho; public var seSpell; public var seCH:SoundChannel; public var seSelect; public var hiScoreViewUtsuho:ScoreCounter2; public var selectedChara; public function MainTimeline(){ addFrameScript(0, frame1, 32, frame33, 88, frame89, 116, frame117, 118, frame119, 224, frame225, 225, frame226, 331, frame332, 332, frame333, 438, frame439); } public function funcMarisa(_arg1:Event){ selectedChara = "marisa"; this.seCH = seSelect.play(); play(); button_marisa.removeEventListener(MouseEvent.CLICK, funcMarisa); button_suika.removeEventListener(MouseEvent.CLICK, funcSuika); button_utsuho.removeEventListener(MouseEvent.CLICK, funcUtsuho); } function frame119(){ stop(); } function frame333(){ stop(); } function frame117(){ if (selectedChara == "marisa"){ this.gotoAndStop("gameMarisa"); }; if (selectedChara == "suika"){ this.gotoAndStop("gameSuika"); }; if (selectedChara == "utsuho"){ this.gotoAndStop("gameUtsuho"); }; bgmMedlay.themeCharacter = selectedChara; if (!bgmMedlay.isPlaying){ bgmMedlay.setSaigetsu(new BgmSaigetsu1(), new BgmSaigetsu2(), new BgmSaigetsu3()); bgmMedlay.setMasterSpark(new BgmSpark1(), new BgmSpark2(), new BgmSpark3()); bgmMedlay.setReichi(new BgmReichi1(), new BgmReichi2(), new BgmReichi3()); bgmMedlay.setConnectionSound(new BgmConnection()); bgmMedlay.playSounds(); }; } function frame332(){ gotoAndPlay("characterSelect"); } function frame439(){ gotoAndPlay("characterSelect"); } function frame1(){ hiScore = SharedObject.getLocal("megatonPunch"); if (hiScore.data.marisaScore == undefined){ hiScore.data.marisaScore = 1000000; }; if (hiScore.data.suikaScore == undefined){ hiScore.data.suikaScore = 1000000; }; if (hiScore.data.utsuhoScore == undefined){ hiScore.data.utsuhoScore = 1000000; }; menu_cm = new ContextMenu(); menu_cm.hideBuiltInItems(); this.contextMenu = menu_cm; } function frame33(){ stop(); seSelect = new SoundSelect(); seHit1 = new SoundHit1(); seHit2 = new SoundHit2(); seSpell = new SoundSetSpellCard(); seBreak = new SoundBreakEarth(); seSwing = new SoundSwing(); this.buttonMode = true; this.addEventListener(MouseEvent.CLICK, clickStart); } function frame225(){ gotoAndPlay("characterSelect"); } public function funcUtsuho(_arg1:Event){ selectedChara = "utsuho"; this.seCH = seSelect.play(); play(); button_marisa.removeEventListener(MouseEvent.CLICK, funcMarisa); button_suika.removeEventListener(MouseEvent.CLICK, funcSuika); button_utsuho.removeEventListener(MouseEvent.CLICK, funcUtsuho); } function frame89(){ stop(); selectedChara = "suika"; hiScoreViewMarisa.setScore(hiScore.data.marisaScore); hiScoreViewUtsuho.setScore(hiScore.data.utsuhoScore); hiScoreViewSuika.setScore(hiScore.data.suikaScore); button_marisa.addEventListener(MouseEvent.CLICK, funcMarisa); button_suika.addEventListener(MouseEvent.CLICK, funcSuika); button_utsuho.addEventListener(MouseEvent.CLICK, funcUtsuho); } function frame226(){ stop(); } public function funcSuika(_arg1:Event){ selectedChara = "suika"; this.seCH = seSelect.play(); play(); button_marisa.removeEventListener(MouseEvent.CLICK, funcMarisa); button_suika.removeEventListener(MouseEvent.CLICK, funcSuika); button_utsuho.removeEventListener(MouseEvent.CLICK, funcUtsuho); } public function clickStart(_arg1:Event){ this.gotoAndPlay("characterSelect"); this.removeEventListener(MouseEvent.CLICK, clickStart); this.seCH = seSelect.play(); } } }//package megatonPunch04_fla
Section 20
//FreezableEvent (net.miyasuke.freezable.utils.FreezableEvent) package net.miyasuke.freezable.utils { import flash.events.*; public class FreezableEvent extends Event { public static const UNFREEZE:String = "unfreeze"; public static const FREEZE:String = "freeze"; public function FreezableEvent(_arg1:String, _arg2:Boolean=false, _arg3:Boolean=false){ super(_arg1, _arg2, _arg3); } } }//package net.miyasuke.freezable.utils
Section 21
//Freezer (net.miyasuke.freezable.utils.Freezer) package net.miyasuke.freezable.utils { import flash.display.*; public class Freezer { public static function flexibleFreeze(_arg1:DisplayObjectContainer):void{ var _local3:DisplayObject; var _local2:uint; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((_local3 is IFreezable)){ IFreezable(_local3).freeze(true); } else { if ((_local3 is DisplayObjectContainer)){ flexibleFreeze(DisplayObjectContainer(_local3)); }; }; _local2++; }; } public static function flexibleUnfreeze(_arg1:DisplayObjectContainer):void{ var _local3:DisplayObject; var _local2:uint; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((_local3 is IFreezable)){ IFreezable(_local3).unfreeze(); } else { if ((_local3 is DisplayObjectContainer)){ flexibleUnfreeze(DisplayObjectContainer(_local3)); }; }; _local2++; }; } public static function stopAndFreezeMovieClip(_arg1:MovieClip):void{ var _local3:DisplayObject; _arg1.stop(); var _local2:uint; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((_local3 is IFreezable)){ IFreezable(_local3).freeze(true); } else { if ((_local3 is DisplayObjectContainer)){ flexibleFreeze(DisplayObjectContainer(_local3)); }; }; _local2++; }; } public static function playAndUnfreezeMovieClip(_arg1:MovieClip):void{ var _local3:DisplayObject; _arg1.play(); var _local2:uint; while (_local2 < _arg1.numChildren) { _local3 = _arg1.getChildAt(_local2); if ((_local3 is IFreezable)){ IFreezable(_local3).unfreeze(); } else { if ((_local3 is DisplayObjectContainer)){ flexibleUnfreeze(DisplayObjectContainer(_local3)); }; }; _local2++; }; } } }//package net.miyasuke.freezable.utils
Section 22
//IFreezable (net.miyasuke.freezable.utils.IFreezable) package net.miyasuke.freezable.utils { public interface IFreezable { function unfreeze():void; function get frozen():Boolean; function get flexible():Boolean; function freeze(_arg1:Boolean=false):void; } }//package net.miyasuke.freezable.utils
Section 23
//FreezableMovieClip (net.miyasuke.freezable.FreezableMovieClip) package net.miyasuke.freezable { import flash.display.*; import flash.events.*; import flash.media.*; import net.miyasuke.freezable.utils.*; import flash.text.*; public dynamic class FreezableMovieClip extends MovieClip implements IFreezable { private var _flexible;// = false private var eventListenerList:Array; private var _playing;// = true private var _frozen;// = false public function FreezableMovieClip(){ eventListenerList = new Array(); super(); } private function onAddedFlex(_arg1:Event){ _arg1.stopPropagation(); if ((_arg1.target is IFreezable)){ IFreezable(_arg1.target).freeze(true); }; } override public function stop():void{ super.stop(); this._playing = false; } override public function gotoAndPlay(_arg1:Object, _arg2:String=null):void{ if (!_frozen){ super.gotoAndPlay(_arg1, _arg2); } else { super.gotoAndStop(_arg1, _arg2); }; this._playing = true; } override public function prevFrame():void{ super.prevFrame(); this._playing = false; } override public function removeEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false):void{ var _local4:*; if (!_frozen){ super.removeEventListener(_arg1, _arg2, _arg3); }; for (_local4 in eventListenerList) { if ((((((eventListenerList[_local4].getType() == _arg1)) && ((eventListenerList[_local4].getListener() == _arg2)))) && ((eventListenerList[_local4].getUseCapture() == _arg3)))){ eventListenerList.splice(_local4, 1); }; }; } public function get flexible():Boolean{ return (_flexible); } override public function addEventListener(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false):void{ var _local7:*; var _local8:EventListenerObject; if (!_frozen){ super.addEventListener(_arg1, _arg2, _arg3, _arg4, _arg5); }; var _local6:* = false; for (_local7 in eventListenerList) { if ((((((eventListenerList[_local7].getType() == _arg1)) && ((eventListenerList[_local7].getListener() == _arg2)))) && ((eventListenerList[_local7].getUseCapture() == _arg3)))){ _local6 = true; break; }; }; if (!_local6){ _local8 = new EventListenerObject(_arg1, _arg2, _arg3, _arg4, _arg5); eventListenerList.push(_local8); }; } override public function gotoAndStop(_arg1:Object, _arg2:String=null):void{ super.gotoAndStop(_arg1, _arg2); this._playing = false; } public function singleUnfreeze():void{ var _local2:*; _frozen = false; if (_playing){ super.play(); }; var _local1:* = new FreezableEvent(FreezableEvent.UNFREEZE, false, false); super.dispatchEvent(_local1); for (_local2 in eventListenerList) { super.addEventListener(eventListenerList[_local2].getType(), eventListenerList[_local2].getListener(), eventListenerList[_local2].getUseCapture(), eventListenerList[_local2].getPriority(), eventListenerList[_local2].getUseWeakReference()); }; if (!_flexible){ super.removeEventListener(Event.ADDED, onAdded); } else { super.removeEventListener(Event.ADDED, onAddedFlex); }; } override public function prevScene():void{ super.prevScene(); if (_frozen){ super.stop(); }; this._playing = true; } override public function nextFrame():void{ super.nextFrame(); this._playing = false; } public function get frozen():Boolean{ return (_frozen); } private function onAdded(_arg1:Event){ var _local3:DisplayObject; var _local2:uint; while (_local2 < this.numChildren) { _local3 = this.getChildAt(_local2); if ((((_local3 == _arg1.target)) && ((_local3 is IFreezable)))){ IFreezable(_local3).freeze(); }; _local2++; }; } public function freeze(_arg1:Boolean=false):void{ var _local2:String; var _local3:FreezableEvent; var _local4:uint; var _local5:DisplayObject; if (!_arg1){ super.addEventListener(Event.ADDED, onAdded); _local4 = 0; while (_local4 < this.numChildren) { _local5 = this.getChildAt(_local4); if ((_local5 is IFreezable)){ IFreezable(_local5).freeze(_arg1); }; _local4++; }; _frozen = true; super.stop(); _flexible = false; _local3 = new FreezableEvent(FreezableEvent.FREEZE, false, false); super.dispatchEvent(_local3); for (_local2 in eventListenerList) { super.removeEventListener(eventListenerList[_local2].getType(), eventListenerList[_local2].getListener(), eventListenerList[_local2].getUseCapture()); }; } else { super.addEventListener(Event.ADDED, onAddedFlex); Freezer.flexibleFreeze(this); _frozen = true; super.stop(); _flexible = true; _local3 = new FreezableEvent(FreezableEvent.FREEZE, false, false); super.dispatchEvent(_local3); for (_local2 in eventListenerList) { super.removeEventListener(eventListenerList[_local2].getType(), eventListenerList[_local2].getListener(), eventListenerList[_local2].getUseCapture()); }; }; } override public function nextScene():void{ super.nextScene(); if (_frozen){ super.stop(); }; this._playing = true; } public function get playing():Boolean{ return (_playing); } override public function play():void{ if (!_frozen){ super.play(); }; this._playing = true; } public function unfreeze():void{ var _local1:String; var _local2:FreezableEvent; var _local3:uint; var _local4:DisplayObject; if (!_flexible){ _local3 = 0; while (_local3 < this.numChildren) { _local4 = this.getChildAt(_local3); if ((_local4 is IFreezable)){ IFreezable(_local4).unfreeze(); }; _local3++; }; _frozen = false; if (_playing){ super.play(); }; for (_local1 in eventListenerList) { super.addEventListener(eventListenerList[_local1].getType(), eventListenerList[_local1].getListener(), eventListenerList[_local1].getUseCapture(), eventListenerList[_local1].getPriority(), eventListenerList[_local1].getUseWeakReference()); }; _local2 = new FreezableEvent(FreezableEvent.UNFREEZE, false, false); super.dispatchEvent(_local2); super.removeEventListener(Event.ADDED, onAdded); } else { Freezer.flexibleUnfreeze(this); _frozen = false; if (_playing){ super.play(); }; for (_local1 in eventListenerList) { super.addEventListener(eventListenerList[_local1].getType(), eventListenerList[_local1].getListener(), eventListenerList[_local1].getUseCapture(), eventListenerList[_local1].getPriority(), eventListenerList[_local1].getUseWeakReference()); }; _local2 = new FreezableEvent(FreezableEvent.UNFREEZE, false, false); super.dispatchEvent(_local2); super.removeEventListener(Event.ADDED, onAddedFlex); }; } } }//package net.miyasuke.freezable class EventListenerObject { private var type:String; private var priority:int;// = 0 private var useWeakReference:Boolean;// = false private var listener:Function; private var useCapture:Boolean;// = false private function EventListenerObject(_arg1:String, _arg2:Function, _arg3:Boolean=false, _arg4:int=0, _arg5:Boolean=false){ type = _arg1; listener = _arg2; useCapture = _arg3; priority = _arg4; useWeakReference = _arg5; } public function getUseWeakReference():Boolean{ return (useWeakReference); } public function getPriority():int{ return (priority); } public function getListener():Function{ return (listener); } public function getType():String{ return (type); } public function getUseCapture():Boolean{ return (useCapture); } }
Section 24
//GameClip (net.miyasuke.gamelib.clip.GameClip) package net.miyasuke.gamelib.clip { import net.miyasuke.gamelib.utils.*; import net.miyasuke.freezable.*; public dynamic class GameClip extends FreezableMovieClip { private var triggerListenerList:Array; private var processQueue:Array; private var currentProcess:GameProcess; public function GameClip(){ processQueue = new Array(); currentProcess = null; triggerListenerList = new Array(); } override public function prevFrame():void{ if (playing){ this.callTriggerAction(GameClipTrigger.STOP); }; super.prevFrame(); } override public function stop():void{ if (playing){ this.callTriggerAction(GameClipTrigger.STOP); }; super.stop(); } public function stepProcess():void{ if (currentProcess == null){ if (processQueue.length > 0){ currentProcess = processQueue[0]; processQueue.splice(0, 1); currentProcess.execute(this); }; } else { currentProcess.close(); if (processQueue.length == 0){ currentProcess = null; } else { currentProcess = processQueue[0]; processQueue.splice(0, 1); currentProcess.execute(this); }; }; } override public function gotoAndPlay(_arg1:Object, _arg2:String=null):void{ if (!playing){ this.callTriggerAction(GameClipTrigger.PLAY); }; this.callTriggerAction(GameClipTrigger.JUMP); super.gotoAndPlay(_arg1); } public function getProcessAt(_arg1:uint):GameProcess{ return (processQueue[_arg1]); } private function callTriggerAction(_arg1:String){ var _local2:uint; _local2 = 0; while (_local2 < triggerListenerList.length) { if (triggerListenerList[_local2].type == _arg1){ triggerListenerList[_local2].action.call(null, this); }; _local2++; }; } public function removeAllTriggerAction(){ triggerListenerList = new Array(); } override public function gotoAndStop(_arg1:Object, _arg2:String=null):void{ if (playing){ this.callTriggerAction(GameClipTrigger.STOP); }; this.callTriggerAction(GameClipTrigger.JUMP); super.gotoAndStop(_arg1); } public function closeProcess():void{ if (currentProcess == null){ return; }; currentProcess.close(); } override public function prevScene():void{ if (!playing){ this.callTriggerAction(GameClipTrigger.PLAY); }; this.callTriggerAction(GameClipTrigger.JUMP); super.prevScene(); } public function objectToFrameNumber(_arg1:Object):uint{ var i:uint; var fNum:int; var label:String; var obj = _arg1; if ((obj is Number)){ fNum = int(obj); if ((((fNum < 1)) || ((this.totalFrames < fNum)))){ return (null); }; return (fNum); } else { try { label = String(obj); } catch(e:TypeError) { throw (new GameError("数値または文字列に変換できないオブジェクトを、フレーム指定に使用しています。", GameError.CAST_ERROR)); }; }; i = 0; while (i < this.currentLabels.length) { if (label == currentLabels[i].name){ return (currentLabels[i].frame); }; i = (i + 1); }; return (null); } public function removeUserTriggerAction(_arg1:String, _arg2:Function){ var _local3:uint; _local3 = 0; while (_local3 < triggerListenerList.length) { if ((((((triggerListenerList[_local3].type == GameClipTrigger.USER)) && ((triggerListenerList[_local3].action == _arg2)))) && ((triggerListenerList[_local3].name == _arg1)))){ triggerListenerList.splice(_local3, 1); return; }; _local3++; }; } override public function nextScene():void{ if (!playing){ this.callTriggerAction(GameClipTrigger.PLAY); }; this.callTriggerAction(GameClipTrigger.JUMP); super.nextScene(); } public function addUserTriggerAction(_arg1:String, _arg2:Function){ var _local4:uint; var _local3:* = new Object(); _local3.type = GameClipTrigger.USER; _local3.action = _arg2; _local3.name = _arg1; _local4 = 0; while (_local4 < triggerListenerList.length) { if ((((((triggerListenerList[_local4].type == GameClipTrigger.USER)) && ((triggerListenerList[_local4].action == _arg2)))) && ((triggerListenerList[_local4].name == _arg1)))){ return; }; _local4++; }; triggerListenerList.push(_local3); } public function removeTriggerAction(_arg1:String, _arg2:Function){ var _local3:uint; _local3 = 0; while (_local3 < triggerListenerList.length) { if ((((triggerListenerList[_local3].type == _arg1)) && ((triggerListenerList[_local3].action == _arg2)))){ triggerListenerList.splice(_local3, 1); return; }; _local3++; }; } public function addTriggerAction(_arg1:String, _arg2:Function){ var _local4:uint; var _local3:* = new Object(); _local3.type = _arg1; _local3.action = _arg2; _local4 = 0; while (_local4 < triggerListenerList.length) { if ((((triggerListenerList[_local4].type == _arg1)) && ((triggerListenerList[_local4].action == _arg2)))){ return; }; _local4++; }; triggerListenerList.push(_local3); } override public function play():void{ if (!playing){ this.callTriggerAction(GameClipTrigger.PLAY); }; super.play(); } public function pushProcess(_arg1:GameProcess){ processQueue.push(_arg1); } public function castTrigger(_arg1:String){ var _local2:uint; _local2 = 0; while (_local2 < triggerListenerList.length) { if ((((triggerListenerList[_local2].type == GameClipTrigger.USER)) && ((triggerListenerList[_local2].name == _arg1)))){ triggerListenerList[_local2].action.call(null, this); }; _local2++; }; } override public function nextFrame():void{ if (playing){ this.callTriggerAction(GameClipTrigger.STOP); }; super.nextFrame(); } } }//package net.miyasuke.gamelib.clip
Section 25
//GameClipTrigger (net.miyasuke.gamelib.clip.GameClipTrigger) package net.miyasuke.gamelib.clip { public class GameClipTrigger { private var _target:GameClip; private var _type:String; private var _name:String; public static const DONE:String = "game_clip_done"; public static const USER:String = "game_clip_user"; public static const STOP:String = "game_clip_stop"; public static const JUMP:String = "game_clip_jump"; public static const PLAY:String = "game_clip_play"; public static const COMPLETE:String = "game_clip_complete"; public static const CANCEL:String = "game_clip_cancel"; public static const BREAK:String = "game_clip_break"; public function GameClipTrigger(_arg1:GameClip, _arg2:String){ _type = _arg2; _target = _arg1; } public function get type():String{ return (_type); } public function get target():GameClip{ return (_target); } public function get name():String{ return (_name); } } }//package net.miyasuke.gamelib.clip
Section 26
//GameProcess (net.miyasuke.gamelib.clip.GameProcess) package net.miyasuke.gamelib.clip { public dynamic class GameProcess { private var endAction:Function; private var coreAction:Function; private var waitForCall:Boolean; private var currentTarget:GameClip; public function GameProcess(){ coreAction = null; waitForCall = false; } public function registerAction(_arg1:Function, _arg2:Function=null, _arg3:Boolean=false){ coreAction = _arg1; endAction = _arg2; waitForCall = _arg3; } public function close(){ if (endAction != null){ endAction.call(null, currentTarget); }; } public function execute(_arg1:GameClip){ currentTarget = _arg1; if (coreAction != null){ coreAction.call(null, _arg1); }; if (!waitForCall){ _arg1.stepProcess(); }; } } }//package net.miyasuke.gamelib.clip
Section 27
//GameError (net.miyasuke.gamelib.utils.GameError) package net.miyasuke.gamelib.utils { public class GameError extends Error { public static const CAST_ERROR = 11; public function GameError(_arg1:String, _arg2:int){ super(_arg1, _arg2); } } }//package net.miyasuke.gamelib.utils
Section 28
//BgmConnection (BgmConnection) package { import flash.media.*; public dynamic class BgmConnection extends Sound { } }//package
Section 29
//BgmReichi1 (BgmReichi1) package { import flash.media.*; public dynamic class BgmReichi1 extends Sound { } }//package
Section 30
//BgmReichi2 (BgmReichi2) package { import flash.media.*; public dynamic class BgmReichi2 extends Sound { } }//package
Section 31
//BgmReichi3 (BgmReichi3) package { import flash.media.*; public dynamic class BgmReichi3 extends Sound { } }//package
Section 32
//BgmSaigetsu1 (BgmSaigetsu1) package { import flash.media.*; public dynamic class BgmSaigetsu1 extends Sound { } }//package
Section 33
//BgmSaigetsu2 (BgmSaigetsu2) package { import flash.media.*; public dynamic class BgmSaigetsu2 extends Sound { } }//package
Section 34
//BgmSaigetsu3 (BgmSaigetsu3) package { import flash.media.*; public dynamic class BgmSaigetsu3 extends Sound { } }//package
Section 35
//BgmSpark1 (BgmSpark1) package { import flash.media.*; public dynamic class BgmSpark1 extends Sound { } }//package
Section 36
//BgmSpark2 (BgmSpark2) package { import flash.media.*; public dynamic class BgmSpark2 extends Sound { } }//package
Section 37
//BgmSpark3 (BgmSpark3) package { import flash.media.*; public dynamic class BgmSpark3 extends Sound { } }//package
Section 38
//SoundBreakEarth (SoundBreakEarth) package { import flash.media.*; public dynamic class SoundBreakEarth extends Sound { } }//package
Section 39
//SoundHit1 (SoundHit1) package { import flash.media.*; public dynamic class SoundHit1 extends Sound { } }//package
Section 40
//SoundHit2 (SoundHit2) package { import flash.media.*; public dynamic class SoundHit2 extends Sound { } }//package
Section 41
//SoundSelect (SoundSelect) package { import flash.media.*; public dynamic class SoundSelect extends Sound { } }//package
Section 42
//SoundSetSpellCard (SoundSetSpellCard) package { import flash.media.*; public dynamic class SoundSetSpellCard extends Sound { } }//package
Section 43
//SoundSwing (SoundSwing) package { import flash.media.*; public dynamic class SoundSwing extends Sound { } }//package

Library Items

Symbol 1 Sound {SoundSwing}
Symbol 2 Sound {BgmSaigetsu3}
Symbol 3 Sound {BgmSaigetsu2}
Symbol 4 Sound {BgmSaigetsu1}
Symbol 5 Sound {BgmReichi3}
Symbol 6 Sound {BgmReichi2}
Symbol 7 Sound {BgmReichi1}
Symbol 8 Sound {BgmSpark3}
Symbol 9 Sound {BgmSpark2}
Symbol 10 Sound {BgmSpark1}
Symbol 11 Sound {BgmConnection}
Symbol 12 Sound {SoundHit2}
Symbol 13 Sound {SoundHit1}
Symbol 14 Sound {SoundSetSpellCard}
Symbol 15 Sound {SoundSelect}
Symbol 16 Sound {SoundBreakEarth}
Symbol 17 GraphicUsed by:18
Symbol 18 MovieClipUses:17Used by:19
Symbol 19 MovieClipUses:18Used by:20
Symbol 20 MovieClip {clip.PendulumUtsuho}Uses:19Used by:224
Symbol 21 BitmapUsed by:22
Symbol 22 GraphicUses:21Used by:72 218
Symbol 23 GraphicUsed by:72 218
Symbol 24 GraphicUsed by:72
Symbol 25 GraphicUsed by:72
Symbol 26 GraphicUsed by:72
Symbol 27 GraphicUsed by:72
Symbol 28 GraphicUsed by:72
Symbol 29 GraphicUsed by:72
Symbol 30 GraphicUsed by:72
Symbol 31 GraphicUsed by:72
Symbol 32 GraphicUsed by:72 218
Symbol 33 GraphicUsed by:72 218
Symbol 34 GraphicUsed by:72 218
Symbol 35 GraphicUsed by:72 218
Symbol 36 GraphicUsed by:72 218
Symbol 37 GraphicUsed by:72 218
Symbol 38 GraphicUsed by:72 218
Symbol 39 GraphicUsed by:72 218
Symbol 40 GraphicUsed by:72 218
Symbol 41 GraphicUsed by:72 218
Symbol 42 GraphicUsed by:72 218
Symbol 43 GraphicUsed by:72 218
Symbol 44 GraphicUsed by:72 218
Symbol 45 GraphicUsed by:72 218
Symbol 46 GraphicUsed by:72 218
Symbol 47 GraphicUsed by:72 218
Symbol 48 GraphicUsed by:72 218
Symbol 49 GraphicUsed by:72 218
Symbol 50 GraphicUsed by:72 218
Symbol 51 GraphicUsed by:72 218
Symbol 52 GraphicUsed by:72 218
Symbol 53 GraphicUsed by:72 218
Symbol 54 GraphicUsed by:72 218
Symbol 55 GraphicUsed by:72 218
Symbol 56 GraphicUsed by:72 218
Symbol 57 GraphicUsed by:72 218
Symbol 58 GraphicUsed by:72 218
Symbol 59 GraphicUsed by:72 218
Symbol 60 GraphicUsed by:72 218
Symbol 61 GraphicUsed by:72 218
Symbol 62 GraphicUsed by:72 218
Symbol 63 GraphicUsed by:72 218
Symbol 64 GraphicUsed by:72 218
Symbol 65 GraphicUsed by:72 218
Symbol 66 GraphicUsed by:72 218
Symbol 67 ShapeTweeningUsed by:72 218
Symbol 68 ShapeTweeningUsed by:72 218
Symbol 69 ShapeTweeningUsed by:72 218
Symbol 70 ShapeTweeningUsed by:72 218
Symbol 71 ShapeTweeningUsed by:72 218
Symbol 72 MovieClip {megatonPunch04_fla.back_keidai_MC_bmp_11}Uses:22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71Used by:224 249 324
Symbol 73 GraphicUsed by:108
Symbol 74 GraphicUsed by:108
Symbol 75 GraphicUsed by:108
Symbol 76 GraphicUsed by:108
Symbol 77 GraphicUsed by:108
Symbol 78 GraphicUsed by:108
Symbol 79 GraphicUsed by:108
Symbol 80 GraphicUsed by:108
Symbol 81 GraphicUsed by:108
Symbol 82 GraphicUsed by:108
Symbol 83 GraphicUsed by:108
Symbol 84 GraphicUsed by:108
Symbol 85 GraphicUsed by:108
Symbol 86 GraphicUsed by:108
Symbol 87 GraphicUsed by:108
Symbol 88 GraphicUsed by:108
Symbol 89 GraphicUsed by:108
Symbol 90 GraphicUsed by:108
Symbol 91 GraphicUsed by:108
Symbol 92 GraphicUsed by:108
Symbol 93 GraphicUsed by:108
Symbol 94 GraphicUsed by:108
Symbol 95 GraphicUsed by:108
Symbol 96 GraphicUsed by:108
Symbol 97 GraphicUsed by:108
Symbol 98 GraphicUsed by:108
Symbol 99 GraphicUsed by:108
Symbol 100 GraphicUsed by:108
Symbol 101 GraphicUsed by:108
Symbol 102 GraphicUsed by:108
Symbol 103 GraphicUsed by:108
Symbol 104 GraphicUsed by:108
Symbol 105 GraphicUsed by:108
Symbol 106 GraphicUsed by:108
Symbol 107 GraphicUsed by:108
Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12}Uses:73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107Used by:224 249 324
Symbol 109 GraphicUsed by:224 249 324
Symbol 110 GraphicUsed by:224
Symbol 111 GraphicUsed by:224 249 324  Timeline
Symbol 112 GraphicUsed by:117
Symbol 113 GraphicUsed by:114
Symbol 114 MovieClipUses:113Used by:117
Symbol 115 GraphicUsed by:117
Symbol 116 GraphicUsed by:117
Symbol 117 MovieClip {clip.FirstPowerGauge}Uses:112 114 115 116Used by:224 249 324
Symbol 118 GraphicUsed by:124
Symbol 119 FontUsed by:120 123
Symbol 120 TextUses:119Used by:124
Symbol 121 GraphicUsed by:124
Symbol 122 GraphicUsed by:124
Symbol 123 TextUses:119Used by:124
Symbol 124 ButtonUses:118 120 121 122 123Used by:224 249 324
Symbol 125 GraphicUsed by:126
Symbol 126 MovieClip {clip.SecondPowerGaugeMarisa}Uses:125Used by:224 249 324
Symbol 127 FontUsed by:128 132 184 230 231 259 260 325
Symbol 128 EditableTextUses:127Used by:224
Symbol 129 FontUsed by:131
Symbol 130 FontUsed by:133 134
Symbol 131 TextUses:129Used by:224 249 324
Symbol 132 EditableTextUses:127Used by:224
Symbol 133 TextUses:130Used by:224 249 324
Symbol 134 TextUses:130Used by:224 249 324
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:224 249 324  Timeline
Symbol 137 FontUsed by:138
Symbol 138 TextUses:137Used by:224 249 324
Symbol 139 GraphicUsed by:224 332
Symbol 140 GraphicUsed by:224 249 324
Symbol 141 FontUsed by:142 143 233
Symbol 142 TextUses:141Used by:224
Symbol 143 TextUses:141Used by:224 249 324
Symbol 144 GraphicUsed by:224
Symbol 145 GraphicUsed by:224
Symbol 146 GraphicUsed by:224 249 324
Symbol 147 GraphicUsed by:224 249 324
Symbol 148 GraphicUsed by:224 249 324
Symbol 149 GraphicUsed by:224 249 324
Symbol 150 GraphicUsed by:224 249 324
Symbol 151 BitmapUsed by:152
Symbol 152 GraphicUses:151Used by:224 249 324
Symbol 153 GraphicUsed by:182 224 249 324
Symbol 154 GraphicUsed by:182
Symbol 155 GraphicUsed by:182
Symbol 156 GraphicUsed by:182
Symbol 157 GraphicUsed by:182
Symbol 158 GraphicUsed by:182
Symbol 159 GraphicUsed by:182
Symbol 160 GraphicUsed by:182
Symbol 161 GraphicUsed by:182
Symbol 162 GraphicUsed by:182
Symbol 163 GraphicUsed by:182
Symbol 164 GraphicUsed by:182
Symbol 165 GraphicUsed by:182
Symbol 166 GraphicUsed by:182
Symbol 167 GraphicUsed by:182
Symbol 168 GraphicUsed by:182
Symbol 169 GraphicUsed by:182
Symbol 170 GraphicUsed by:182
Symbol 171 GraphicUsed by:182
Symbol 172 GraphicUsed by:182
Symbol 173 GraphicUsed by:182
Symbol 174 GraphicUsed by:182
Symbol 175 GraphicUsed by:182
Symbol 176 GraphicUsed by:182
Symbol 177 GraphicUsed by:182
Symbol 178 GraphicUsed by:182
Symbol 179 GraphicUsed by:182
Symbol 180 GraphicUsed by:182 224 249 324
Symbol 181 GraphicUsed by:182
Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20}Uses:153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181Used by:224 249 324
Symbol 183 GraphicUsed by:187
Symbol 184 EditableTextUses:127Used by:187
Symbol 185 FontUsed by:186
Symbol 186 TextUses:185Used by:187 326
Symbol 187 MovieClip {clip.ScoreCounter}Uses:183 184 186Used by:224 249 324
Symbol 188 GraphicUsed by:224
Symbol 189 GraphicUsed by:192
Symbol 190 FontUsed by:191 342 348 351 353
Symbol 191 TextUses:190Used by:192
Symbol 192 MovieClipUses:189 191Used by:193
Symbol 193 MovieClipUses:192Used by:224 249 324
Symbol 194 ShapeTweeningUsed by:224
Symbol 195 ShapeTweeningUsed by:224
Symbol 196 GraphicUsed by:224
Symbol 197 ShapeTweeningUsed by:224
Symbol 198 ShapeTweeningUsed by:224
Symbol 199 GraphicUsed by:224
Symbol 200 ShapeTweeningUsed by:224
Symbol 201 ShapeTweeningUsed by:224
Symbol 202 ShapeTweeningUsed by:224
Symbol 203 ShapeTweeningUsed by:224
Symbol 204 GraphicUsed by:224
Symbol 205 GraphicUsed by:224
Symbol 206 GraphicUsed by:224
Symbol 207 GraphicUsed by:224
Symbol 208 GraphicUsed by:224
Symbol 209 GraphicUsed by:224
Symbol 210 GraphicUsed by:224
Symbol 211 GraphicUsed by:224
Symbol 212 GraphicUsed by:224
Symbol 213 GraphicUsed by:224
Symbol 214 GraphicUsed by:224
Symbol 215 GraphicUsed by:224
Symbol 216 GraphicUsed by:218
Symbol 217 GraphicUsed by:218
Symbol 218 MovieClip {megatonPunch04_fla.back_keidai_MC2_bmp_24}Uses:22 216 23 217 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71Used by:224 249 324
Symbol 219 GraphicUsed by:224 249
Symbol 220 GraphicUsed by:221
Symbol 221 MovieClipUses:220Used by:222 223
Symbol 222 MovieClipUses:221Used by:224
Symbol 223 MovieClipUses:221Used by:224 324
Symbol 224 MovieClip {clip.ScenePunchUtsuho}Uses:72 108 109 110 111 117 124 126 20 128 131 132 133 134 136 138 139 140 142 143 144 145 146 147 148 149 150 152 182 187 188 193 194 195 196 153 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 180 218 219 222 223Used by:Timeline
Symbol 225 GraphicUsed by:226
Symbol 226 MovieClipUses:225Used by:227
Symbol 227 MovieClipUses:226Used by:228
Symbol 228 MovieClip {clip.PendulumSuika}Uses:227Used by:249
Symbol 229 GraphicUsed by:249
Symbol 230 EditableTextUses:127Used by:249
Symbol 231 EditableTextUses:127Used by:249
Symbol 232 GraphicUsed by:249
Symbol 233 TextUses:141Used by:249
Symbol 234 GraphicUsed by:249
Symbol 235 GraphicUsed by:249 336
Symbol 236 GraphicUsed by:249
Symbol 237 ShapeTweeningUsed by:249
Symbol 238 GraphicUsed by:249
Symbol 239 GraphicUsed by:249
Symbol 240 GraphicUsed by:249
Symbol 241 GraphicUsed by:249
Symbol 242 GraphicUsed by:249
Symbol 243 GraphicUsed by:249
Symbol 244 ShapeTweeningUsed by:249
Symbol 245 GraphicUsed by:249
Symbol 246 GraphicUsed by:249
Symbol 247 GraphicUsed by:249
Symbol 248 GraphicUsed by:249
Symbol 249 MovieClip {clip.ScenePunchSuika}Uses:72 108 109 229 111 117 124 126 228 230 131 231 133 134 136 138 232 140 233 143 234 146 147 148 149 150 152 182 187 235 236 193 153 237 238 239 240 241 242 243 244 245 246 247 248 180 218 219Used by:Timeline
Symbol 250 ShapeTweeningUsed by:255
Symbol 251 ShapeTweeningUsed by:255
Symbol 252 ShapeTweeningUsed by:255
Symbol 253 ShapeTweeningUsed by:255
Symbol 254 GraphicUsed by:255
Symbol 255 MovieClipUses:250 251 252 253 254Used by:256
Symbol 256 MovieClipUses:255Used by:257
Symbol 257 MovieClip {clip.Pendulum}Uses:256Used by:324
Symbol 258 GraphicUsed by:324
Symbol 259 EditableTextUses:127Used by:324
Symbol 260 EditableTextUses:127Used by:324
Symbol 261 GraphicUsed by:324 340
Symbol 262 GraphicUsed by:324
Symbol 263 GraphicUsed by:324
Symbol 264 GraphicUsed by:324
Symbol 265 GraphicUsed by:324
Symbol 266 ShapeTweeningUsed by:324
Symbol 267 ShapeTweeningUsed by:324
Symbol 268 GraphicUsed by:324
Symbol 269 GraphicUsed by:324
Symbol 270 GraphicUsed by:324
Symbol 271 GraphicUsed by:324
Symbol 272 GraphicUsed by:324
Symbol 273 GraphicUsed by:324
Symbol 274 GraphicUsed by:324
Symbol 275 GraphicUsed by:324
Symbol 276 GraphicUsed by:324
Symbol 277 GraphicUsed by:324
Symbol 278 GraphicUsed by:324
Symbol 279 ShapeTweeningUsed by:324
Symbol 280 ShapeTweeningUsed by:324
Symbol 281 GraphicUsed by:324
Symbol 282 GraphicUsed by:324
Symbol 283 ShapeTweeningUsed by:324
Symbol 284 ShapeTweeningUsed by:324
Symbol 285 ShapeTweeningUsed by:324
Symbol 286 ShapeTweeningUsed by:324
Symbol 287 GraphicUsed by:324
Symbol 288 GraphicUsed by:324
Symbol 289 ShapeTweeningUsed by:324
Symbol 290 ShapeTweeningUsed by:324
Symbol 291 ShapeTweeningUsed by:324
Symbol 292 ShapeTweeningUsed by:324
Symbol 293 ShapeTweeningUsed by:324
Symbol 294 ShapeTweeningUsed by:324
Symbol 295 GraphicUsed by:324
Symbol 296 GraphicUsed by:324
Symbol 297 GraphicUsed by:324
Symbol 298 ShapeTweeningUsed by:324
Symbol 299 ShapeTweeningUsed by:324
Symbol 300 ShapeTweeningUsed by:324
Symbol 301 GraphicUsed by:324
Symbol 302 GraphicUsed by:324
Symbol 303 GraphicUsed by:324
Symbol 304 ShapeTweeningUsed by:324
Symbol 305 GraphicUsed by:324
Symbol 306 ShapeTweeningUsed by:324
Symbol 307 ShapeTweeningUsed by:324
Symbol 308 ShapeTweeningUsed by:324
Symbol 309 ShapeTweeningUsed by:324
Symbol 310 ShapeTweeningUsed by:324
Symbol 311 ShapeTweeningUsed by:324
Symbol 312 ShapeTweeningUsed by:324
Symbol 313 ShapeTweeningUsed by:324
Symbol 314 GraphicUsed by:324
Symbol 315 ShapeTweeningUsed by:324
Symbol 316 ShapeTweeningUsed by:324
Symbol 317 ShapeTweeningUsed by:324
Symbol 318 ShapeTweeningUsed by:324
Symbol 319 ShapeTweeningUsed by:324
Symbol 320 GraphicUsed by:324
Symbol 321 ShapeTweeningUsed by:324
Symbol 322 ShapeTweeningUsed by:324
Symbol 323 ShapeTweeningUsed by:324
Symbol 324 MovieClip {clip.ScenePunchMarisa}Uses:72 108 109 258 111 117 124 126 257 259 131 260 133 134 136 138 261 140 143 262 263 146 147 148 149 150 152 182 187 264 265 193 266 267 268 153 269 270 271 272 273 274 275 276 277 278 180 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 218 223Used by:Timeline
Symbol 325 EditableTextUses:127Used by:326
Symbol 326 MovieClip {clip.ScoreCounter2}Uses:325 186Used by:Timeline
Symbol 327 GraphicUsed by:332
Symbol 328 GraphicUsed by:332 336 340
Symbol 329 GraphicUsed by:332
Symbol 330 GraphicUsed by:332
Symbol 331 GraphicUsed by:332 336 340
Symbol 332 MovieClip {clip.ButtonUtsuho}Uses:327 328 139 329 330 331Used by:Timeline
Symbol 333 GraphicUsed by:336
Symbol 334 GraphicUsed by:336
Symbol 335 GraphicUsed by:336
Symbol 336 MovieClip {clip.ButtonSuika}Uses:333 328 235 334 335 331Used by:Timeline
Symbol 337 GraphicUsed by:340
Symbol 338 GraphicUsed by:340
Symbol 339 GraphicUsed by:340
Symbol 340 MovieClip {clip.ButtonMarisa}Uses:337 328 261 338 339 331Used by:Timeline
Symbol 341 GraphicUsed by:343
Symbol 342 TextUses:190Used by:343
Symbol 343 MovieClip {clip.MedlayMaker}Uses:341 342Used by:Timeline
Symbol 344 BitmapUsed by:345
Symbol 345 GraphicUses:344Used by:Timeline
Symbol 346 GraphicUsed by:347
Symbol 347 MovieClipUses:346Used by:Timeline
Symbol 348 TextUses:190Used by:Timeline
Symbol 349 GraphicUsed by:350
Symbol 350 MovieClipUses:349Used by:Timeline
Symbol 351 TextUses:190Used by:352
Symbol 352 MovieClipUses:351Used by:Timeline
Symbol 353 TextUses:190Used by:Timeline
Symbol 354 FontUsed by:355 356 357
Symbol 355 TextUses:354Used by:Timeline
Symbol 356 TextUses:354Used by:Timeline
Symbol 357 TextUses:354Used by:Timeline

Instance Names

"bgmMedlay"Frame 1Symbol 343 MovieClip {clip.MedlayMaker}
"button_marisa"Frame 47Symbol 340 MovieClip {clip.ButtonMarisa}
"button_suika"Frame 47Symbol 336 MovieClip {clip.ButtonSuika}
"button_utsuho"Frame 47Symbol 332 MovieClip {clip.ButtonUtsuho}
"hiScoreViewMarisa"Frame 89Symbol 326 MovieClip {clip.ScoreCounter2}
"hiScoreViewSuika"Frame 89Symbol 326 MovieClip {clip.ScoreCounter2}
"hiScoreViewUtsuho"Frame 89Symbol 326 MovieClip {clip.ScoreCounter2}
"gaugeMask"Symbol 117 MovieClip {clip.FirstPowerGauge} Frame 1Symbol 114 MovieClip
"megaton"Symbol 187 MovieClip {clip.ScoreCounter} Frame 1Symbol 184 EditableText
"backKeidai"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 1Symbol 72 MovieClip {megatonPunch04_fla.back_keidai_MC_bmp_11}
"kanameishi"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 1Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12}
"gauge1"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 33Symbol 117 MovieClip {clip.FirstPowerGauge}
"buttonFirst"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 33Symbol 124 Button
"gauge2"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 38Symbol 126 MovieClip {clip.SecondPowerGaugeMarisa}
"buttonSecond"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 38Symbol 124 Button
"pend1"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 42Symbol 20 MovieClip {clip.PendulumUtsuho}
"textForTest"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 42Symbol 128 EditableText
"textForTest2"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 42Symbol 132 EditableText
"earth"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 214Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20}
"punchScore"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 316Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 386Symbol 193 MovieClip
"backKeidaiFullBreak"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 625Symbol 218 MovieClip {megatonPunch04_fla.back_keidai_MC2_bmp_24}
"punchScore"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 721Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 771Symbol 193 MovieClip
"backKeidai"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 1Symbol 72 MovieClip {megatonPunch04_fla.back_keidai_MC_bmp_11}
"kanameishi"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 1Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12}
"gauge1"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 33Symbol 117 MovieClip {clip.FirstPowerGauge}
"buttonFirst"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 33Symbol 124 Button
"gauge2"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 38Symbol 126 MovieClip {clip.SecondPowerGaugeMarisa}
"buttonSecond"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 38Symbol 124 Button
"pend1"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 42Symbol 228 MovieClip {clip.PendulumSuika}
"textForTest"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 42Symbol 230 EditableText
"textForTest2"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 42Symbol 231 EditableText
"earth"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 214Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20}
"punchScore"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 316Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 386Symbol 193 MovieClip
"backKeidaiFullBreak"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 625Symbol 218 MovieClip {megatonPunch04_fla.back_keidai_MC2_bmp_24}
"punchScore"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 721Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 771Symbol 193 MovieClip
"backKeidai"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 1Symbol 72 MovieClip {megatonPunch04_fla.back_keidai_MC_bmp_11}
"kanameishi"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 1Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12}
"gauge1"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 33Symbol 117 MovieClip {clip.FirstPowerGauge}
"buttonFirst"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 33Symbol 124 Button
"gauge2"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 38Symbol 126 MovieClip {clip.SecondPowerGaugeMarisa}
"buttonSecond"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 38Symbol 124 Button
"pend1"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 42Symbol 257 MovieClip {clip.Pendulum}
"textForTest"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 42Symbol 259 EditableText
"textForTest2"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 42Symbol 260 EditableText
"earth"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 214Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20}
"punchScore"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 316Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 386Symbol 193 MovieClip
"backKeidaiFullBreak"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 628Symbol 218 MovieClip {megatonPunch04_fla.back_keidai_MC2_bmp_24}
"punchScore"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 724Symbol 187 MovieClip {clip.ScoreCounter}
"newRecordText"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 774Symbol 193 MovieClip
"megaton"Symbol 326 MovieClip {clip.ScoreCounter2} Frame 1Symbol 325 EditableText

Special Tags

FileAttributes (69)Timeline Frame 1Access local files only, Metadata not present, AS3.

Labels

"characterSelect"Frame 47
"gameMarisa"Frame 119
"gameSuika"Frame 226
"gameUtsuho"Frame 333
"beforePunch"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 1
"broken1"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 9
"broken2"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 17
"broken3"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 25
"broken4"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 33
"broken5"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 41
"broken6"Symbol 108 MovieClip {megatonPunch04_fla.kanameishiMC01_12} Frame 49
"before"Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20} Frame 1
"broken1"Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20} Frame 11
"broken2"Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20} Frame 24
"broken3"Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20} Frame 36
"broken4"Symbol 182 MovieClip {megatonPunch04_fla.Earth_normalBreak01_20} Frame 55
"spellCard"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 47
"impact"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 114
"onlyRock"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 126
"breakGround"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 142
"breakEarth"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 159
"scoreResult"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 316
"fullBreak"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 389
"spellResult"Symbol 224 MovieClip {clip.ScenePunchUtsuho} Frame 721
"spellCard"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 47
"impact"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 114
"onlyRock"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 126
"breakGround"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 142
"breakEarth"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 159
"scoreResult"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 316
"fullBreak"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 389
"spellResult"Symbol 249 MovieClip {clip.ScenePunchSuika} Frame 721
"spellCard"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 47
"impact"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 114
"onlyRock"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 126
"breakGround"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 142
"breakEarth"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 159
"scoreResult"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 316
"fullBreak"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 389
"spellResult"Symbol 324 MovieClip {clip.ScenePunchMarisa} Frame 724




http://swfchan.com/27/130756/info.shtml
Created: 9/1 -2019 00:56:43 Last modified: 9/1 -2019 00:56:43 Server time: 20/04 -2024 11:12:18