add mastery column for pokemon move entity and add LPA pokemon mooves scrapped from serebii

This commit is contained in:
julien 2024-09-29 09:14:49 +02:00
parent 7095195a93
commit 9a327d6260
2 changed files with 5113 additions and 2874 deletions

File diff suppressed because it is too large Load diff

View file

@ -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):