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

@@ -1000,6 +1000,10 @@ function Check-Terrain-Definitions() {
if ($avoid -lt 0 -or $avoid -gt 100) {
Fail "Terrain $terrainKey avoid must be between 0 and 100."
}
$heal = [int](Get-Prop $terrainDef "heal" 0)
if ($heal -lt 0 -or $heal -gt 99) {
Fail "Terrain $terrainKey heal must be between 0 and 99."
}
}
}