Can I add in here more pokemon I do not want to transfer? Or do I have to do that somewhere else?
Code:
public ICollection<PokemonId> PokemonsNotToTransfer
{
get
{
//Type of pokemons not to transfer
var defaultText = new string[] { "Dragonite", "Charizard", "Zapdos", "Snorlax", "Alakazam", "Mew", "Mewtwo" };
_pokemonsNotToTransfer = _pokemonsNotToTransfer ?? LoadPokemonList("PokemonsNotToTransfer", defaultText);
return _pokemonsNotToTransfer;
}
}
Hmm don't think so since it says:
Code:
public ICollection<PokemonId> PokemonsNotToCatch
{
get
{
//Type of pokemons not to catch
var defaultText = new string[] { "Zubat", "Pidgey", "Rattata" };
_pokemonsNotToCatch = _pokemonsNotToCatch ?? LoadPokemonList("PokemonsNotToCatch", defaultText);
return _pokemonsNotToCatch;
}
}
So the Bot should not catch any Rattataa and mine is catching tons ...
How to fix that?