From babc937686bcc06fe4ad6e8777043c380a0802b7 Mon Sep 17 00:00:00 2001 From: Neshura Date: Sun, 13 Aug 2023 03:24:20 +0200 Subject: [PATCH] Chellaris Data Types --- src/lib/types/chellaris.ts | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/lib/types/chellaris.ts diff --git a/src/lib/types/chellaris.ts b/src/lib/types/chellaris.ts new file mode 100644 index 0000000..36be88e --- /dev/null +++ b/src/lib/types/chellaris.ts @@ -0,0 +1,15 @@ +export type ChellarisInfo = { + games: Map, + ethics: Array, // TODO implement + portraits: Array, // TODO implement +} + +export type ChellarisGame = { + name: string, + groups: Map, + empires: Array, // TODO implement +} + +export type ChellarisGameGroup = { + name: string, +} \ No newline at end of file