-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.ts
52 lines (50 loc) · 1.33 KB
/
config.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 { Config } from "./typings/Config";
const config: Config = Object.freeze({
port: 5005,
userConfig: {
username: 'X_PADO_X',
coins: 999999999,
drops: 6969,
levelConfig: {
number: 40,
currentExp: 20,
requiredExp: 40,
},
proConfig: {
tier: 1,
level: 2,
},
referralData: {
referrerId: 'PADO',
canBeReferred: false,
passLevel: 10,
},
ids: {
steamId: 7777777,
userId: 123,
},
roleId: '2251438839e948d783ec0e5281daf05b',
profile: {
avatar: 'https://github.githubassets.com/images/icons/emoji/trollface.png',
friendId: 'BANANA',
referralId: 'Campus',
},
battlePass: {
level: 69,
start: new Date('2020-01-01'),
end: new Date('2030-01-01'),
},
wins: 99,
},
gameConfig: {
activeChallenges: {
daily: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
weekly: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
season: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
featured: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
},
seasonNumber: 999,
challengesStatus: 'COMPLETED'
}
});
export default config;