mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add asymmetric flag
Ripped from Black 2. The flag is in personal.narc, in bit 6 of the color field (color & 0x40).
This commit is contained in:
parent
31de765d60
commit
7020b9d9cb
2 changed files with 676 additions and 674 deletions
File diff suppressed because it is too large
Load diff
|
@ -1521,6 +1521,8 @@ class Pokemon(TableBase):
|
||||||
info=dict(description=u"The height of the Pokémon, in decimeters (tenths of a meter)"))
|
info=dict(description=u"The height of the Pokémon, in decimeters (tenths of a meter)"))
|
||||||
weight = Column(Integer, nullable=False,
|
weight = Column(Integer, nullable=False,
|
||||||
info=dict(description=u"The weight of the Pokémon, in tenths of a kilogram (decigrams)"))
|
info=dict(description=u"The weight of the Pokémon, in tenths of a kilogram (decigrams)"))
|
||||||
|
is_asymmetric = Column(Boolean, nullable=False,
|
||||||
|
info=dict(description=u"True iff this pokemon exhibits bilateral asymmetry and should not have its sprites flipped"))
|
||||||
base_experience = Column(Integer, nullable=False,
|
base_experience = Column(Integer, nullable=False,
|
||||||
info=dict(description=u"The base EXP gained when defeating this Pokémon")) # XXX: Is this correct?
|
info=dict(description=u"The base EXP gained when defeating this Pokémon")) # XXX: Is this correct?
|
||||||
order = Column(Integer, nullable=False, index=True,
|
order = Column(Integer, nullable=False, index=True,
|
||||||
|
|
Loading…
Reference in a new issue