aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/easter/egg_hunt/constants.py
diff options
context:
space:
mode:
authorGravatar RohanJnr <[email protected]>2019-10-02 09:39:10 +0530
committerGravatar RohanJnr <[email protected]>2019-10-02 09:39:10 +0530
commitcd5842811f92bd5c82a164d33ad71a9c7c172e57 (patch)
tree4a15827a3d94cbc78fa8a9a5b47cdd57283f304e /bot/seasons/easter/egg_hunt/constants.py
parentWorked on the requested changes and also made a few other changes: (diff)
parentMerge branch 'master' into trivia_quiz (diff)
Merge branch 'trivia_quiz' of https://github.com/RohanJnr/seasonalbot into trivia_quiz
Diffstat (limited to 'bot/seasons/easter/egg_hunt/constants.py')
-rw-r--r--bot/seasons/easter/egg_hunt/constants.py40
1 files changed, 0 insertions, 40 deletions
diff --git a/bot/seasons/easter/egg_hunt/constants.py b/bot/seasons/easter/egg_hunt/constants.py
deleted file mode 100644
index 02f6e9f2..00000000
--- a/bot/seasons/easter/egg_hunt/constants.py
+++ /dev/null
@@ -1,40 +0,0 @@
-import os
-
-from discord import Colour
-
-from bot.bot import bot
-from bot.constants import Channels, Client
-
-
-GUILD = bot.get_guild(Client.guild)
-
-
-class EggHuntSettings:
- start_time = int(os.environ["HUNT_START"])
- end_time = start_time + 172800 # 48 hrs later
- windows = [int(w) for w in os.environ.get("HUNT_WINDOWS").split(',')] or []
- allowed_channels = [
- Channels.seasonalbot_chat,
- Channels.off_topic_0,
- Channels.off_topic_1,
- Channels.off_topic_2,
- ]
-
-
-class Roles:
- white = GUILD.get_role(569304397054607363)
- blurple = GUILD.get_role(569304472820514816)
-
-
-class Emoji:
- egg_white = bot.get_emoji(569266762428841989)
- egg_blurple = bot.get_emoji(569266666094067819)
- egg_gold = bot.get_emoji(569266900106739712)
- egg_diamond = bot.get_emoji(569266839738384384)
-
-
-class Colours:
- white = Colour(0xFFFFFF)
- blurple = Colour(0x7289DA)
- gold = Colour(0xE4E415)
- diamond = Colour(0xECF5FF)