Merge pull request #1149 from programgames/new-lpa-pokemon-moves

Add legends pokemon arceus pokemon moves scrapped from serebii.net
This commit is contained in:
Alessandro Pezzè 2024-10-17 17:28:57 +09:00 committed by GitHub
commit fbb24bf103
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5135 additions and 2879 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,17 @@
# Generated by Django 3.2.23 on 2024-09-22 08:32
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("pokemon_v2", "0016_typesprites"),
]
operations = [
migrations.AddField(
model_name="pokemonmove",
name="mastery",
field=models.IntegerField(blank=True, null=True),
),
]

View file

@ -1761,6 +1761,7 @@ class MoveLearnMethodDescription(IsDescription, HasMoveLearnMethod):
class PokemonMove(HasPokemon, HasMoveLearnMethod, HasVersionGroup, HasMove, HasOrder):
level = models.IntegerField()
mastery = models.IntegerField(null=True, blank=True)
class PokemonShape(HasName):