aboutsummaryrefslogtreecommitdiffstats
path: root/bot/constants.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/constants.py')
-rw-r--r--bot/constants.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/bot/constants.py b/bot/constants.py
index 5d4d303f..90c440fd 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -11,7 +11,6 @@ __all__ = (
"Client",
"Colours",
"Emojis",
- "Hacktoberfest",
"Icons",
"Lovefest",
"Month",
@@ -75,7 +74,7 @@ class Channels(NamedTuple):
python_discussion = 267624335836053506
show_your_projects = int(environ.get("CHANNEL_SHOW_YOUR_PROJECTS", 303934982764625920))
show_your_projects_discussion = 360148304664723466
- hacktoberfest_2019 = 628184417646411776
+ hacktoberfest_2020 = 760857070781071431
class Client(NamedTuple):
@@ -84,6 +83,7 @@ class Client(NamedTuple):
token = environ.get("SEASONALBOT_TOKEN")
sentry_dsn = environ.get("SEASONALBOT_SENTRY_DSN")
debug = environ.get("SEASONALBOT_DEBUG", "").lower() == "true"
+ github_bot_repo = "https://github.com/python-discord/seasonalbot"
# Override seasonal locks: 1 (January) to 12 (December)
month_override = int(environ["MONTH_OVERRIDE"]) if "MONTH_OVERRIDE" in environ else None
@@ -139,9 +139,10 @@ class Emojis:
x = "\U0001f1fd"
o = "\U0001f1f4"
-
-class Hacktoberfest(NamedTuple):
- voice_id = 514420006474219521
+ status_online = "<:status_online:470326272351010816>"
+ status_idle = "<:status_idle:470326266625785866>"
+ status_dnd = "<:status_dnd:470326272082313216>"
+ status_offline = "<:status_offline:470326266537705472>"
class Icons:
@@ -194,6 +195,7 @@ class Roles(NamedTuple):
verified = 352427296948486144
helpers = 267630620367257601
rockstars = 458226413825294336
+ core_developers = 587606783669829632
class Tokens(NamedTuple):
@@ -282,3 +284,7 @@ POSITIVE_REPLIES = [
class Wikipedia:
total_chance = 3
+
+class Source:
+ github = "https://github.com/python-discord/seasonalbot"
+ github_avatar_url = "https://avatars1.githubusercontent.com/u/9919"