Update Discord titles

https://github.com/samuelthomas2774/nxapi/issues/5
This commit is contained in:
Samuel Elliott 2022-06-15 18:33:49 +01:00
parent abb440343a
commit f6e4769043
No known key found for this signature in database
GPG Key ID: 8420C7CDE43DC4D6
3 changed files with 55 additions and 0 deletions

View File

@ -13,6 +13,8 @@ build:
- npx tsc
- npx rollup --config
- node bin/nxapi.js util validate-discord-titles
- PACKAGE=`npm --color="always" pack`
- mv "$PACKAGE" nxapi.tgz

View File

@ -0,0 +1,52 @@
import { Title } from '../util.js';
export const titles: Title[] = [
{
// Monster Hunter Rise
id: '0100b04011742000',
client: '986683336053370900',
showPlayingOnline: true,
showActiveEvent: true,
},
{
// Monster Hunter Rise [Japan]
id: '0100559011740000',
client: '986683336053370900',
showPlayingOnline: true,
showActiveEvent: true,
},
{
// Monster Hunter Rise Demo
id: '010093a01305c000',
client: '986683336053370900',
largeImageText: 'Demo',
showPlayingOnline: true,
showActiveEvent: true,
},
{
// Monster Hunter Rise Demo [Japan]
id: '0100bef013050000',
client: '986683336053370900',
largeImageText: 'Demo',
showPlayingOnline: true,
showActiveEvent: true,
},
{
// Monster Hunter Rise: Sunbreak Demo
id: '0100db001724e000',
client: '986683336053370900',
largeImageText: 'Sunbreak Demo',
showPlayingOnline: true,
showActiveEvent: true,
},
{
// Monster Hunter Rise: Sunbreak Demo [Japan]
id: '01000ee01724c000',
client: '986683336053370900',
largeImageText: 'Sunbreak Demo',
showPlayingOnline: true,
showActiveEvent: true,
},
];

View File

@ -1,2 +1,3 @@
export * as nintendo from './nintendo.js';
export * as mojang from './mojang.js';
export * as capcom from './capcom.js';