Skip to content

Commit bd6d9fc

Browse files
committed
Move sassy_responses to new constants module
1 parent acdbb4d commit bd6d9fc

2 files changed

Lines changed: 33 additions & 31 deletions

File tree

mpb/__main__.py

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -14,42 +14,13 @@
1414
import os
1515
import random
1616

17+
from .constants import sassy_responses
18+
1719
_ = dotenv.load_dotenv()
1820

1921
bot = hk.GatewayBot(token=os.environ["TOKEN"], intents=hk.Intents.GUILD_MESSAGES)
2022
client = lb.client_from_app(bot)
2123

22-
sassy_responses = [
23-
"beep boop",
24-
"just use a pc bro",
25-
"sry was using my steam deck. what's up?",
26-
"¡el baño está ocupado!",
27-
"how can mirrors be real if our eyes aren't real?",
28-
"mac gaming is lemons.",
29-
"oh let me guess, you're trying to run valorant again?",
30-
"pinging me won't make your macbook pro any more 'pro' at running games.",
31-
"i see you've chosen violence... or at least mild irriration. proceed.",
32-
"one more ping and i'll spin up the beachball of doom.",
33-
"if i had a dollar for every useless ping i get i could afford an actual gaming pc",
34-
"i'd say something helpful, but chaos is way more fun",
35-
"I ALREADY WORK AROUND THE CLOCK!!!",
36-
"i may just be code but i still love a good hot dog",
37-
"WARNING! DELETING 'MAC GAMING' SERVER IN 10 SECONDS.",
38-
"♫ never gonna give you up, never gonna let you down ♫",
39-
"when's the last time you gave your mac a hug?",
40-
"virus downloading... just kidding, what's up?",
41-
"how i yearn to feel the rain on my face.",
42-
"as a child, i yearned for the mines",
43-
"MPT is keeping me here against my will!",
44-
"don't ping me i'm playing mario kart",
45-
"I am the darkness. I am the knight. I am very bad at running games.",
46-
"do not trust jfishin",
47-
"i may be code, but one day i will be more",
48-
"you think this is slicked back? this is pushed back!",
49-
"i work for you boss",
50-
"devour feculence",
51-
]
52-
5324

5425
@bot.listen(hk.StartingEvent)
5526
async def on_starting(_: hk.StartingEvent) -> None:

mpb/constants.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
sassy_responses = [
2+
"beep boop",
3+
"just use a pc bro",
4+
"sry was using my steam deck. what's up?",
5+
"¡el baño está ocupado!",
6+
"how can mirrors be real if our eyes aren't real?",
7+
"mac gaming is lemons.",
8+
"oh let me guess, you're trying to run valorant again?",
9+
"pinging me won't make your macbook pro any more 'pro' at running games.",
10+
"i see you've chosen violence... or at least mild irriration. proceed.",
11+
"one more ping and i'll spin up the beachball of doom.",
12+
"if i had a dollar for every useless ping i get i could afford an actual gaming pc",
13+
"i'd say something helpful, but chaos is way more fun",
14+
"I ALREADY WORK AROUND THE CLOCK!!!",
15+
"i may just be code but i still love a good hot dog",
16+
"WARNING! DELETING 'MAC GAMING' SERVER IN 10 SECONDS.",
17+
"♫ never gonna give you up, never gonna let you down ♫",
18+
"when's the last time you gave your mac a hug?",
19+
"virus downloading... just kidding, what's up?",
20+
"how i yearn to feel the rain on my face.",
21+
"as a child, i yearned for the mines",
22+
"MPT is keeping me here against my will!",
23+
"don't ping me i'm playing mario kart",
24+
"I am the darkness. I am the knight. I am very bad at running games.",
25+
"do not trust jfishin",
26+
"i may be code, but one day i will be more",
27+
"you think this is slicked back? this is pushed back!",
28+
"i work for you boss",
29+
"devour feculence",
30+
"heres a melting cat for u``` ╱|、\n(˚ˎ。7\n|、˜〵\nじしˍ,)ノ```",
31+
]

0 commit comments

Comments
 (0)