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