Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions bot/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class Colours:
soft_green = 0x68c290
dark_green = 0x1f8b4c
orange = 0xe67e22
pink = 0xcf84e0


class Emojis:
Expand Down
19 changes: 19 additions & 0 deletions bot/seasons/valentines/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from bot.constants import Colours
from bot.seasons import SeasonBase


class Valentines(SeasonBase):
"""
Love is in the air! We've got a new icon and set of commands for the season of love.

Get yourself into the bot-commands channel and check out the new features!
"""
name = "valentines"
bot_name = "Tenderbot"
greeting = "Get loved-up!"

start_date = "01/02"
end_date = "01/03"

colour = Colours.pink
icon = "/logos/logo_seasonal/valentines/loved_up.png"