aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/halloween/__init__.py
blob: 4b371f1435335e8ae08c692fca960a8520fc34e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from bot.constants import Colours
from bot.seasons import SeasonBase


class Halloween(SeasonBase):
    name = "halloween"
    bot_name = "Spookybot"
    greeting = "Happy Halloween!"

    start_date = "01/10"
    end_date = "31/10"

    colour = Colours.orange
    icon = "/logos/logo_seasonal/halloween/spooky.png"