mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Give Pokemon an order column.
Basically national order, but with families grouped together.
This commit is contained in:
parent
6be23de775
commit
6f89723dd5
2 changed files with 670 additions and 668 deletions
File diff suppressed because it is too large
Load diff
|
@ -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"))
|
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,
|
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"))
|
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
|
### Stuff to handle alternate Pokémon forms
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue