mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Add identifiers to item_fling_effects.csv
This commit is contained in:
parent
a967b787b7
commit
7612277ee4
2 changed files with 11 additions and 8 deletions
|
@ -1,8 +1,8 @@
|
||||||
id
|
id,identifier
|
||||||
1
|
1,badly-poison
|
||||||
2
|
2,burn
|
||||||
3
|
3,berry-effect
|
||||||
4
|
4,herb-effect
|
||||||
5
|
5,paralyze
|
||||||
6
|
6,poison
|
||||||
7
|
7,flinch
|
||||||
|
|
|
|
@ -1058,6 +1058,9 @@ class ItemFlingEffect(TableBase):
|
||||||
__singlename__ = 'item_fling_effect'
|
__singlename__ = 'item_fling_effect'
|
||||||
id = Column(Integer, primary_key=True, nullable=False,
|
id = Column(Integer, primary_key=True, nullable=False,
|
||||||
doc=u"A numeric ID")
|
doc=u"A numeric ID")
|
||||||
|
identifier = Column(Unicode(79), nullable=False,
|
||||||
|
doc=u"An identifier of this fling effect",
|
||||||
|
info=dict(format='identifier'))
|
||||||
|
|
||||||
create_translation_table('item_fling_effect_prose', ItemFlingEffect, 'prose',
|
create_translation_table('item_fling_effect_prose', ItemFlingEffect, 'prose',
|
||||||
effect = Column(UnicodeText, nullable=False,
|
effect = Column(UnicodeText, nullable=False,
|
||||||
|
|
Loading…
Reference in a new issue