public void PerformAction()
        {
            Fighter target = OposedTeam().HigherFighterPercentage();

            if (target != null)
            {
                var path = target.FindPathTo(this);

                if (path.Count() > 0)
                {
                    this.Move(path.ToList());
                }
            }
        }