public DigTimer( Mobile from, PumpkinheadShovel shovel, TimeSpan duration ) : base( duration ) 
			{ 
				Priority = TimerPriority.OneSecond;
				m_From = from;
				m_Item = shovel;
			}
 public DigTimer(Mobile from, PumpkinheadShovel shovel, TimeSpan duration) : base(duration)
 {
     Priority = TimerPriority.OneSecond;
     m_From   = from;
     m_Item   = shovel;
 }
			public PumpkinTarget( PumpkinheadShovel item, Mobile from ) : base( 12, false, TargetFlags.None )
			{
				m_Item = item;
				m_From = from;
			}
 public PumpkinTarget(PumpkinheadShovel item, Mobile from) : base(12, false, TargetFlags.None)
 {
     m_Item = item;
     m_From = from;
 }