mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
B&W: Added all new Pokémon! Forms now start at 10001.
This commit is contained in:
parent
f3ae167f8b
commit
c42ce7c1be
14 changed files with 4122 additions and 2126 deletions
pokedex/db
|
@ -462,7 +462,7 @@ class Pokemon(TableBase):
|
|||
weight = Column(Integer, nullable=False)
|
||||
species = Column(Unicode(16), nullable=False)
|
||||
color_id = Column(Integer, ForeignKey('pokemon_colors.id'), nullable=False)
|
||||
pokemon_shape_id = Column(Integer, ForeignKey('pokemon_shapes.id'), nullable=False)
|
||||
pokemon_shape_id = Column(Integer, ForeignKey('pokemon_shapes.id'), nullable=True)
|
||||
habitat_id = Column(Integer, ForeignKey('pokemon_habitats.id'), nullable=True)
|
||||
gender_rate = Column(Integer, nullable=False)
|
||||
capture_rate = Column(Integer, nullable=False)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue