1
0
Fork 0
mirror of https://github.com/veekun/pokedex.git synced 2024-08-20 18:16:34 +00:00

Re-re-ripped HG/SS encounters.

Turns out "fishing swarm 2" is time of day; it represents some water
Pokémon that only appear at night.
This commit is contained in:
Eevee 2010-01-21 00:45:21 -08:00
parent 49be86a9d3
commit e163c13038
4 changed files with 17433 additions and 21090 deletions
pokedex/db

View file

@ -89,7 +89,7 @@ class EncounterConditionValue(TableBase):
id = Column(Integer, primary_key=True, nullable=False)
encounter_condition_id = Column(Integer, ForeignKey('encounter_conditions.id'), primary_key=False, nullable=False, autoincrement=False)
name = Column(Unicode(64), nullable=False)
default = Column(Boolean, nullable=False)
is_default = Column(Boolean, nullable=False)
class EncounterConditionValueMap(TableBase):
"""Maps encounters to the specific conditions under which they occur."""