-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
37 lines (28 loc) · 1.24 KB
/
constants.py
File metadata and controls
37 lines (28 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from discord import Color
tortoise_guild_id = 1464188109364396169
website_url = "https://www.tortoisecommunity.org/"
github_repo_link = "https://github.com/Ryuga/Hermes"
bot_repo_link = "https://github.com/Tortoise-Community/Runtime-BOT"
discord_invite_link = "https://discord.gg/WeUtJ7hqum"
bot_invite_link = "https://discord.com/oauth2/authorize?client_id=780132667265122315"
tortoise_community_avatar_link = "https://avatars.githubusercontent.com/u/54438042"
# Log Channel IDs
system_log_channel_id = 1464188111050375297
bot_log_channel_id = 693090079329091615
bot_dev_channel_id = 692851221223964822
# Roles
moderator_role = 577368219875278849
admin_role = 577196762691928065
# Emojis
success_emoji = "<a:success:1479072071064490069>"
failure_emoji = "<a:failure:1479072121261920316>"
# Special
tortoise_developers = (197918569894379520, 612349409736392928)
# Embeds are not monospaced so we need to use spaces to make different lines "align"
# But discord doesn't like spaces and strips them down.
# Using a combination of zero width space + regular space solves stripping problem.
embed_space = "\u200b "
# After this is exceeded the link to tortoise paste service should be sent
max_message_length = 1000
rate_limit_minutes = 10
accent_color = 0x98DFAF