Give Pokemon an order column.

Basically national order, but with families grouped together.
This commit is contained in:
a_magical_me 2010-12-08 18:20:21 -08:00
parent 6be23de775
commit 6f89723dd5
2 changed files with 670 additions and 668 deletions

File diff suppressed because it is too large Load diff

View file

@ -841,6 +841,8 @@ class Pokemon(TableBase):
info=dict(description=u"Set iff the species' female front sprite is different from the male's in generation IV"))
has_gen4_fem_back_sprite = Column(Boolean, nullable=False,
info=dict(description=u"Set iff the species' female back sprite is different from the male's in generation IV"))
order = Column(Integer, nullable=False, index=True,
info=dict(description=u"Order for sorting. Almost national order, except families and forms are grouped together."))
### Stuff to handle alternate Pokémon forms