mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-22 03:13:06 +00:00
add mastery column for pokemon move entity and add LPA pokemon mooves scrapped from serebii
This commit is contained in:
parent
7095195a93
commit
9a327d6260
2 changed files with 5113 additions and 2874 deletions
File diff suppressed because it is too large
Load diff
|
@ -1761,6 +1761,7 @@ class MoveLearnMethodDescription(IsDescription, HasMoveLearnMethod):
|
||||||
|
|
||||||
class PokemonMove(HasPokemon, HasMoveLearnMethod, HasVersionGroup, HasMove, HasOrder):
|
class PokemonMove(HasPokemon, HasMoveLearnMethod, HasVersionGroup, HasMove, HasOrder):
|
||||||
level = models.IntegerField()
|
level = models.IntegerField()
|
||||||
|
mastery = models.IntegerField(null=True, blank=True)
|
||||||
|
|
||||||
|
|
||||||
class PokemonShape(HasName):
|
class PokemonShape(HasName):
|
||||||
|
|
Loading…
Reference in a new issue