public TakeDownTimer(Mobile from, BallistaEastAddon ballista, Item wep) : base(TimeSpan.FromSeconds(60.0))
 {
     m_Mobile        = from;
     m_ballista      = ballista;
     wpn             = (DwarvenBallista)wep;
     m_Mobile.Frozen = true;
     m_Mobile.SendMessage("You begin disassembling the ballista.");
 }
 public DestroyTimer(Mobile from, BallistaEastAddon ballista) : base(TimeSpan.FromSeconds(60.0))
 {
     m_Mobile        = from;
     weapon          = (BaseWeapon)ballista.Controller;
     m_ballista      = ballista;
     m_Mobile.Frozen = true;
     m_Mobile.SendMessage("You begin working to destroy the ballista!");
     m_Mobile.Emote("{0} begins destroying the ballista", m_Mobile.Name);
 }