Improve opening battle presentation

This commit is contained in:
2026-06-20 01:56:32 +09:00
parent fe86e646ed
commit 3aa9d3e9e7
91 changed files with 2220 additions and 93 deletions

View File

@@ -3967,7 +3967,7 @@ func _append_destination_progress_line(result: Array[String], condition: Diction
return
var status := "도달" if _unit_reaches_tile(condition) else "미도달"
var label := _condition_destination_label(condition)
_append_progress_line(result, "%s %s · %s" % [label, _format_cells(targets), status], pending)
_append_progress_line(result, "%s · %s" % [label, status], pending)
func _append_turn_limit_progress_line(result: Array[String]) -> void:
@@ -4000,7 +4000,7 @@ func _append_event_destination_progress_line(result: Array[String], when: Dictio
return
var status := "도달" if _unit_reaches_tile(when) else "미도달"
var label := _condition_destination_label(when)
_append_progress_line(result, "%s %s · %s" % [label, _format_cells(targets), status])
_append_progress_line(result, "%s · %s" % [label, status])
func _condition_destination_label(condition: Dictionary) -> String: