blob: 74c962ed56c9fcf18cbe6ac4470727d19fc81834 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from bot.constants import Colours
from bot.seasons import SeasonBase
class Halloween(SeasonBase):
"""Halloween Seasonal event attributes."""
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"
|