-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase-configs.py
44 lines (39 loc) · 1.55 KB
/
base-configs.py
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
38
39
40
41
42
43
44
# Discord
TOKEN = ""
PREFIX = "ma!"
LOG_CHANNEL = 0
# Postgresql Database
PG_HOST = ""
PG_DB = ""
PG_USER = ""
PG_PWD = ""
PG_PORT = 0
# Websockets
WS_HOST = ""
WS_PORT = 0
# Universalis
UNIVERSALIS_BASE_URL = "https://universalis.app/api/v2"
# xivapi
XIVAPI_BASE_URL = "https://v2.xivapi.com/api"
# FF XIV
REGIONS = {
"North-America": {
"Aether": ["Adamantoise", "Cactuar", "Faerie", "Gilgamesh", "Jenova", "Midgardsormr", "Sargatanas", "Siren"],
"Crystal": ["Balmung", "Brynhildr", "Coeurl", "Diabolos", "Goblin", "Malboro", "Mateus", "Zalera"],
"Dynamis": ["Cuchulainn", "Golem", "Halicarnassus", "Kraken", "Maduin", "Marilith", "Rafflesia", "Seraph"],
"Primal": ["Behemoth", "Excalibur", "Exodus", "Famfrit", "Hyperion", "Lamia", "Leviathan", "Ultros"],
},
"Europe": {
"Chaos": ["Cerberus", "Louisoix", "Moogle", "Omega", "Phantom", "Ragnarok", "Sagittarius", "Spriggan"],
"Light": ["Alpha", "Lich", "Odin", "Phoenix", "Raiden", "Shiva", "Twintania", "Zodiark"],
},
"Japan": {
"Elemental": ["Aegis", "Atomos", "Carbuncle", "Garuda", "Gungnir", "Kujata", "Tonberry", "Typhon"],
"Gaia": ["Alexander", "Bahamut", "Durandal", "Fenrir", "Ifrit", "Ridill", "Tiamat", "Ultima"],
"Mana": ["Anima", "Asura", "Chocobo", "Hades", "Ixion", "Masamune", "Pandaemonium", "Titan"],
"Meteor": ["Belias", "Mandragora", "Ramuh", "Shinryu", "Unicorn", "Valefor", "Yojimbo", "Zeromus"],
},
"Oceania": {
"Materia": ["Bismarck", "Ravana", "Sephirot", "Sophia", "Zurvan"],
},
}