Clarify auto move attack badge

This commit is contained in:
2026-06-20 20:05:03 +09:00
parent e5318e65ad
commit 6a2157b29f
4 changed files with 38 additions and 2 deletions

View File

@@ -9172,7 +9172,7 @@ func _format_auto_attack_target_badge_text(preview: Dictionary) -> String:
var result_text := "퇴각" if bool(preview.get("would_defeat", false)) else "-%d" % damage
var directional_text := _format_directional_badge_suffix(preview)
var counter_text := _format_auto_attack_counter_badge_suffix(preview)
return "%s%s %d%%%s" % [result_text, directional_text, hit_chance, counter_text]
return "이동 %s%s %d%%%s" % [result_text, directional_text, hit_chance, counter_text]
func _format_auto_attack_target_hint(preview: Dictionary) -> String: