aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/pride/__init__.py
blob: 75e90b2a8598ce61bc4433255cf6b484b1f7124a (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
36
from bot.constants import Colours
from bot.seasons import SeasonBase


class Pride(SeasonBase):
    """
    The month of June is a special month for us at Python Discord.

    It is very important to us that everyone feels welcome here, no matter their origin,
    identity or sexuality. During the month of June, while some of you are participating in Pride
    festivals across the world, we will be celebrating individuality and commemorating the history
    and challenges of the LGBTQ+ community with a Pride event of our own!

    While this celebration takes place, you'll notice a few changes:
    • The server icon has changed to our Pride icon. Thanks to <@98694745760481280> for the design!
    • [Pride issues are now available for SeasonalBot on the repo](https://git.io/pythonpride).
    • You may see Pride-themed esoteric challenges and other microevents.

    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 = "pride"
    bot_name = "ProudBot"
    greeting = "Happy Pride Month!"

    # Duration of season
    start_date = "01/06"
    end_date = "01/07"

    # Season logo
    colour = Colours.soft_red
    icon = (
        "/logos/logo_seasonal/pride/logo_pride.png",
    )