From ffd472491bd918c36f53841394feff492ef627c2 Mon Sep 17 00:00:00 2001 From: Andrew Ekstedt Date: Fri, 26 Mar 2021 20:05:46 -0700 Subject: [PATCH] Add "dusk" as a valid time of day in PokemonEvolution For Lycanroc's Dusk Form --- pokedex/db/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pokedex/db/tables.py b/pokedex/db/tables.py index 72b0261..f3f0aab 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -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.")