public override bool OnChooseCard(BattleUnitModel owner)
 {
     foreach (BattleUnitModel unit in BattleObjectManager.instance.GetAliveList_opponent(owner.faction))
     {
         if (owner.IsTargetable(unit))
         {
             return(true);
         }
     }
     return(false);
 }