aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/easter/__init__.py
blob: bfad772d517162711bab8fdc9516457df352d737 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"