Refine Korean briefing and expand first battle

This commit is contained in:
2026-06-19 12:33:37 +09:00
parent 0a23b8aa75
commit 77db064d03
9 changed files with 403 additions and 170 deletions

View File

@@ -103,6 +103,7 @@ func get_runtime_terrain_defs(default_defs: Dictionary) -> Dictionary:
runtime["name"] = str(source.get("name", runtime.get("name", key)))
runtime["defense"] = int(source.get("defense", runtime.get("defense", 0)))
runtime["avoid"] = int(source.get("avoid", runtime.get("avoid", 0)))
runtime["heal"] = int(source.get("heal", runtime.get("heal", 0)))
runtime["move_cost"] = source.get("move_cost", runtime.get("move_cost", 1))
runtime["color"] = _parse_color(source.get("color", runtime.get("color", Color.WHITE)), runtime.get("color", Color.WHITE))
result[key] = runtime