diff options
| author | 2021-05-10 01:58:31 +0530 | |
|---|---|---|
| committer | 2021-05-10 01:58:31 +0530 | |
| commit | 2eda11d5110103d65ee684f4626d7c1ae59b32c9 (patch) | |
| tree | fbbbcf61ef0797722a1ea8136aaa412cd6283365 /bot/constants.py | |
| parent | Fix Bug:Paginated embed image gets carried to next page (diff) | |
| parent | Merge pull request #724 from ToxicKidz/fix/mosaic-command (diff) | |
Pull upstream and resolve conflicts.
Diffstat (limited to 'bot/constants.py')
| -rw-r--r-- | bot/constants.py | 22 | 
1 files changed, 22 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index f5baec35..549d01b6 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -8,6 +8,7 @@ from typing import Dict, NamedTuple  __all__ = (      "AdventOfCode",      "Branding", +    "Cats",      "Channels",      "Categories",      "Client", @@ -94,6 +95,10 @@ class Branding:      cycle_frequency = int(environ.get("CYCLE_FREQUENCY", 3))  # 0: never, 1: every day, 2: every other day, ... +class Cats: +    cats = ["ᓚᘏᗢ", "ᘡᘏᗢ", "🐈", "ᓕᘏᗢ", "ᓇᘏᗢ", "ᓂᘏᗢ", "ᘣᘏᗢ", "ᕦᘏᗢ", "ᕂᘏᗢ"] + +  class Channels(NamedTuple):      advent_of_code = int(environ.get("AOC_CHANNEL_ID", 782715290437943306))      advent_of_code_commands = int(environ.get("AOC_COMMANDS_CHANNEL_ID", 607247579608121354)) @@ -149,8 +154,25 @@ class Colours:      python_yellow = 0xFFD43B      grass_green = 0x66ff00 +    easter_like_colours = [ +        (255, 247, 0), +        (255, 255, 224), +        (0, 255, 127), +        (189, 252, 201), +        (255, 192, 203), +        (255, 160, 122), +        (181, 115, 220), +        (221, 160, 221), +        (200, 162, 200), +        (238, 130, 238), +        (135, 206, 235), +        (0, 204, 204), +        (64, 224, 208), +    ] +  class Emojis: +    cross_mark = "\u274C"      star = "\u2B50"      christmas_tree = "\U0001F384"      check = "\u2611"  |