This repository was archived by the owner on Feb 5, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathxp-values.ts
101 lines (100 loc) · 2.71 KB
/
xp-values.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const XPValues = {
Essentials: {
messagexp: {
name: `Message XP`,
description: `The amount of XP a user gets per message.`,
default: 25,
unit: `%s% xp`,
premiumFeature: false,
},
messagecooldown: {
name: `Message Cooldown`,
description: `The time in seconds until the next message will be counted.`,
default: 0,
unit: `%s% s`,
premiumFeature: false,
},
voicexp: {
name: `Voice XP`,
description: `The amount of XP a user receives per minute in the VC.`,
default: 60,
unit: `%s% xp`,
premiumFeature: false,
},
voicejoincooldown: {
name: `Voice Join Cooldown`,
description: `The time in seconds until XP starts measuring the user's VC time.`,
default: 30,
unit: `%s% s`,
premiumFeature: false,
},
reactionxp: {
name: `Reaction XP`,
description: `The amount of XP a user gets per reaction.`,
default: 1,
unit: `%s% xp`,
premiumFeature: false,
},
},
Games: {
lootXP: {
name: `Loot XP`,
description: `The amount of XP a user gets for playing /loot, before being multiplied (x1-6).`,
default: 25,
premiumFeature: false,
unit: `%s% xp`,
},
fishXP: {
name: `Fish XP`,
description: `The amount of XP a user gets for playing /fish, before being multiplied (x1-6).`,
default: 25,
premiumFeature: false,
unit: `%s% xp`,
},
rollXP: {
name: `Roll XP`,
description: `The amount of XP a user gets for playing /roll, before being multiplied (x1-6).`,
default: 25,
premiumFeature: false,
unit: `%s% xp`,
},
gamecooldown: {
name: `Game Cooldown`,
description: `The time in seconds until a user can start a new game.`,
default: 120,
unit: `%s% s`,
premiumFeature: true,
},
triviaxp: {
name: `Trivia XP`,
description: `The maximum amount of XP a user gets for playing Trivia.`,
default: 50,
unit: `%s% xp`,
premiumFeature: false,
},
triviacooldown: {
name: `Trivia Cooldown`,
description: `The time in seconds until a user can start a new Trivia game.`,
default: 10,
unit: `%s% s`,
premiumFeature: true,
},
},
Additional: {
maximumdailyxp: {
name: `Maximum Daily XP`,
description: `The maximum amount of XP attainable by executing the "daily" command.`,
default: 2500,
unit: `%s% xp`,
premiumFeature: true,
},
maximumlevel: {
name: `Maximum Level`,
description: `The maximum level that can be reached.`,
default: 420,
unit: `Level %s%`,
premiumFeature: false,
},
},
};
export default XPValues;