internal static List <Skill> PureRandom(List <Skill> pool, int count)
        {
            GrabBag bag = new GrabBag(pool);

            return(bag.PullXFromBag(count));
        }
Beispiel #2
0
        static public List <Skill> RequiredSkills(List <Skill> pool, int count)
        {
            GrabBag bag = new GrabBag(pool);

            return(bag.PullXFromBag(count));
        }