-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdata.py
More file actions
68 lines (64 loc) · 3.63 KB
/
data.py
File metadata and controls
68 lines (64 loc) · 3.63 KB
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
# Trigger words or phrases
keywords = [
"feature",
"it would be cool if",
"idea",
"let's make",
"let's add",
"what if",
"project",
"i had a thought",
"i was thinking",
"talking about",
"new"
]
# Possible phrases the bot can say about scope
scopebook = [
"**- SCOPE -**",
"*But have you considered... scope?*",
"I like your idea, but, it's a little outside the scope 乁| ・ 〰 ・ |ㄏ",
"https://pmweb.com/wordpress/wp-content/uploads/2017/12/Scope-blog-Joao.jpg",
"I’m Commander Scope, and this is my favorite out-of-scope idea on the server!",
"We have come here to make games and do facepalm emotes... and we're all outta scope.",
"$ was almost a scope sandwich!",
"It’s a-me, Scope!",
"Would you kindly... think about scope?",
"Scope... scope never changes.",
"To know you’re close to the end is a kind of freedom. Good time to consider... scope.",
"It’s not out of the question that you might have a very minor case of being severely out of scope.",
"Don’t be alarmed, alright? Although, if you do feel alarmed, try to hold onto that feeling because that is the proper reaction to being told you are out of scope.",
"All that’s left for $ is to think about scope.",
"Scope and survive.",
"Scope is under attack! You must construct additional scope!",
"Tell me $. What are you scared of? Failing to save this cesspool of a city? Not finding the Commissioner in time? This idea, out of scope?",
"Federico: \"It is a good life we lead, brother.\" Ezio: \"The best. May the scope never change.\" $: \"But sometimes it changes us.\"",
"Scope is what makes us strong. It is why we are here. It is what we fight with when all else is lost.",
"Stop right there, out-of-scope scum!",
"Hey! Listen! Scope!",
"I used to be an adventurer like $ until I took scope to the knee.",
"Scope? Scope? SCOPE!",
"Grass grows, birds fly, the sun shines, and brother, I think about scope.",
"Thank you, $! But your idea is in another scope!",
"$ has died of poor scope.",
"Scope has a nasty habit of going bad when $'s not looking.",
"$ can’t hide from the scope.",
"I like scope! It's comfy and easy to wear!",
"You should never be more than two minutes from scope.",
"Did I ever tell $ the definition of scope?",
"I am ScopeBot, and I’m here to ask $ a question. Is a game dev not entitled to a well-scoped idea?",
"There are more things in heaven and scope, $, than are dreamt of in your philosophy.",
"Scope, Earl Grey, bot.",
"**Scope**mourne hungers.",
"Oh no, it happened again. Keep on trying, don’t let it get to you. Try and stay in scope.",
"Oof, your idea is out of scope. That’s a deep frustration, a real punch in the gut.",
"You open the mailbox. Inside the mailbox is a leaflet. It reads \"**SCOPE.**\"",
"\"Oh, they're going out of scope? We can't handle that. Kill the character if they try it.\" - !Corey and Lori Ann Cole",
"\"v 0.47.02 - Fixed crash involving stressed out wilderness creatures wanting to complain to priests when you're out of scope\" - !Tarn Adams",
"\"The trouble is, I have no idea how to answer this question. I'm not really afraid of genetic technology, atomic weapons or killer robots. I'm afraid of inflated scope.\" - !Ken Levine",
"\"I **had** to kill somebody in the intro. It's a basic part of managing scope.\" - !Frank Mentzer",
"\"This game requires exactly 18 lines of text. I don't think I've ever agonised over scope so much before.\" - !Terry Cavanagh"
]
# channel cooldowns
cooldowns = {}
# per user scope counter
scopecounter = {}