aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-03-09 21:23:51 +1000
committerGravatar GitHub <[email protected]>2019-03-09 21:23:51 +1000
commit0acffdd609b9a57e02e652988edcaa54b911df43 (patch)
tree831e787e5cee99c41c3261759bf6dfeba6b51822 /bot/constants.py
parentMerge pull request #135 from kosayoda/server-icon-fix (diff)
parentStray print (diff)
Merge pull request #133 from python-discord/snake-cog
Snake cog
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 0ffc9081..b19d494b 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -6,7 +6,7 @@ from bot.bot import SeasonalBot
__all__ = (
"AdventOfCode", "Channels", "Client", "Colours", "Emojis", "Hacktoberfest", "Roles",
- "Tokens", "bot"
+ "Tokens", "ERROR_REPLIES", "bot"
)
log = logging.getLogger(__name__)
@@ -109,6 +109,22 @@ class Roles(NamedTuple):
class Tokens(NamedTuple):
giphy = environ.get("GIPHY_TOKEN")
aoc_session_cookie = environ.get("AOC_SESSION_COOKIE")
+ omdb = environ.get("OMDB_API_KEY")
+ youtube = environ.get("YOUTUBE_API_KEY")
+
+
+ERROR_REPLIES = [
+ "Please don't do that.",
+ "You have to stop.",
+ "Do you mind?",
+ "In the future, don't do that.",
+ "That was a mistake.",
+ "You blew it.",
+ "You're bad at computers.",
+ "Are you trying to kill me?",
+ "Noooooo!!",
+ "I can't believe you've done this",
+]
bot = SeasonalBot(command_prefix=Client.prefix)