aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/wildcard/__init__.py
blob: 354e979d9ab4a804ad40ec4ecb87a01acb7aa66e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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",
    )