This commit is contained in:
bridge
2025-11-22 16:09:40 +08:00
parent c25b652fbe
commit c6d1814263
4 changed files with 20 additions and 3 deletions

View File

@@ -15,7 +15,11 @@ const ELEMENT_MAP: Record<string, string> = {
'Water': '水',
'Fire': '火',
'Earth': '土',
'None': '无'
'None': '无',
// Map internal key names if they leak (e.g. GOLD from RootElement)
'gold': '金',
'Gold': '金',
'GOLD': '金'
};
export function translateElement(type: string): string {