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

Fixing typos like a winner.

This commit is contained in:
Brigit Lemanski 2010-12-07 20:38:16 -05:00
parent 42142f90a0
commit 6c02987fb6
2 changed files with 2 additions and 2 deletions
pokedex/db

View file

@ -683,7 +683,7 @@ class Move(TableBase):
info=dict(description="ID of the damage class (physical/special) of the move"))
effect_id = Column(Integer, ForeignKey('move_effects.id'), nullable=False,
info=dict(description="ID of the move's effect"))
effect_chance = Column(Integer, nullable=True
effect_chance = Column(Integer, nullable=True,
info=dict(description="The chance for a secondary effect. What this is a chance of is specified by the move's effect."))
contest_type_id = Column(Integer, ForeignKey('contest_types.id'), nullable=True,
info=dict(description="ID of the move's Contest type (e.g. cool or smart)"))