Grover-c13/PokeGOAPI-Java

How to get type and dps value of each move?

tommywuhaojie opened this issue · 1 comments

is there a way to get the dps and type for the move I got from the MoveList enum?

hrk commented
MoveSettings meta = PokemonMeta.getMoveSettings(xxx);
double dps = 1000*meta.getPower()/meta.getDurationMs();
PokemonType type = meta.getPokemonType()