Moved Gen-I internal Pokémon IDs to their own Pokédex.

This commit is contained in:
Zhorken 2010-02-17 02:19:48 -05:00
parent 3b88a83fff
commit a2b0218035
2 changed files with 506 additions and 507 deletions

File diff suppressed because it is too large Load diff

View file

@ -305,7 +305,6 @@ class Pokemon(TableBase):
capture_rate = Column(Integer, nullable=False) capture_rate = Column(Integer, nullable=False)
base_experience = Column(Integer, nullable=False) base_experience = Column(Integer, nullable=False)
base_happiness = Column(Integer, nullable=False) base_happiness = Column(Integer, nullable=False)
gen1_internal_id = Column(Integer)
is_baby = Column(Boolean, nullable=False) is_baby = Column(Boolean, nullable=False)
has_gen4_fem_sprite = Column(Boolean, nullable=False) has_gen4_fem_sprite = Column(Boolean, nullable=False)
has_gen4_fem_back_sprite = Column(Boolean, nullable=False) has_gen4_fem_back_sprite = Column(Boolean, nullable=False)