From cc0efd8dd16cb1ac45b9546d9453eaabebc5de6d Mon Sep 17 00:00:00 2001 From: AzenKain Date: Thu, 8 Jan 2026 14:04:39 +0700 Subject: [PATCH] UPDATE: Elation damage --- messages/cn.json | 2 ++ messages/en.json | 2 ++ messages/ja.json | 2 ++ messages/ko.json | 2 ++ messages/vi.json | 2 ++ messages/zh.json | 2 ++ src/types/attack.ts | 4 +++- 7 files changed, 15 insertions(+), 1 deletion(-) diff --git a/messages/cn.json b/messages/cn.json index 7c6d4ef..b35955f 100644 --- a/messages/cn.json +++ b/messages/cn.json @@ -63,6 +63,7 @@ "shaman": "同协", "warlock": "虚无", "memory": "记忆", + "elation": "欢愉", "fire": "火", "ice": "冰", "imaginary": "虚数", @@ -91,6 +92,7 @@ "windDmgBoost": "风属性伤害提高", "pursued": "附加伤害", "true damage": "真实伤害", + "elation damage": "欢愉伤害", "follow-up": "追加攻击", "elemental damage": "击破与超击破伤害", "dot": "持续伤害 ", diff --git a/messages/en.json b/messages/en.json index ef7c04b..ef0bb90 100644 --- a/messages/en.json +++ b/messages/en.json @@ -63,6 +63,7 @@ "shaman": "Harmony", "warlock": "Nihility", "memory": "Remembrance", + "elation": "Elation", "fire": "Fire", "ice": "Ice", "imaginary": "Imaginary", @@ -91,6 +92,7 @@ "windDmgBoost": "Wind damage boost", "pursued": "Additional damage", "true damage": "True damage", + "elation damage": "Elation Damage", "follow-up": "Follow-up Damage", "elemental damage": "Break and Super break damage", "dot": "Damage over time ", diff --git a/messages/ja.json b/messages/ja.json index 005d6fd..c553b04 100644 --- a/messages/ja.json +++ b/messages/ja.json @@ -63,6 +63,7 @@ "shaman": "調和", "warlock": "虚無", "memory": "記憶", + "elation": "愉悦", "fire": "炎", "ice": "氷", "imaginary": "虚数", @@ -91,6 +92,7 @@ "windDmgBoost": "風属性ダメージ上昇", "pursued": "追加ダメージ", "true damage": "貫通ダメージ", + "elation damage": "愉悦ダメージ", "follow-up": "追撃ダメージ", "elemental damage": "撃破・超撃破ダメージ", "dot": "継続ダメージ", diff --git a/messages/ko.json b/messages/ko.json index e5c3efa..dde342f 100644 --- a/messages/ko.json +++ b/messages/ko.json @@ -63,6 +63,7 @@ "shaman": "조화", "warlock": "허무", "memory": "기억", + "elation": "환락", "fire": "불", "ice": "얼음", "imaginary": "허수", @@ -91,6 +92,7 @@ "windDmgBoost": "바람 속성 피해 증가", "pursued": "추가 피해", "true damage": "관통 피해", + "elation damage": "환락 피해", "follow-up": "추가 공격 피해", "elemental damage": "파괴 및 초파괴 피해", "dot": "지속 피해", diff --git a/messages/vi.json b/messages/vi.json index 8b158fa..ccf493f 100644 --- a/messages/vi.json +++ b/messages/vi.json @@ -63,6 +63,7 @@ "shaman": "Hài Hòa", "warlock": "Hư Vô", "memory": "Ký Ức", + "elation": "Vui vẻ", "fire": "Lửa", "ice": "Băng", "imaginary": "Số ảo", @@ -91,6 +92,7 @@ "windDmgBoost": "Tăng sát thương phong", "pursued": "Sát thương kèm theo", "true damage": "Sát thương chuẩn", + "elation damage": "Sát thương vui vẻ", "follow-up": "Sát thương theo sau", "elemental damage": "Sát thương phá vỡ và siêu phá vỡ", "dot": "Sát Thương Duy Trì", diff --git a/messages/zh.json b/messages/zh.json index 7c6d4ef..b35955f 100644 --- a/messages/zh.json +++ b/messages/zh.json @@ -63,6 +63,7 @@ "shaman": "同协", "warlock": "虚无", "memory": "记忆", + "elation": "欢愉", "fire": "火", "ice": "冰", "imaginary": "虚数", @@ -91,6 +92,7 @@ "windDmgBoost": "风属性伤害提高", "pursued": "附加伤害", "true damage": "真实伤害", + "elation damage": "欢愉伤害", "follow-up": "追加攻击", "elemental damage": "击破与超击破伤害", "dot": "持续伤害 ", diff --git a/src/types/attack.ts b/src/types/attack.ts index 4419758..8d28ddf 100644 --- a/src/types/attack.ts +++ b/src/types/attack.ts @@ -26,7 +26,8 @@ export enum AttackType { ElementDamage = 10, Level = 11, Servant = 12, - TrueDamage = 13 + TrueDamage = 13, + ElationDamage = 14 } export function attackTypeToString(type: AttackType | undefined): string { @@ -48,6 +49,7 @@ export function attackTypeToString(type: AttackType | undefined): string { case AttackType.Level: return "Level"; case AttackType.Servant: return "Servant"; case AttackType.TrueDamage: return "True Damage"; + case AttackType.ElationDamage: return "Elation Damage"; default: return "Unknown"; } }