diff options
| author | 2019-05-11 04:51:30 +1000 | |
|---|---|---|
| committer | 2019-05-11 04:51:30 +1000 | |
| commit | 0e2c6a1b0daef5b569da7652801b5725bf1ed95b (patch) | |
| tree | c3d57e50f2ba07cb2d9e7476d3b9441c1f671bd9 /bot/seasons/easter/__init__.py | |
| parent | not importing aiohttp now (diff) | |
| parent | Merge pull request #198 from Suhail6inkling/constants_fix (diff) | |
Merge branch 'master' into hanukkah_embed_iceman
Diffstat (limited to 'bot/seasons/easter/__init__.py')
| -rw-r--r-- | bot/seasons/easter/__init__.py | 26 |
1 files changed, 21 insertions, 5 deletions
diff --git a/bot/seasons/easter/__init__.py b/bot/seasons/easter/__init__.py index bfad772d..83d12ead 100644 --- a/bot/seasons/easter/__init__.py +++ b/bot/seasons/easter/__init__.py @@ -1,17 +1,33 @@ +from bot.constants import Colours 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. + Here at Python Discord, we celebrate our version of Easter during the entire month of April. + + While this celebration takes place, you'll notice a few changes: + + • The server icon has changed to our Easter icon. Thanks to <@140605665772175361> for the + design! + + • [Easter issues now available for SeasonalBot on the repo](https://git.io/fjkvQ). + + • You may see stuff like an Easter themed esoteric challenge, a celebration of Earth Day, or + Easter-related micro-events for you to join. Stay tuned! + + If you'd like to contribute, head on over to <#542272993192050698> and we will help you get + started. It doesn't matter if you're new to open source or Python, if you'd like to help, we + will find you a task and teach you what you need to know. """ name = "easter" bot_name = "BunnyBot" - greeting = "Happy Easter to us all!" + greeting = "Happy Easter!" # Duration of season - start_date = "01/04" + start_date = "02/04" end_date = "30/04" + + colour = Colours.pink + icon = "/logos/logo_seasonal/easter/easter.png" |