home *** CD-ROM | disk | FTP | other *** search
- this._x += dx * _parent.max_speed / 4;
- this._y += dy * _parent.max_speed / 4;
- this._rotation += 10;
- if(Math.abs(this._x) > _parent.frame._width / 2 - 64)
- {
- this.dx = - this.dx;
- }
- if(Math.abs(this._y) > _parent.frame._height / 2 - 64)
- {
- this.dy = - this.dy;
- }
- if(_parent.cur_balls < _parent.max_balls / 2)
- {
- if(!(gun_delay % 8))
- {
- _parent.new_ball(this._x,this._y,this._rotation,_parent.max_speed / 2,2);
- _parent.new_ball(this._x,this._y,this._rotation + 90,_parent.max_speed / 2,2);
- _parent.new_ball(this._x,this._y,this._rotation + 180,_parent.max_speed / 2,2);
- _parent.new_ball(this._x,this._y,this._rotation - 90,_parent.max_speed / 2,2);
- _root.shot_sfx.start();
- }
- }
- gun_delay++;
- gun_delay %= 64;
- if(hp > 0)
- {
- prevFrame();
- play();
- }
-