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

Add a description of the shape picks from Bulbapédia

Add the french translation for this table
http://bulbapedia.bulbagarden.net/wiki/List_of_Pok%C3%A9mon_by_body_style
This commit is contained in:
Philippe Matray 2016-08-17 13:18:51 +02:00
parent 22bfacb590
commit d6d916e281
2 changed files with 32 additions and 15 deletions
pokedex/db

View file

@ -1977,6 +1977,9 @@ create_translation_table('pokemon_shape_prose', PokemonShape, 'prose',
awesome_name = Column(Unicode(79), nullable=True,
doc=u"A splendiferous name of the body shape",
info=dict(format='plaintext')),
description = Column(UnicodeText, nullable=True,
doc=u"A detailed description of the body shape",
info=dict(format='plaintext')),
)
class PokemonSpecies(TableBase):