add legends pokemon arceus pokemon moves scrapped from serebii.net

This commit is contained in:
julien 2024-10-11 07:54:16 +02:00
parent 45ab0ee739
commit 8453c31155
3 changed files with 5136 additions and 2879 deletions

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,18 @@
# 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):