summaryrefslogtreecommitdiff
path: root/data.ts
diff options
context:
space:
mode:
authorFrans Bongers <fransbongers@franss-mbp.home>2024-11-30 22:18:21 +0100
committerFrans Bongers <fransbongers@franss-mbp.home>2024-11-30 22:18:21 +0100
commitf05a9531508822f5dfb51105334444b53fe11b3e (patch)
treecf3b688ef5d05992a78a7e70942188f1a8712a13 /data.ts
parent629206f773d5fd4c9247db03e3a705c4dcdc77c4 (diff)
downloadland-and-freedom-f05a9531508822f5dfb51105334444b53fe11b3e.tar.gz
ui setup bonuses and medaillons
Diffstat (limited to 'data.ts')
-rw-r--r--data.ts42
1 files changed, 42 insertions, 0 deletions
diff --git a/data.ts b/data.ts
index 7f6e283..c1d62b3 100644
--- a/data.ts
+++ b/data.ts
@@ -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;