mirror of
https://github.com/PokeAPI/pokeapi
synced 2024-11-12 23:07:17 +00:00
add legends pokemon arceus pokemon moves scrapped from serebii.net
This commit is contained in:
parent
45ab0ee739
commit
8453c31155
3 changed files with 5136 additions and 2879 deletions
File diff suppressed because it is too large
Load diff
18
pokemon_v2/migrations/0017_pokemonmovemastery.py
Normal file
18
pokemon_v2/migrations/0017_pokemonmovemastery.py
Normal 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),
|
||||
),
|
||||
]
|
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue