From 80f4d18ed7c58c45dd060588eca48240a69fe451 Mon Sep 17 00:00:00 2001 From: Samuel Elliott Date: Tue, 28 Feb 2023 14:38:50 +0000 Subject: [PATCH] Update Discord titles https://github.com/samuelthomas2774/nxapi/issues/55 --- src/discord/titles/index.ts | 1 + src/discord/titles/thatgamecompany.ts | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/discord/titles/thatgamecompany.ts diff --git a/src/discord/titles/index.ts b/src/discord/titles/index.ts index e4bb8f9..ceb82a5 100644 --- a/src/discord/titles/index.ts +++ b/src/discord/titles/index.ts @@ -2,3 +2,4 @@ export * as nintendo from './nintendo.js'; export * as mojang from './mojang.js'; export * as capcom from './capcom.js'; export * as the_pokemon_company from './the-pokémon-company.js'; +export * as thatgamecompany from './thatgamecompany.js'; diff --git a/src/discord/titles/thatgamecompany.ts b/src/discord/titles/thatgamecompany.ts new file mode 100644 index 0000000..e731a39 --- /dev/null +++ b/src/discord/titles/thatgamecompany.ts @@ -0,0 +1,11 @@ +import { Title } from '../types.js'; + +export const titles: Title[] = [ + { + // Sky: Children of the Light + id: '0100c52011460000', + client: '1080136394288144465', + showPlayingOnline: true, + showActiveEvent: true, + }, +];