-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst.py
160 lines (138 loc) · 3 KB
/
const.py
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
realServerId = 779485288996012052
ServerId = realServerId
### Text-channels names
UsefulChannelNames = {
("db", "db-update"),
("feed", "feed"),
("logs", "1v1-log"),
("1", "room-1"),
("2", "room-2"),
("3", "room-3"),
("4", "room-4"),
("5", "room-5"),
("6", "room-6"),
("7", "room-7"),
("8", "room-8"),
("9", "room-9"),
("10", "room-10"),
("11", "room-11"),
("12", "room-12"),
("13", "room-13"),
("14", "room-14"),
("15", "room-15"),
("16", "room-16"),
("17", "room-17"),
("18", "room-18"),
("19", "room-19"),
("20", "room-20"),
("21", "room-21"),
("22", "room-22"),
("23", "room-23"),
("24", "room-24"),
("25", "room-25"),
("welcome", "welcome")
}
ChallengeRooms = {
("chal-pc", "pc-challenge-zone"),
("chal-xbox", "xbox-challenge-zone"),
("chal-ps4", "ps4-challenge-zone"),
}
CommandsChannels = {
("commands","commands"),
("admin-chat","admin-chat"),
("mod-chat","mod-chat"),
("1v1-log","1v1-log"),
("carl-log","carl-log"),
("db-update","db-update")
}
### Roles names
UsefulRoles = {
('Unranked','Unranked'),
('Active', 'Active')
}
RegionRoles = {
('EU', 'EU'),
('NA-East', 'NA-East')
}
PlatformRoles = {
('PC', 'PC'),
('Xbox', 'Xbox'),
('PS4', 'PS4')
}
RankRoles = {
("Legend","Legend", 1500),
("Master","Master", 1300),
("Diamond","Diamond", 1200),
("Platinum", "Platinum", 1100),
("Gold","Gold", 1000),
("Silver","Silver", 900),
("Bronze","Bronze", 800),
("Steel","Steel", 700),
("Inmate","Inmate", 500)
}
rolesValues = [
("Legend", 1500),
("Master", 1300),
("Diamond", 1200),
("Platinum", 1100),
("Gold", 1000),
("Silver", 900),
("Bronze", 800),
("Steel", 700),
("Inmate", 500)
]
BracketRoles = {
("1", "Room 1"),
("2", "Room 2"),
("3", "Room 3"),
("4", "Room 4"),
("5", "Room 5"),
("6", "Room 6"),
("7", "Room 7"),
("8", "Room 8"),
("9", "Room 9"),
("10", "Room 10"),
("11", "Room 11"),
("12", "Room 12"),
("13", "Room 13"),
("14", "Room 14"),
("15", "Room 15"),
("16", "Room 16"),
("17", "Room 17"),
("18", "Room 18"),
("19", "Room 19"),
("20", "Room 20"),
("21", "Room 21"),
("22", "Room 22"),
("23", "Room 23"),
("24", "Room 24"),
("25", "Room 25"),
}
### Emotes
UsefulCustomEmotes = {
("win", "win"),
("lose", "lose"),
("cancel", "cancel")
}
UsefulBasicEmotes = {
("yes", "✅"),
("no", "❌")
}
### Cogs
UsefulCogs = {
("DB", "DBCog"),
("AdminDB", "AdminDBCog")
}
PlatformImages = {
("PC", "https://cdn.discordapp.com/emojis/786394847292555275.png"),
("PS4", "https://cdn.discordapp.com/emojis/781175372531630102.png"),
("Xbox", "https://cdn.discordapp.com/emojis/781175372581437490.png")
}
PlatformColours = {
("PC", 992597),
("PS4", 28881),
("Xbox", 6144542)
}
### Const IDs
### Other values
INIT_ELO = 1000