mapped_classes = []
class TableMetaclass(DeclarativeMeta):
def __init__(cls, name, bases, attrs):
mapped_classes = []
class TableMetaclass(DeclarativeMeta):
def __init__(cls, name, bases, attrs):
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
)
create_translation_table('ability_prose', Ability, 'prose',
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
)
create_translation_table('ability_prose', Ability, 'prose',
info=dict(description="The base number of hearts the user's opponent loses"))
create_translation_table('contest_effect_prose', ContestEffect, 'prose',
info=dict(description="The base number of hearts the user's opponent loses"))
create_translation_table('contest_effect_prose', ContestEffect, 'prose',
info=dict(description="The in-game description of this effect", official=True, format='gametext')),
info=dict(description="The in-game description of this effect", official=True, format='gametext')),
create_translation_table('contest_type_names', ContestType, 'names',
relation_lazy='joined',
create_translation_table('contest_type_names', ContestType, 'names',
relation_lazy='joined',
- name = Column(Unicode(6), nullable=False, index=True,
+ name = Column(Unicode(6), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=True)),
info=dict(description="The name", format='plaintext', official=True)),
info=dict(description="The name of the corresponding Berry flavor", official=True, format='plaintext')),
info=dict(description="The name of the corresponding Berry flavor", official=True, format='plaintext')),
info=dict(description=u"The name of the corresponding Pokéblock color", official=True, format='plaintext')),
)
info=dict(description=u"The name of the corresponding Pokéblock color", official=True, format='plaintext')),
)
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
)
create_translation_table('item_prose', Item, 'prose',
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
)
create_translation_table('item_prose', Item, 'prose',
- short_effect = Column(Unicode(256), nullable=False,
- info=dict(description="A short summary of the effect", format='plaintext')),
- effect = Column(markdown.MarkdownColumn(5120), nullable=False,
+ short_effect = Column(markdown.MarkdownColumn(256), nullable=True,
+ info=dict(description="A short summary of the effect", format='markdown')),
+ effect = Column(markdown.MarkdownColumn(5120), nullable=True,
info=dict(description=u"Detailed description of the item's effect.", format='markdown')),
)
create_translation_table('item_flavor_summaries', Item, 'flavor_summaries',
info=dict(description=u"Detailed description of the item's effect.", format='markdown')),
)
create_translation_table('item_flavor_summaries', Item, 'flavor_summaries',
info=dict(description="Identifier of the flag", format='identifier'))
create_translation_table('item_flag_prose', ItemFlag, 'prose',
info=dict(description="Identifier of the flag", format='identifier'))
create_translation_table('item_flag_prose', ItemFlag, 'prose',
- name = Column(Unicode(24), nullable=False, index=True,
+ name = Column(Unicode(24), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
create_translation_table('move_damage_class_prose', MoveDamageClass, 'prose',
relation_lazy='joined',
create_translation_table('move_damage_class_prose', MoveDamageClass, 'prose',
relation_lazy='joined',
- name = Column(Unicode(16), nullable=False, index=True,
+ name = Column(Unicode(16), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="A numeric ID"))
create_translation_table('move_effect_prose', MoveEffect, 'prose',
info=dict(description="A numeric ID"))
create_translation_table('move_effect_prose', MoveEffect, 'prose',
create_translation_table('move_flag_type_prose', MoveFlagType, 'prose',
relation_lazy='joined',
create_translation_table('move_flag_type_prose', MoveFlagType, 'prose',
relation_lazy='joined',
- name = Column(Unicode(32), nullable=False, index=True,
+ name = Column(Unicode(32), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
create_translation_table('move_target_prose', MoveTarget, 'prose',
relation_lazy='joined',
create_translation_table('move_target_prose', MoveTarget, 'prose',
relation_lazy='joined',
- name = Column(Unicode(32), nullable=False, index=True,
+ name = Column(Unicode(32), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
create_translation_table('pokedex_prose', Pokedex, 'prose',
relation_lazy='joined',
create_translation_table('pokedex_prose', Pokedex, 'prose',
relation_lazy='joined',
- name = Column(Unicode(16), nullable=False, index=True,
+ name = Column(Unicode(16), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
create_translation_table('pokemon_names', Pokemon, 'names',
relation_lazy='joined',
create_translation_table('pokemon_names', Pokemon, 'names',
relation_lazy='joined',
- name = Column(Unicode(20), nullable=False, index=True,
+ name = Column(Unicode(20), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
info=dict(description="The name", format='plaintext', official=True, ripped=True)),
info=dict(description=u'The short flavor text, such as "Seed" or "Lizard"; usually affixed with the word "Pokémon"',
official=True, format='plaintext')),
)
info=dict(description=u'The short flavor text, such as "Seed" or "Lizard"; usually affixed with the word "Pokémon"',
official=True, format='plaintext')),
)
create_translation_table('pokemon_form_group_prose', PokemonFormGroup, 'prose',
term = Column(Unicode(16), nullable=True,
info=dict(description=u"The term for this Pokémon's forms, e.g. \"Cloak\" for Burmy or \"Forme\" for Deoxys.", official=True, format='plaintext')),
create_translation_table('pokemon_form_group_prose', PokemonFormGroup, 'prose',
term = Column(Unicode(16), nullable=True,
info=dict(description=u"The term for this Pokémon's forms, e.g. \"Cloak\" for Burmy or \"Forme\" for Deoxys.", official=True, format='plaintext')),
create_translation_table('pokemon_move_method_prose', PokemonMoveMethod, 'prose',
relation_lazy='joined',
create_translation_table('pokemon_move_method_prose', PokemonMoveMethod, 'prose',
relation_lazy='joined',
- name = Column(Unicode(64), nullable=False, index=True,
+ name = Column(Unicode(64), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),
create_translation_table('pokemon_shape_prose', PokemonShape, 'prose',
relation_lazy='joined',
create_translation_table('pokemon_shape_prose', PokemonShape, 'prose',
relation_lazy='joined',
- name = Column(Unicode(24), nullable=False, index=True,
+ name = Column(Unicode(24), nullable=True, index=True,
info=dict(description="The name", format='plaintext', official=False)),
info=dict(description="The name", format='plaintext', official=False)),