mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add "dusk" as a valid time of day in PokemonEvolution
For Lycanroc's Dusk Form
This commit is contained in:
parent
3dd8c61a7d
commit
ffd472491b
1 changed files with 1 additions and 1 deletions
|
@ -1809,7 +1809,7 @@ class PokemonEvolution(TableBase):
|
|||
doc=u"The ID of the location the evolution must be triggered at.")
|
||||
held_item_id = Column(Integer, ForeignKey('items.id'), nullable=True,
|
||||
doc=u"The ID of the item the Pokémon must hold.")
|
||||
time_of_day = Column(Enum('day', 'night', name='pokemon_evolution_time_of_day'), nullable=True,
|
||||
time_of_day = Column(Enum('day', 'night', 'dusk', name='pokemon_evolution_time_of_day'), nullable=True,
|
||||
doc=u"The required time of day.")
|
||||
known_move_id = Column(Integer, ForeignKey('moves.id'), nullable=True,
|
||||
doc=u"The ID of the move the Pokémon must know.")
|
||||
|
|
Loading…
Reference in a new issue