merge with phalt
BIN
data/pokemon_sprites/10006.png
Normal file
After Width: | Height: | Size: 763 B |
BIN
data/pokemon_sprites/10007.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/pokemon_sprites/10008.png
Normal file
After Width: | Height: | Size: 759 B |
BIN
data/pokemon_sprites/10009.png
Normal file
After Width: | Height: | Size: 938 B |
BIN
data/pokemon_sprites/10010.png
Normal file
After Width: | Height: | Size: 865 B |
BIN
data/pokemon_sprites/10011.png
Normal file
After Width: | Height: | Size: 856 B |
BIN
data/pokemon_sprites/10012.png
Normal file
After Width: | Height: | Size: 824 B |
BIN
data/pokemon_sprites/10013.png
Normal file
After Width: | Height: | Size: 653 B |
BIN
data/pokemon_sprites/10014.png
Normal file
After Width: | Height: | Size: 561 B |
BIN
data/pokemon_sprites/10015.png
Normal file
After Width: | Height: | Size: 696 B |
BIN
data/pokemon_sprites/10016.png
Normal file
After Width: | Height: | Size: 539 B |
BIN
data/pokemon_sprites/10017.png
Normal file
After Width: | Height: | Size: 632 B |
BIN
data/pokemon_sprites/10018.png
Normal file
After Width: | Height: | Size: 800 B |
BIN
data/pokemon_sprites/10019.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/pokemon_sprites/10020.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/pokemon_sprites/10021.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/pokemon_sprites/10022.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
data/pokemon_sprites/10023.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
data/pokemon_sprites/10024.png
Normal file
After Width: | Height: | Size: 934 B |
BIN
data/pokemon_sprites/10025.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
data/pokemon_sprites/10026.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
BIN
data/pokemon_sprites/10027.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/pokemon_sprites/10028.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/pokemon_sprites/10029.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
data/pokemon_sprites/10030.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/pokemon_sprites/10031.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/pokemon_sprites/10032.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
data/pokemon_sprites/10061.png
Normal file
After Width: | Height: | Size: 930 B |
BIN
data/pokemon_sprites/670-eternal.png
Normal file
After Width: | Height: | Size: 930 B |
|
@ -1,5 +0,0 @@
|
|||
<<<<<<< Updated upstream
|
||||
from .build import *
|
||||
=======
|
||||
from build import *
|
||||
>>>>>>> Stashed changes
|
2468
data/v2/build.py
26
pokemon_v2/migrations/0004_pokemonsprites.py
Normal file
|
@ -0,0 +1,26 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('pokemon_v2', '0003_auto_20160128_0523'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='PokemonSprites',
|
||||
fields=[
|
||||
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
|
||||
('sprites', models.CharField(max_length=500)),
|
||||
('pokemon', models.ForeignKey(related_name='pokemonsprites', blank=True, to='pokemon_v2.Pokemon', null=True)),
|
||||
],
|
||||
options={
|
||||
'abstract': False,
|
||||
},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
]
|
|
@ -1402,3 +1402,8 @@ class PokemonImageSet(HasPokemon):
|
|||
back_female = models.CharField(max_length=200, blank=True, null=True)
|
||||
back_shiny = models.CharField(max_length=200, blank=True, null=True)
|
||||
back_shiny_female = models.CharField(max_length=200, blank=True, null=True)
|
||||
|
||||
|
||||
class PokemonSprites(HasPokemon):
|
||||
|
||||
sprites = models.CharField(max_length=500)
|