public bool OnBuff()
 {
     if (target != null)
     {
         if (this.HP > 10)
         {
             this.HP -= 10;
             target.IncreaseHP(10);
             return(true);
         }
     }
     return(false);
 }