mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Improve PalPark table docs slightly.
Also add format='identifier' to PalParkArea.identifier, which was causing a failure in test_schema.
This commit is contained in:
parent
2af1d5f428
commit
5ddb7911a2
1 changed files with 6 additions and 6 deletions
|
@ -1021,24 +1021,24 @@ class NaturePokeathlonStat(TableBase):
|
||||||
info=dict(description="Maximum change"))
|
info=dict(description="Maximum change"))
|
||||||
|
|
||||||
class PalPark(TableBase):
|
class PalPark(TableBase):
|
||||||
u"""Pal Park encounter info
|
u"""Data for the Pal Park mini-game in Generation IV
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__tablename__ = 'pal_park'
|
__tablename__ = 'pal_park'
|
||||||
__singlename__ = 'pal_park'
|
__singlename__ = 'pal_park'
|
||||||
|
|
||||||
species_id = Column(Integer, ForeignKey('pokemon_species.id'), primary_key=True,
|
species_id = Column(Integer, ForeignKey('pokemon_species.id'), primary_key=True,
|
||||||
info=dict(description="ID of the Pokémon species this data pertains to"))
|
info=dict(description="The Pokémon species this data pertains to"))
|
||||||
|
|
||||||
area_id = Column(Integer, ForeignKey('pal_park_areas.id'), nullable=False,
|
area_id = Column(Integer, ForeignKey('pal_park_areas.id'), nullable=False,
|
||||||
info=dict(description="The area in which this Pokémon can be found"))
|
info=dict(description="The area in which this Pokémon is found"))
|
||||||
base_score = Column(Integer, nullable=False,
|
base_score = Column(Integer, nullable=False,
|
||||||
info=dict(description="Value used in calculating the player's score in a Pal Park run"))
|
info=dict(description="Used in calculating the player's score at the end of a Pal Park run"))
|
||||||
rate = Column(Integer, nullable=False,
|
rate = Column(Integer, nullable=False,
|
||||||
info=dict(description="Base rate for encountering this Pokémon"))
|
info=dict(description="Base rate for encountering this Pokémon"))
|
||||||
|
|
||||||
class PalParkArea(TableBase):
|
class PalParkArea(TableBase):
|
||||||
u"""Pal Park areas enum
|
u"""A distinct area of Pal Park in which Pokémon appear.
|
||||||
"""
|
"""
|
||||||
__tablename__ = 'pal_park_areas'
|
__tablename__ = 'pal_park_areas'
|
||||||
__singlename__ = 'pal_park_area'
|
__singlename__ = 'pal_park_area'
|
||||||
|
@ -1046,7 +1046,7 @@ class PalParkArea(TableBase):
|
||||||
id = Column(Integer, primary_key=True, nullable=False,
|
id = Column(Integer, primary_key=True, nullable=False,
|
||||||
info=dict(description="A numeric ID"))
|
info=dict(description="A numeric ID"))
|
||||||
identifier = Column(Unicode(8), nullable=False,
|
identifier = Column(Unicode(8), nullable=False,
|
||||||
info=dict(description="An identifier"))
|
info=dict(description="An identifier", format='identifier'))
|
||||||
|
|
||||||
create_translation_table('pal_park_area_names', PalParkArea, 'names',
|
create_translation_table('pal_park_area_names', PalParkArea, 'names',
|
||||||
name = Column(Unicode(8), nullable=False, index=True,
|
name = Column(Unicode(8), nullable=False, index=True,
|
||||||
|
|
Loading…
Reference in a new issue