home *** CD-ROM | disk | FTP | other *** search
- function step()
- {
- _X = stuckTo._x + x_offset;
- _Y = stuckTo._y + y_offset;
- m_size *= 0.99;
- _xscale = _yscale = m_size;
- if(m_size < 10)
- {
- destroy();
- }
- if(timerDamage-- < 0)
- {
- timerDamage = 20;
- if(stuckTo.etype != "snot" && stuckTo.etype != "air_ship" && stuckTo.etype != "ice")
- {
- if(stuckTo.etype == "steel")
- {
- stuckTo.takeDamage(Math.floor(m_size / 10) + 2,_X,_Y);
- }
- else
- {
- stuckTo.takeDamage(Math.floor(m_size / 20) + 1,_X,_Y);
- }
- }
- }
- }
- function destroy()
- {
- this.unloadMovie();
- }
- var timerDamage = 20;
-