diff options
author | 2021-01-24 07:21:33 -0800 | |
---|---|---|
committer | 2021-01-24 07:21:33 -0800 | |
commit | d2c27550fa51bc2fc08d9bca1a23b26d502fae8d (patch) | |
tree | fe5125c602fa9e2fbaf725be690574906b7e7a4e /bot/constants.py | |
parent | Merge pull request #415 from htudu/issue-337 (diff) | |
parent | Merge branch 'master' into tic-tac-toe (diff) |
Merge pull request #397 from ks129/tic-tac-toe
Tic-tac-toe command
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>" |