home *** CD-ROM | disk | FTP | other *** search
- function step()
- {
- _xscale = _yscale = scale;
- if(_Y > orig_y)
- {
- vy -= 0.1;
- }
- if(_Y <= orig_y)
- {
- vy += 0.1;
- }
- if(timer-- < 0)
- {
- scale *= 0.8;
- }
- else if(scale < 100)
- {
- scale *= 1.1;
- }
- if(scale < 10)
- {
- destroy();
- }
- if(_parent._parent.dragon_head.hitTest(_X,_Y,0))
- {
- var _loc3_ = 15;
- _parent._parent.deltaIceAmmo(15);
- var _loc2_ = _parent._parent.addObj("ammo_text_ice",_parent._parent.score_layer,_parent._parent.getNextScoreLevel());
- _loc2_.val = "ice +15";
- _loc2_._x = _X;
- _loc2_._y = _Y;
- _parent._parent.playSound("ammo.wav");
- destroy();
- }
- _Y = _Y + vy;
- }
- function destroy()
- {
- this.unloadMovie();
- }
- timer = 1000;
- vy = -1;
- orig_y = _Y;
- scale = 11;
-