aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar scragly <[email protected]>2019-02-05 08:31:58 +1000
committerGravatar GitHub <[email protected]>2019-02-05 08:31:58 +1000
commit631735c2def4264b384f62076e4ec5bd800cebfd (patch)
treef04dd2e7fc81d92f1ff38a913b5029d65e7f9b67
parentUpdate Contributor doc (diff)
parentAdd valentines season (diff)
Merge pull request #95 from python-discord/add-valentines-season
Add valentines season
-rw-r--r--bot/constants.py1
-rw-r--r--bot/seasons/valentines/__init__.py19
2 files changed, 20 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py
index b57eb714..4e09b448 100644
--- a/bot/constants.py
+++ b/bot/constants.py
@@ -63,6 +63,7 @@ class Colours:
soft_green = 0x68c290
dark_green = 0x1f8b4c
orange = 0xe67e22
+ pink = 0xcf84e0
class Emojis:
diff --git a/bot/seasons/valentines/__init__.py b/bot/seasons/valentines/__init__.py
new file mode 100644
index 00000000..f1489cf9
--- /dev/null
+++ b/bot/seasons/valentines/__init__.py
@@ -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"