diff options
| author | 2021-01-31 05:08:04 +0530 | |
|---|---|---|
| committer | 2021-01-31 05:08:04 +0530 | |
| commit | 2ab49ece13ef96e7dcf150bb60ad22842e3758ea (patch) | |
| tree | 9777ff490ce343d9973b0fe4cd0aa1cef9515ed8 /bot/constants.py | |
| parent | Add ability to choose ai token while playing against ai (diff) | |
| parent | Merge branch 'master' into feature/connect_four (diff) | |
Merge branch 'feature/connect_four' of https://github.com/Shivansh-007/sir-lancebot into feature/connect_four
Diffstat (limited to '')
| -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>"  |