public void BurnAsSecondaryEffect()
 {
     if (!Substitute.IsActive)
     {
         BurnDecreasingAttack = true;
         Pokemon.Burn();
     }
 }
 public void BurnAsPrimaryEffect()
 {
     BurnDecreasingAttack = true;
     Pokemon.Burn();
 }