mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add is_mega column to pokemon_forms.
This commit is contained in:
parent
ab6beabc55
commit
b412bfaa8e
2 changed files with 881 additions and 879 deletions
File diff suppressed because it is too large
Load diff
|
@ -1686,6 +1686,8 @@ class PokemonForm(TableBase):
|
|||
info=dict(description=u'Set for exactly one form used as the default for each pokemon (not necessarily species).'))
|
||||
is_battle_only = Column(Boolean, nullable=False,
|
||||
info=dict(description=u'Set iff the form can only appear in battle.'))
|
||||
is_mega = Column(Boolean, nullable=False,
|
||||
info=dict(description=u'Records whether this form is a Mega Evolution.'))
|
||||
form_order = Column(Integer, nullable=False, autoincrement=False,
|
||||
info=dict(description=u"The order in which forms should be sorted within a species' forms. Multiple forms may have equal order, in which case they should fall back on sorting by name. "
|
||||
u"Used in generating `pokemon_forms.order` and `pokemon.order`."))
|
||||
|
|
Loading…
Reference in a new issue