public DecayTimer(PlagueBeastLord lord, int count, int deadline) : base(TimeSpan.Zero, TimeSpan.FromSeconds(1))
 {
     m_Lord     = lord;
     m_Count    = count;
     m_Deadline = deadline;
 }
 public DecayTimer(PlagueBeastLord lord) : this(lord, 0, 120)
 {
 }