home *** CD-ROM | disk | FTP | other *** search
- if(!gun_delay)
- {
- ghost = 1;
- this._alpha = 50;
- _root.star_sfx.start();
- }
- else if(!(gun_delay % 16))
- {
- if(_parent.cur_balls < _parent.max_balls / 2)
- {
- var r = _parent.get_rotation(this,_parent.player) - this._rotation;
- var i = 0;
- while(i < 12)
- {
- _parent.new_ball(this._x,this._y,r + this._rotation + i * 30,_parent.max_speed / 2,2);
- i++;
- }
- _root.shot_sfx.start();
- }
- }
- if(ghost)
- {
- this._rotation += 10;
- if(!(this._rotation % 180))
- {
- ghost = 0;
- this._alpha = 100;
- polarity = 1 - polarity;
- _parent.boss_helper.text.gotoAndStop(polarity + 1);
- }
- }
- gun_delay++;
- gun_delay %= 256;
- if(hp > 0)
- {
- prevFrame();
- play();
- }
-