Hello,
As of now, I can search which moves are Ice-type, physical, with 100% accuracy and at least 60 base power with this command :
I can also search which pokemons are psychic type and can learn one of these moves, let's say Avalanche, with this command :
But now, if I want to know which pokemons are psychic type and can learn any Ice-type, physical, with 100% accuracy and at least 60 base power move, I need to retype the last line with every move given with the first.
I specifically cherrypicked an example where I wouldn't get too many results, but sometimes I'm looking for very generic things and I get 100+ results for every command ...
What I'd be looking for would be something like this :
This way, you could look for a pokemon who learns at least one of the moves given as a result in the movesearch argument.
As of now, I can search which moves are Ice-type, physical, with 100% accuracy and at least 60 base power with this command :
Code:
/ms ice type, physical, acc=100, bp>55
=> Avalanche, Glacial Lance, Ice Punch
I can also search which pokemons are psychic type and can learn one of these moves, let's say Avalanche, with this command :
Code:
/ds psychic type, avalanche
=> Calyrex-Ice, Jynx, Lugia, Mew, Mewtwo, Mr. Mime-Galar, Mr. Rime, Slowbro, Slowbro-Galar, Slowking, Slowking-Galar, Smoochum, Starmie
But now, if I want to know which pokemons are psychic type and can learn any Ice-type, physical, with 100% accuracy and at least 60 base power move, I need to retype the last line with every move given with the first.
I specifically cherrypicked an example where I wouldn't get too many results, but sometimes I'm looking for very generic things and I get 100+ results for every command ...
What I'd be looking for would be something like this :
Code:
/ds psychic type, (ms ice type, physical, acc=100, bp>55)
=> Abra, Alakazam, Azelf, Calyrex-Ice, Gallade, Gardevoir, Jirachi, Jynx, Kadabra, Kirlia, Lugia, Mesprit, Metagross, Metang, Mew, Mewtwo, Mr. Mime, Mr. Mime-Galar, Mr. Rime, Ralts, Reuniclus, Slowbro, Slowbro-Galar, Slowking, Slowking-Galar, Smoochum, Starmie, Uxie
This way, you could look for a pokemon who learns at least one of the moves given as a result in the movesearch argument.