From f4b73bcd5a6db03413fe1bc1e44c2503060a3843 Mon Sep 17 00:00:00 2001 From: "Lynn \"Zhorken\" Vaughan" Date: Sat, 21 Jun 2014 22:47:17 -0400 Subject: [PATCH] Clarify that natures.game_index is 1-indexed. Given that nature was determined by pid % 25 for a long time, I think this is important to note. --- 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 9e69f7b..702c2df 100644 --- a/pokedex/db/tables.py +++ b/pokedex/db/tables.py @@ -1393,7 +1393,7 @@ class Nature(TableBase): likes_flavor_id = Column(Integer, ForeignKey('contest_types.id'), nullable=False, info=dict(description=u"ID of the Berry flavor the Pokémon likes (if hates_flavor_id is the same, the effects cancel out)")) game_index = Column(Integer, unique=True, nullable=False, - info=dict(description=u"This nature's internal ID in the games.")) + info=dict(description=u"This nature's internal order in the games (starting from 1, not 0).")) @property def is_neutral(self):