Add target counts for Conquest move ranges.

This commit is contained in:
Lynn "Zhorken" Vaughan 2012-08-04 19:55:55 -04:00
parent 14232f0e74
commit 789a1bdc0e
2 changed files with 25 additions and 23 deletions

View file

@ -1,22 +1,22 @@
id,identifier id,identifier,targets
1,user 1,user,1
2,tile-1-ahead 2,tile-1-ahead,1
3,column-2-tiles 3,column-2-tiles,2
4,column-3-tiles 4,column-3-tiles,3
5,diamond-adjacent 5,diamond-adjacent,4
6,ring-adjacent 6,ring-adjacent,8
7,row 7,row,3
8,chevron 8,chevron,3
9,plus 9,plus,5
10,x-shape 10,x-shape,5
11,tile-2-ahead 11,tile-2-ahead,1
12,tile-3-ahead 12,tile-3-ahead,1
13,diamond-2-ahead 13,diamond-2-ahead,4
14,ring-2-ahead 14,ring-2-ahead,8
15,row-2-ahead 15,row-2-ahead,3
16,2-rows-2-ahead 16,2-rows-2-ahead,6
17,column-2-ahead 17,column-2-ahead,2
18,x-shape-2-ahead 18,x-shape-2-ahead,5
19,dai 19,dai,7
20,t-shape 20,t-shape,4
21,2-rows 21,2-rows,6

1 id identifier targets
2 1 user 1
3 2 tile-1-ahead 1
4 3 column-2-tiles 2
5 4 column-3-tiles 3
6 5 diamond-adjacent 4
7 6 ring-adjacent 8
8 7 row 3
9 8 chevron 3
10 9 plus 5
11 10 x-shape 5
12 11 tile-2-ahead 1
13 12 tile-3-ahead 1
14 13 diamond-2-ahead 4
15 14 ring-2-ahead 8
16 15 row-2-ahead 3
17 16 2-rows-2-ahead 6
18 17 column-2-ahead 2
19 18 x-shape-2-ahead 5
20 19 dai 7
21 20 t-shape 4
22 21 2-rows 6

View file

@ -293,13 +293,15 @@ create_translation_table('conquest_move_effect_prose', ConquestMoveEffect, 'pros
) )
class ConquestMoveRange(TableBase): class ConquestMoveRange(TableBase):
u"""A range moves can have in Pokémon Conquest.""" u"""A set of tiles moves can target in Pokémon Conquest."""
__tablename__ = 'conquest_move_ranges' __tablename__ = 'conquest_move_ranges'
__singlename__ = 'conquest_move_range' __singlename__ = 'conquest_move_range'
id = Column(Integer, primary_key=True, autoincrement=True, id = Column(Integer, primary_key=True, autoincrement=True,
info=dict(description=u'An ID for this range.')) info=dict(description=u'An ID for this range.'))
identifier = Column(Unicode(16), nullable=False, identifier = Column(Unicode(16), nullable=False,
info=dict(description=u'A readable identifier for this range.')) info=dict(description=u'A readable identifier for this range.'))
targets = Column(Integer, nullable=False,
info=dict(description=u'The number of tiles this range targets.'))
create_translation_table('conquest_move_range_prose', ConquestMoveRange, 'prose', create_translation_table('conquest_move_range_prose', ConquestMoveRange, 'prose',
name = Column(Unicode(20), nullable=True, name = Column(Unicode(20), nullable=True,