diff options
author | 2021-03-04 14:35:30 -0800 | |
---|---|---|
committer | 2021-03-04 14:35:30 -0800 | |
commit | 431465c27cc0aa1ac939c777680dc5cd8062b330 (patch) | |
tree | b96918fd6db523eaa2807f60e73da61478faf23e /bot/constants.py | |
parent | Remove "Want to suggest a fact?" for consistency (diff) | |
parent | Merge pull request #609 from Kronifer/earth_photos (diff) |
Merge branch 'master' into master
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/bot/constants.py b/bot/constants.py index 3aec6ba3..f6e09ae7 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -124,6 +124,7 @@ class Channels(NamedTuple): hacktoberfest_2020 = 760857070781071431 voice_chat_0 = 412357430186344448 voice_chat_1 = 799647045886541885 + staff_voice = 541638762007101470 class Categories(NamedTuple): @@ -131,6 +132,7 @@ class Categories(NamedTuple): development = 411199786025484308 devprojects = 787641585624940544 media = 799054581991997460 + staff = 364918151625965579 class Client(NamedTuple): @@ -156,8 +158,12 @@ class Colours: soft_orange = 0xf9cb54 soft_red = 0xcd6d6d yellow = 0xf9f586 +<<<<<<< master python_blue = 0x4B8BBE python_yellow = 0xFFD43B +======= + grass_green = 0x66ff00 +>>>>>>> master class Emojis: @@ -167,6 +173,7 @@ class Emojis: envelope = "\U0001F4E8" trashcan = "<:trashcan:637136429717389331>" ok_hand = ":ok_hand:" + hand_raised = "\U0001f64b" dice_1 = "<:dice_1:755891608859443290>" dice_2 = "<:dice_2:755891608741740635>" @@ -181,7 +188,6 @@ class Emojis: pull_request_closed = "<:PRClosed:629695470519713818>" merge = "<:PRMerged:629695470570176522>" - # TicTacToe Emojis number_emojis = { 1: "\u0031\ufe0f\u20e3", 2: "\u0032\ufe0f\u20e3", @@ -193,8 +199,11 @@ class Emojis: 8: "\u0038\ufe0f\u20e3", 9: "\u0039\ufe0f\u20e3" } + confirmation = "\u2705" decline = "\u274c" + incident_unactioned = "<:incident_unactioned:719645583245180960>" + x = "\U0001f1fd" o = "\U0001f1f4" @@ -268,6 +277,7 @@ class Tokens(NamedTuple): igdb_client_id = environ.get("IGDB_CLIENT_ID") igdb_client_secret = environ.get("IGDB_CLIENT_SECRET") github = environ.get("GITHUB_TOKEN") + unsplash_access_key = environ.get("UNSPLASH_KEY") class Wolfram(NamedTuple): @@ -283,10 +293,6 @@ class RedisConfig(NamedTuple): use_fakeredis = environ.get("USE_FAKEREDIS", "false").lower() == "true" -class Wikipedia: - total_chance = 3 - - class Source: github = "https://github.com/python-discord/sir-lancebot" github_avatar_url = "https://avatars1.githubusercontent.com/u/9919" |