aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/wildcard/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'bot/seasons/wildcard/__init__.py')
-rw-r--r--bot/seasons/wildcard/__init__.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/bot/seasons/wildcard/__init__.py b/bot/seasons/wildcard/__init__.py
new file mode 100644
index 00000000..354e979d
--- /dev/null
+++ b/bot/seasons/wildcard/__init__.py
@@ -0,0 +1,31 @@
+from bot.seasons import SeasonBase
+
+
+class Wildcard(SeasonBase):
+ """
+ For the month of August, the season is a Wildcard.
+
+ This docstring will not be used for announcements.
+ Instead, we'll do the announcement manually, since
+ it will change every year.
+
+ This class needs slight changes every year,
+ such as the bot_name, bot_icon and icon.
+
+ IMPORTANT: DO NOT ADD ANY FEATURES TO THIS FOLDER.
+ ALL WILDCARD FEATURES SHOULD BE ADDED
+ TO THE EVERGREEN FOLDER!
+ """
+
+ name = "wildcard"
+ bot_name = "RetroBot"
+
+ # Duration of season
+ start_date = "01/08"
+ end_date = "01/09"
+
+ # Season logo
+ bot_icon = "/logos/logo_seasonal/retro_gaming/logo_8bit_indexed_504.png"
+ icon = (
+ "/logos/logo_seasonal/retro_gaming_animated/logo_spin_plain/logo_spin_plain_504.gif",
+ )