-
Notifications
You must be signed in to change notification settings - Fork 14
/
commands.py
105 lines (103 loc) · 4.19 KB
/
commands.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
import modules
static_commands = {
"groups": "https://docs.google.com/document/d/11WyVIXb5GOzvY4yOULeLDpjnme7wbbVmmvT0OmSqlwc",
"ping": "Pong!",
"testing": "Join the Yalebot testing server: https://groupme.com/join_group/49940116/f2x20kxx",
"add": "Add me to your own group here: https://yalebot.herokuapp.com",
"sam": "❗❗❗N O 💪 F L E X 💪 Z O N E ❗❗❗",
"test": "https://erikboesen.com/yalepuritytest",
"shrug": r"¯\_(ツ)_/¯",
"oh": ("", "https://i.groupme.com/766x750.jpeg.9209520c57e848369444ca498e31f90a.large"),
"jah": ("", "https://i.groupme.com/766x750.jpeg.3eb07fe422db4b81947b634a1b309d48.large"),
"bulldog": "Bulldog! Bulldog!\nBow, wow, wow\nEli Yale\nBulldog! Bulldog!\nBow, wow, wow\nOur team can never fail\n\nWhen the sons of Eli\nBreak through the line\nThat is the sign we hail\nBulldog! Bulldog!\nBow, wow, wow\nEli Yale!",
"flex": "👮🏽🚨🚔 PULL OVER 👮🏽🚨🚔\n\n😤Put your hands behind your back😤\n\n🗣I'm taking you into custody🗣\n\n📝And registering you as a📝\n\n🔥😩FLEX OFFENDER😩🔥",
"ohno": ("", "https://i.groupme.com/1280x720.jpeg.f7c11a529a3b4a7195f71fa6be5ebfef.large"),
"defuse": ("", "https://i.groupme.com/500x500.jpeg.26cbc006bcbf47048ade8a896b1e3d5a.large"),
"cah": "Cards Against Humanity was recently removed from Yalebot and the game can now be run through Bot Against Humanity, a new separate bot which can be added at https://botagainsthumanitygroupme.herokuapp.com."
}
# "Explicit is better than implicit."
commands = {
"about": modules.About(),
"countdown": modules.Countdown(),
"verify": modules.Verify(),
"yalenews": modules.YaleNews(),
"record": modules.Record(),
"weather": modules.Weather(),
"organizations": modules.Organizations(),
"roomnumber": modules.RoomNumber(),
#"people": modules.People(),
"admit": modules.Admit(),
"shield": modules.Shield(),
"colleges": modules.Colleges(),
"randomcollege": modules.RandomCollege(),
"meme": modules.Meme(),
"damn": modules.Damn(),
"jpeg": modules.JPEG(),
"deepfry": modules.DeepFry(),
"conversationstarter": modules.ConversationStarter(),
"funfact": modules.FunFact(),
"lyrics": modules.Lyrics(),
"nasa": modules.NASA(),
"cry": modules.Cry(),
"xkcd": modules.XKCD(),
"doge": modules.Doge(),
"wideletters": modules.WideLetters(),
"jake": modules.Jake(),
"carlos": modules.Carlos(),
"spaces": modules.Spaces(),
"claps": modules.Claps(),
"chat": modules.Chat(),
"shakespeare": modules.Shakespeare(),
"eightball": modules.EightBall(),
"analytics": modules.Analytics(),
"youtube": modules.YouTube(),
"pick": modules.Pick(),
"chose": modules.Chose(),
"love": modules.Love(),
"price": modules.Price(),
"minion": modules.Minion(),
"house": modules.House(),
"location": modules.Location(),
"twitter": modules.Twitter(),
"tea": modules.Tea(),
"capitalize": modules.Capitalize(),
"uwu": modules.UWU(),
"quote": modules.Quote(),
"dog": modules.Dog(),
"funny": modules.Funny(),
"kelbo": modules.Kelbo(),
"boink": modules.Boink(),
"ship": modules.Ship(),
"wholesome": modules.Wholesome(),
"battery": modules.Battery(),
"nato": modules.NATO(),
"heaven": modules.Heaven(),
"power": modules.Power(),
"zalgo": modules.Zalgo(),
"flip": modules.Flip(),
"mccarthy": modules.McCarthy(),
"circle": modules.Circle(),
"anna": modules.Anna(),
"handshake": modules.Handshake(),
"dining": modules.Dining(),
"building": modules.Building(),
"course": modules.Course(),
"iam": modules.IAm(),
"compliment": modules.Compliment(),
"poem": modules.Poem(),
"lmgtfy": modules.LMGTFY(),
"sad": modules.Sad(),
"morse": modules.Morse(),
"smol": modules.Smol(),
"anagram": modules.Anagram(),
"isitchickentendersday": modules.IsItChickenTendersDay(),
"pdl": modules.PDL(),
"coursename": modules.CourseName(),
"pickupline": modules.PickUpLine(),
}
commands["courses"] = commands["course"]
system_commands = {
#"welcome": modules.Welcome(),
#"mourn": modules.Mourn(),
"introduce": modules.Introduce(),
}