blob: c81879d7c2ebb03020b29174647501406a7380b3 (
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
|
from bot.constants import Colours
from bot.seasons import SeasonBase
class Halloween(SeasonBase):
"""
Halloween Seasonal event attributes.
Announcement for this cog temporarily disabled, since we're doing a custom
Hacktoberfest announcement. If you're enabling the announcement again,
make sure to update this docstring accordingly.
"""
name = "halloween"
bot_name = "NeonBot"
greeting = "Happy Halloween!"
start_date = "01/10"
end_date = "01/11"
colour = Colours.pink
icon = (
"/logos/logo_seasonal/hacktober/hacktoberfest.png",
)
|