diff options
Diffstat (limited to 'data.ts')
-rw-r--r-- | data.ts | 20 |
1 files changed, 10 insertions, 10 deletions
@@ -17,10 +17,10 @@ const PLAYER_WITH_MOST_HERO_POINTS = 0; const INITIATIVE_PLAYER = 'i'; const ALL_PLAYERS = 'all'; -const ARAGON = 'a'; -const MADRID = 'm'; -const NORTHERN = 'n'; -const SOUTHERN = 's'; +const ARAGON = 0; +const MADRID = 1; +const NORTHERN = 2; +const SOUTHERN = 3; const CLOSEST_TO_DEFEAT = 'd'; const CLOSEST_TO_VICTORY = 'v'; const FRONTS: FrontId[] = [ARAGON, MADRID, NORTHERN, SOUTHERN]; @@ -1804,12 +1804,6 @@ const data: StaticData = { ], fronts: [ { - id: NORTHERN, - name: 'Northern', - left: 89, - top: 96, - }, - { id: ARAGON, name: 'Aragon', left: 340, @@ -1822,6 +1816,12 @@ const data: StaticData = { top: 262, }, { + id: NORTHERN, + name: 'Northern', + left: 89, + top: 96, + }, + { id: SOUTHERN, name: 'Southern', left: 205, |