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, + }, +];