diff --git a/src/discord/titles/epicgames.ts b/src/discord/titles/epicgames.ts new file mode 100644 index 0000000..c5c4ccd --- /dev/null +++ b/src/discord/titles/epicgames.ts @@ -0,0 +1,12 @@ +import { Title } from '../types.js'; + +export const titles: Title[] = [ + { + // Fall Guys + id: '0100c3c015738000', + client: '1128807730463911937', + showPlayingOnline: true, + showActiveEvent: true, + showDescription: false, + }, +]; diff --git a/src/discord/titles/index.ts b/src/discord/titles/index.ts index 5093e3a..773ab3b 100644 --- a/src/discord/titles/index.ts +++ b/src/discord/titles/index.ts @@ -4,3 +4,4 @@ export * as capcom from './capcom.js'; export * as the_pokemon_company from './the-pokémon-company.js'; export * as thatgamecompany from './thatgamecompany.js'; export * as concernedape from './concernedape.js'; +export * as epicgames from './epicgames.js';