blob: f0a7c2c61b985c779b8a7a06c4dc470c8269eb5b (
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 Christmas(SeasonBase):
"""
Christmas seasonal event attributes.
We are getting into the festive spirit with a new server icon, new bot name and avatar, and some
new commands for you to check out!
No matter who you are, where you are or what beliefs you may follow, we hope every one of you
enjoy this festive season!
"""
name = "christmas"
bot_name = "Merrybot"
greeting = "Happy Holidays!"
start_date = "01/12"
end_date = "31/12"
colour = Colours.dark_green
icon = "/logos/logo_seasonal/christmas/festive.png"
|