diff options
Diffstat (limited to 'data.ts')
-rw-r--r-- | data.ts | 42 |
1 files changed, 42 insertions, 0 deletions
@@ -30,6 +30,10 @@ export interface StaticData { left: number; top: number; }>; + medaillons: Array<{ + id: number; + name: string; + }> } const LIBERTY = 0; @@ -597,5 +601,43 @@ const data: StaticData = { top: 426, }, ], + medaillons: [ + { + id: 0, + name: 'Subterfuge' + }, + { + id: 1, + name: 'Valor' + }, + { + id: 2, + name: 'Momentum' + }, + { + id: 3, + name: 'Strategy' + }, + { + id: 4, + name: 'Propaganda' + }, + { + id: 5, + name: 'Intelligence' + }, + { + id: 6, + name: 'Volunteers' + }, + { + id: 7, + name: 'Archives' + }, + { + id: 8, + name: 'Organization' + }, + ] }; export default data; |