diff options
author | 2021-01-26 16:29:59 +0530 | |
---|---|---|
committer | 2021-01-26 16:29:59 +0530 | |
commit | f87b3e91d0bf48eaf48878f3824310ef5d76135e (patch) | |
tree | ce6c3a91f82f582c35d59d75747293552a6a170a /bot/constants.py | |
parent | Add in codeblock check (diff) | |
parent | Merge branch 'master' into feature/link_issues (diff) |
Merge branch 'feature/link_issues' of https://github.com/Shivansh-007/sir-lancebot into feature/link_issues
Diffstat (limited to 'bot/constants.py')
-rw-r--r-- | bot/constants.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/bot/constants.py b/bot/constants.py index d63a063e..1d41a53e 100644 --- a/bot/constants.py +++ b/bot/constants.py @@ -174,6 +174,23 @@ class Emojis: pull_request_closed = "<:PRClosed:629695470519713818>" merge = "<:PRMerged:629695470570176522>" + # TicTacToe Emojis + number_emojis = { + 1: "\u0031\ufe0f\u20e3", + 2: "\u0032\ufe0f\u20e3", + 3: "\u0033\ufe0f\u20e3", + 4: "\u0034\ufe0f\u20e3", + 5: "\u0035\ufe0f\u20e3", + 6: "\u0036\ufe0f\u20e3", + 7: "\u0037\ufe0f\u20e3", + 8: "\u0038\ufe0f\u20e3", + 9: "\u0039\ufe0f\u20e3" + } + confirmation = "\u2705" + decline = "\u274c" + x = "\U0001f1fd" + o = "\U0001f1f4" + status_online = "<:status_online:470326272351010816>" status_idle = "<:status_idle:470326266625785866>" status_dnd = "<:status_dnd:470326272082313216>" |