Code:
private static async Task TransferAllButStrongestUnwantedPokemon(Client client)
{
System.Console.WriteLine("[!] firing up the meat grinder");
var unwantedPokemonTypes = new[]
{
PokemonId.Bulbasaur,
//PokemonId.Ivysaur,
//PokemonId.Venusaur,
PokemonId.CHARMANDER,
//PokemonId.Charmeleon,
//PokemonId.Charizard,
PokemonId.Squirtle,
//PokemonId.Wartortle,
//PokemonId.Blastoise,
PokemonId.Caterpie,
PokemonId.Metapod,
PokemonId.Butterfree,
PokemonId.Weedle,
PokemonId.Kakuna,
PokemonId.Beedrill,
PokemonId.Pidgey,
PokemonId.Pidgeotto,
PokemonId.Pidgeot,
PokemonId.Rattata,
PokemonId.Raticate,
PokemonId.Spearow,
PokemonId.Fearow,
PokemonId.Ekans,
//PokemonId.Arbok,
PokemonId.Pikachu,
//PokemonId.Raichu,
PokemonId.Sandshrew,
//PokemonId.Sandlash,
PokemonId.NidoranFemale,
PokemonId.Nidorina,
//PokemonId.Nidoqueen,
PokemonId.NidoranMale,
PokemonId.Nidorino,
//PokemonId.Nidoking,
PokemonId.Clefairy,
//PokemonId.Clefable,
PokemonId.Vulpix,
//PokemonId.Ninetales,
PokemonId.Jigglypuff,
//PokemonId.Wigglytuff,
PokemonId.Zubat,
PokemonId.Golbat,
PokemonId.Oddish,
PokemonId.Gloom,
//PokemonId.Vileplume,
PokemonId.Paras,
PokemonId.Parasect,
PokemonId.Venonat,
PokemonId.Venomoth,
//PokemonId.Diglett,
//PokemonId.Dugtrio,
PokemonId.Meowth,
//PokemonId.Persian,
PokemonId.Psyduck,
//PokemonId.Golduck,
PokemonId.Mankey,
PokemonId.Primeape,
PokemonId.Growlithe,
//PokemonId.Arcanine,
PokemonId.Poliwag,
PokemonId.Poliwhirl,
//PokemonId.Poliwrath,
PokemonId.Abra,
PokemonId.Kadabra,
//PokemonId.Alakhazam,
PokemonId.Machop,
//PokemonId.Machoke,
PokemonId.Machamp,
PokemonId.Bellsprout,
PokemonId.Weepinbell,
//PokemonId.Victreebell,
PokemonId.Tentacool,
//PokemonId.Tentacruel,
PokemonId.Geodude,
PokemonId.Graveler,
//PokemonId.Golem,
PokemonId.Ponyta,
//PokemonId.Rapidash,
PokemonId.Slowpoke,
//PokemonId.Slowbro,
PokemonId.Magnemite,
PokemonId.Magneton,
//PokemonId.Farfetch'd,
PokemonId.Doduo,
PokemonId.Dodrio,
PokemonId.Seel,
//PokemonId.Dewgong,
//PokemonId.Grimer,
//PokemonId.Muk,
PokemonId.Shellder,
PokemonId.Cloyster,
PokemonId.Gastly,
//PokemonId.Haunter,
//PokemonId.Gengar,
PokemonId.Onix,
PokemonId.Drowzee,
//PokemonId.Hypno,
PokemonId.Krabby,
PokemonId.Kingler,
PokemonId.Voltorb,
PokemonId.Electrode,
PokemonId.Exeggcute,
//PokemonId.Exeggutor,
PokemonId.Cubone,
PokemonId.Marowak,
//PokemonId.Hitmonlee,
//PokemonId.Hitmonchan,
//PokemonId.Lickitung,
PokemonId.Koffing,
//PokemonId.Weezing,
PokemonId.Rhyhorn,
//PokemonId.Rhydon,
//PokemonId.Chansey,
PokemonId.Tangela,
PokemonId.Kangaskhan,
PokemonId.Horsea,
PokemonId.Seadra,
PokemonId.Goldeen,
//PokemonId.Seaking,
PokemonId.Staryu,
//PokemonId.Starmie,
//PokemonId.Mr.Mime,
//PokemonId.Scyther,
PokemonId.Jynx,
//PokemonId.Electabuzz,
//PokemonId.Magmar,
PokemonId.Pinsir,
PokemonId.Tauros,
PokemonId.Magikarp,
//PokemonId.Gyarados,
//PokemonId.Lapras,
//PokemonId.Ditto,
PokemonId.Eevee,
//PokemonId.Vaporeon,
//PokemonId.Jolteon,
//PokemonId.Flareon,
PokemonId.Porygon,
PokemonId.Omanyte,
//PokemonId.Omastar,
PokemonId.Kabuto,
PokemonId.Kabutops,
//PokemonId.Aerodactyl,
//PokemonId.Snorlax,
//PokemonId.Articuno,
//PokemonId.Zapdos,
//PokemonId.Moltres,
PokemonId.Dratini,
//PokemonId.Dragonair,
//PokemonId.Dragonite
//PokemonId.Mewtwo,
//PokemonId.Mew
};