-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.js
106 lines (99 loc) · 2.35 KB
/
constants.js
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
102
103
104
105
106
// const VALID_ROLES = [
// "TOP",
// "TOPLANER",
// "JUNGLE",
// "JG",
// "JUNGLER",
// "MID",
// "MIDDLE",
// "MIDLANE",
// "MIDLANER",
// "BOTTOM",
// "BOT",
// "ADC",
// "AD CARRY",
// "ADC",
// "SUPPORT",
// "SUPP",
// "ALL",
// "EVERYTHING",
// ];
// const TEAM_MAP = {
// LE: "La Espada",
// RV: "Royal Vagabonds",
// INT: "Im Not Trying",
// UPS: "United Parcel Service",
// DBZ: "DaBabieZ",
// BFC: "BaeDcarry Fan Club",
// TI: "Third Impact",
// IGN: "Ignition",
// OTS: "On The Spot",
// HOT: "Hot Take",
// "La Espada": "La Espada",
// "Royal Vagabonds": "Royal Vagabonds",
// "Im Not Trying": "Im Not Trying",
// "United Parcel Service": "United Parcel Service",
// "DaBabieZ": "DaBabieZ",
// "BaeDcarry Fan Club": "BaeDcarry Fan Club",
// "Third Impact": "Third Impact",
// "Ignition": "Ignition",
// "On The Spot": "On The Spot",
// "Hot Take": "Hot Take",
// };
// const TEAM_MAP_10 = {
// LE: "La Espada",
// RV: "Royal Vagabonds",
// INT: "Im Not Trying",
// UPS: "United Parcel Service",
// DBZ: "DaBabieZ",
// BFC: "BaeDcarry Fan Club",
// TI: "Third Impact",
// IGN: "Ignition",
// OTS: "On The Spot",
// HOT: "Hot Take",
// };
// const ROLE_MAP = {
// TOP: "TOP",
// TOPLANER: "TOP",
// JUNGLE: "JUNGLE",
// JG: "JUNGLE",
// JUNGLER: "JUNGLE",
// MID: "MIDDLE",
// MIDDLE: "MIDDLE",
// MIDLANE: "MIDDLE",
// MIDLANER: "MIDDLE",
// BOTTOM: "BOTTOM",
// BOT: "BOTTOM",
// ADC: "BOTTOM",
// "AD CARRY": "BOTTOM",
// ADC: "BOTTOM",
// SUPPORT: "SUPPORT",
// SUPP: "SUPPORT",
// ALL: "ALL",
// EVERYTHING: "ALL",
// };
const HELP_MSG =
"The following commands are available: \n \n" +
"*.draftlol [team1 team2] [ban1 ban2]*: Returns draftlol links for specified teams/bans. \n" +
"*.prodraft [team1 team2]*: Returns prodraft links for specified teams. \n" +
"*.help*: Displays this help message. \n \n" +
"Demacia is developed and maintained by thisenemy#8502.";
const PREFIX = ".";
const SIGNUPS = {
"PLAYER": "",
"CAPTAIN": ""
}
const RULES = ""
module.exports = Object.freeze({
// VALID_ROLES: VALID_ROLES,
// ROLE_MAP: ROLE_MAP,
PREFIX: PREFIX,
HELP_MSG: HELP_MSG,
// TEAM_MAP: TEAM_MAP,
// TEAM_MAP_10: TEAM_MAP_10,
// TW_IMG1: TW_IMG1,
// TW_IMG2: TW_IMG2,
// TW_URL: TW_URL,
SIGNUPS: SIGNUPS,
RULES: RULES
});