home *** CD-ROM | disk | FTP | other *** search
- var really = this._parent._parent._parent.zel;
- var mag = this._parent._parent;
- if(really._y > mag._y - 35 && really._y < mag._y + mag._height / 2)
- {
- if(really._x > mag._x - 80 && really._x < mag._x + 80)
- {
- if(!really.blinking)
- {
- this._parent._parent._parent.hurt.start();
- really.guts.gotoAndStop("hit");
- if(really.fairied != true)
- {
- really.attacking = true;
- really.blinking = true;
- really.jumping = true;
- }
- really.Xvel += 10 * (mag._xscale / 100);
- really.Yvel = 15;
- if(really.shielded)
- {
- really.life -= 10;
- }
- else
- {
- really.life -= 20;
- }
- if(really.fairied)
- {
- really.life = 0;
- }
- if(really.life > 0)
- {
- this._parent._parent._parent.dash.hlth._xscale = really.life;
- }
- else
- {
- this._parent._parent._parent.dash.hlth._xscale = 0;
- really.life = 0;
- this._parent._parent._parent.myDeath();
- this._parent._parent._parent.pausy = true;
- really.guts.gotoAndStop("hit");
- }
- this.double = true;
- }
- }
- }
-