fix encodage

This commit is contained in:
ArcElewyn 2025-08-28 15:32:20 +02:00
parent d18e148cf2
commit c7e8ab62be

View file

@ -1,3 +1,4 @@
# -*- coding: utf-8 -*-
import os import os
from dotenv import load_dotenv from dotenv import load_dotenv
@ -13,21 +14,21 @@ 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'