blob: dd60bf5c15269b3b628b47c5128cdb1ab8740376 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  | 
from bot.constants import Colours
from bot.seasons import SeasonBase
class Easter(SeasonBase):
    """
    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 <#635950537262759947> 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!"
    # Duration of season
    start_date = "02/04"
    end_date = "30/04"
    colour = Colours.pink
    icon = (
        "/logos/logo_seasonal/easter/easter.png",
    )
 
  |