fix encodage
This commit is contained in:
parent
d18e148cf2
commit
c7e8ab62be
1 changed files with 10 additions and 9 deletions
19
config.py
19
config.py
|
|
@ -1,3 +1,4 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
import os
|
import os
|
||||||
from dotenv import load_dotenv
|
from dotenv import load_dotenv
|
||||||
|
|
||||||
|
|
@ -13,22 +14,22 @@ DATABASE_PATH = "/app/data/bot_data.db"
|
||||||
|
|
||||||
# Configuration des clans
|
# Configuration des clans
|
||||||
CLAN_CONFIG = {
|
CLAN_CONFIG = {
|
||||||
'RTF': {'name': 'RTF', 'emoji': 'â', 'color': 0x00ff00},
|
'RTF': {'name': 'RTF', 'emoji': '🛡️', 'color': 0x00ff00},
|
||||||
'RTFC': {'name': 'RTFC', 'emoji': '🔥', 'color': 0xff4500},
|
'RTFC': {'name': 'RTFC', 'emoji': '🔥', 'color': 0xff4500},
|
||||||
'RTFR': {'name': 'RTFR', 'emoji': 'âš¡', 'color': 0x1e90ff}
|
'RTFR': {'name': 'RTFR', 'emoji': '⚔️', 'color': 0x1e90ff}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Configuration des boss avec difficultées
|
# Configuration des boss avec difficultés
|
||||||
BOSS_CONFIG = {
|
BOSS_CONFIG = {
|
||||||
'hydra': {'name': 'Hydra', 'emoji': 'ðŸ', 'color': 0xff6b35,
|
'hydra': {'name': 'Hydra', 'emoji': '📍', 'color': 0xff6b35,
|
||||||
'difficulties': ['normal', 'hard', 'brutal', 'nightmare']},
|
'difficulties': ['normal', 'hard', 'brutal', 'nightmare']},
|
||||||
'chimera': {'name': 'Chimera', 'emoji': 'ðŸ¦', 'color': 0x9932cc,
|
'chimera': {'name': 'Chimera', 'emoji': '🦁', 'color': 0x9932cc,
|
||||||
'difficulties': ['easy', 'normal', 'hard', 'brutal', 'nightmare', 'ultra']},
|
'difficulties': ['easy', 'normal', 'hard', 'brutal', 'nightmare', 'ultra']},
|
||||||
'cvc': {'name': 'Clan vs Clan', 'emoji': 'âš”ï¸', 'color': 0xff0000, 'difficulties': []}
|
'cvc': {'name': 'Clan vs Clan', 'emoji': '✔️', 'color': 0xff0000, 'difficulties': []}
|
||||||
}
|
}
|
||||||
|
|
||||||
# Mappings pour diminutifs de difficultés
|
# Mappings pour diminutifs de difficultés
|
||||||
DIFFICULTY_SHORTCUTS = {
|
DIFFICULTY_SHORTCUTS = {
|
||||||
'nm': 'nightmare',
|
'nm': 'nightmare',
|
||||||
'unm': 'ultra'
|
'unm': 'ultra'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue