private static List <uint> GetRandomTargetNPVP(List <uint> list)
        {
            List <uint> tids        = new List <uint>();
            int         size        = list.Count;
            int         seed        = Fight.Model.FightProxy.instance.randomSeed;
            int         randomCount = RandomUtil.GetRandomBySeedNoEnd(seed, 1, size + 1);

            for (int i = 0; i < randomCount; i++)
            {
                int index = RandomUtil.GetRandomBySeedNoEnd(i, 0, size);
                tids.Add(list[index]);
            }
            return(tids);
        }