1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Added a couple extra female back sprite flags, new in Platinum.

Renamed the female-sprite columns as for 'gen4' rather than 'dp'.
This commit is contained in:
Eevee 2009-03-25 20:48:36 -04:00
parent 85ee27dedd
commit 67af605e8d
2 changed files with 9 additions and 9 deletions
pokedex/db

View file

@ -109,8 +109,8 @@ class Pokemon(TableBase):
base_happiness = Column(Integer, nullable=False)
gen1_internal_id = Column(Integer)
is_baby = Column(Boolean, nullable=False)
has_dp_fem_sprite = Column(Boolean, nullable=False)
has_dp_fem_back_sprite = Column(Boolean, nullable=False)
has_gen4_fem_sprite = Column(Boolean, nullable=False)
has_gen4_fem_back_sprite = Column(Boolean, nullable=False)
class PokemonAbility(TableBase):
__tablename__ = 'pokemon_abilities'