-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
32 lines (24 loc) · 1023 Bytes
/
config.py
File metadata and controls
32 lines (24 loc) · 1023 Bytes
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
from dotenv import load_dotenv
import os
load_dotenv()
# Discord auth token
TOKEN = os.environ['TOKEN']
# Sockwars server guild id
GUILD_ID = int(os.environ['GUILD_ID'])
# Convenience variable...
GUILD_IDS = [GUILD_ID]
ERROR_CHANNEL_ID = int(os.environ['ERROR_CHANNEL_ID'])
KILL_CHANNEL_ID = int(os.environ['KILL_CHANNEL_ID'])
YOU_HAVE_NO_ENEMIES="https://imgur.com/F628Puf"
ITS_JOEVER='https://imgur.com/7tk1NT8'
SOCKED_MESSAGE_TEMPLATES = [
"It's either sock or get socked {target}. The ~~Sock Council~~ I mean... {player} has made their choice.",
"The odds were not in {target}'s favor.\nPerhaps, {player} fairs better.",
"UwU *giggles* here to report that {player} socked {target} *teehee*",
"The Cornucopia has claimed {target}, courtesy of {player} OwO!"
]
DQ_MESSAGE_TEMPLATES = [
"{player} was just eliminated. (ouch)",
"It's either sock or get socked {player}. The sock lords have eliminated you."
"I hope {player} gets a kill next time because they were just eliminated... "
]