UPDATE: Elation damage
All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 1m4s

This commit is contained in:
2026-01-08 14:04:39 +07:00
parent af6f190f01
commit cc0efd8dd1
7 changed files with 15 additions and 1 deletions

View File

@@ -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";
}
}