mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Morning is not a separate time of day for evolution.
As far as evolution is concerned, it's always day or night--there is no in-between period when Eevee will not evolve into Espeon or Umbreon, and there are no Pokémon that only evolve during the early part of the day. Having 'morning' as a separate value is thus misleading, albeit not terribly misleading since it never appeared outside of tables.py.
This commit is contained in:
parent
2f4bc6a771
commit
6c286ffa6f
1 changed files with 1 additions and 1 deletions
|
@ -984,7 +984,7 @@ class PokemonEvolution(TableBase):
|
||||||
info=dict(description=u"The ID of the location the evolution must be triggered at."))
|
info=dict(description=u"The ID of the location the evolution must be triggered at."))
|
||||||
held_item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
|
held_item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
|
||||||
info=dict(description=u"The ID of the item the Pokémon must hold."))
|
info=dict(description=u"The ID of the item the Pokémon must hold."))
|
||||||
time_of_day = Column(Enum('morning', 'day', 'night', name='pokemon_evolution_time_of_day'), nullable=True,
|
time_of_day = Column(Enum('day', 'night', name='pokemon_evolution_time_of_day'), nullable=True,
|
||||||
info=dict(description=u"The required time of day."))
|
info=dict(description=u"The required time of day."))
|
||||||
known_move_id = Column(Integer, ForeignKey('moves.id'), nullable=True,
|
known_move_id = Column(Integer, ForeignKey('moves.id'), nullable=True,
|
||||||
info=dict(description=u"The ID of the move the Pokémon must know."))
|
info=dict(description=u"The ID of the move the Pokémon must know."))
|
||||||
|
|
Loading…
Reference in a new issue