public static SpeciesType[] StartersForGen(int gen) { Assertions.AssertIn(1, 6, gen); return(AllStarters.Skip((gen - 1) * 3).Take(3).ToArray()); }