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:
Andrew Ekstedt 2012-12-07 14:03:27 -08:00
parent 31de765d60
commit 7020b9d9cb
2 changed files with 676 additions and 674 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1521,6 +1521,8 @@ class Pokemon(TableBase):
info=dict(description=u"The height of the Pokémon, in decimeters (tenths of a meter)"))
weight = Column(Integer, nullable=False,
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,
info=dict(description=u"The base EXP gained when defeating this Pokémon")) # XXX: Is this correct?
order = Column(Integer, nullable=False, index=True,