-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcapcom.ts
52 lines (49 loc) · 1.32 KB
/
capcom.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { Title } from '../types.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,
},
];