Example #1
0
 public StygianFireballTimer(StygianDragon dragon, Mobile combatant)
     : base(TimeSpan.FromMilliseconds(200), TimeSpan.FromMilliseconds(200))
 {
     m_Dragon    = dragon;
     m_Combatant = combatant;
     m_Ticks     = 0;
     Start();
 }
Example #2
0
        public void DoMeteor()
        {
            Map map = this.Map;

            if (map != null)
            {
                Mobile focus = GetRandomTarget(8, true);

                if (focus != null)
                {
                    StygianDragon.CrimsonMeteor(this, focus.Location, 75, 100, true, false, true, 20, 20, 15);
                }
            }
        }