aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-03-25 10:04:13 -0400
committerGravatar GitHub <[email protected]>2019-03-25 10:04:13 -0400
commit20bc6e0d71f05838edc08aae2a00524a029b085f (patch)
treead51f62930e9e107088b23097cc5cd49fec997dc
parentMerge pull request #148 from Suhail6inkling/save-the-date-fix (diff)
parentsetting up easter directory for the easter season (diff)
Merge pull request #153 from python-discord/easter
setting up easter directory for the easter season
-rw-r--r--bot/seasons/easter/__init__.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/bot/seasons/easter/__init__.py b/bot/seasons/easter/__init__.py
new file mode 100644
index 00000000..bfad772d
--- /dev/null
+++ b/bot/seasons/easter/__init__.py
@@ -0,0 +1,17 @@
+from bot.seasons import SeasonBase
+
+
+class Easter(SeasonBase):
+ """
+ Easter is a beautiful time of the year often celebrated after the first Full Moon of the new spring season.
+ This time is quite beautiful due to the colorful flowers coming out to greet us. So. let's greet Spring
+ in an Easter celebration of contributions.
+ """
+
+ name = "easter"
+ bot_name = "BunnyBot"
+ greeting = "Happy Easter to us all!"
+
+ # Duration of season
+ start_date = "01/04"
+ end_date = "30/04"