-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconstants.ts
114 lines (106 loc) · 3.06 KB
/
constants.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
102
103
104
105
106
107
108
109
110
111
112
113
114
const Constants = {
maxMessageLength: 2000,
Prefix: '!',
ServerName: 'UCF CS, ECE, and IT',
NumbersAsEmojis: ['0️⃣', '1️⃣', '2️⃣', '3️⃣', '4️⃣', '5️⃣', '6️⃣', '7️⃣', '8️⃣', '9️⃣'],
LionPFP:
'https://cdn.discordapp.com/avatars/574623716638720000/7d404c72a6fccb4a3bc610490f8d7b72.png',
Categories: {
Info: 'UCF CS, ECE, AND IT',
General: 'General & School Life',
DailyRoutine: 'Daily Routine',
Help: 'Help',
SpecialTopics: 'Special Topics',
Misc: 'Miscellaneous',
AudioChannels: 'Audio Channels',
},
Channels: {
Info: {
Announcements: 'announcements',
Welcome: 'welcome',
ClassInvite: 'class_invite',
CodeOfConduct: 'code_of_conduct',
},
Public: {
General: 'general',
Memes: 'memes',
ProgrammingHelp: 'programming_help',
ServerRequests: 'server_requests',
Politics: 'politics',
StudyChat: 'study_chat',
ClubOfficers: 'clubOfficers',
AlumniLounge: 'alumni_lounge',
GradCafe: 'grad_cafe',
GameknightChat: 'gameknight_chat',
HorticultureChat: 'horticulture_chat',
MovieknightChat: 'movieknight_chat',
Pets: 'pets',
Clubs: 'clubs',
Travel: 'travel',
Networking: 'networking',
BulletinBoard: 'bulletin_board',
PersonalProjects: 'personal_projects',
ClubAnnouncements: 'club_announcements',
Games: 'games',
Food: 'food',
Media: 'media',
Sports: 'sports',
Fitness: 'fitness',
Finance: 'finance',
Vehicles: 'vehicles',
VideoGames: 'video_games',
Advising: 'advising',
ProjectIdeas: 'project_ideas',
FoundationExam: 'foundation_exam',
BakingChat: 'baking_chat',
MathScienceHelp: 'math_science_help',
Security: 'security',
Industry: 'industry',
Research: 'research',
Hardware: 'hardware',
FlameWars: 'flame_wars',
OsSoftware: 'os_software',
CircuitAnalysis: 'circuit_analysis',
WebDevelopment: 'web_development',
GameDevelopment: 'game_development',
InternetNetworking: 'internet_networking',
ArtificialIntelligence: 'artificial_intelligence',
Counting: 'counting',
LionProject: 'lion_project',
BuySellTrade: 'buy_sell_trade',
HelpfulBaubles: 'helpful_baubles',
LionProjectGithub: 'lion_project_github',
},
Staff: {
ModChat: 'mod_chat',
ModCommands: 'mod_commands',
},
Admin: {
AdminChannel: 'admin_chat',
BotLogs: 'bot_logs',
},
Private: {},
Bot: {
BotChannel: 'bot_commands',
},
Blacklist: {
Verify: 'verify',
},
},
Roles: {
Everyone: '@everyone',
Professor: 'Professor',
Unverifed: 'Un verified',
NitroBooster: 'Nitro Booster',
TacoKing: 'Taco King',
TeachingAssistant: 'Teaching Assistant',
Moderator: 'Moderator',
Suspended: 'Suspended',
Alumni: 'Alumni',
GradStudent: 'GradStudent',
},
Patterns: {
ClassChannelName: /^([a-z]{3})([0-9]{4}[a-z]?)_(.+)$/,
},
};
export default Constants;