diff --git a/web-svelte/src/stores.ts b/web-svelte/src/stores.ts index f3f1aec..1c9077f 100644 --- a/web-svelte/src/stores.ts +++ b/web-svelte/src/stores.ts @@ -9,10 +9,11 @@ interface Player { name: string; host: boolean; colour: string; + ship: string; } export const players = readable([ - { name: `Player 1`, host: true, colour: "#00aa00" }, - { name: `Player 2`, host: false, colour: "#aaaa00" }, - { name: `Player 3`, host: false, colour: "#00aaaa" }, - { name: `Player 4`, host: false, colour: "#ffaaff" }, + { name: `Player 1`, host: true, colour: "#00aa00", ship: "space-shuttle" }, + { name: `Player 2`, host: false, colour: "#7400b8", ship: "space-shuttle" }, + { name: `Player 3`, host: false, colour: "#faa307", ship: "space-shuttle" }, + { name: `Player 4`, host: false, colour: "#b7094c", ship: "space-shuttle" }, ]); \ No newline at end of file