Add snare movement lock tactic

This commit is contained in:
2026-06-18 10:11:16 +09:00
parent dcf45a3cd1
commit 14ca76d8cb
11 changed files with 121 additions and 55 deletions

View File

@@ -798,8 +798,8 @@ function Check-Skill-Definitions() {
Fail "Skill $skillId action_lock effect must have a stable status."
}
$action = [string](Get-Prop $effect "action" "")
if ($action -ne "skill") {
Fail "Skill $skillId action_lock effect currently supports only action=skill."
if ($action -ne "skill" -and $action -ne "move") {
Fail "Skill $skillId action_lock effect currently supports only action=skill or action=move."
}
if ([int](Get-Prop $effect "duration_turns" 1) -le 0) {
Fail "Skill $skillId action_lock effect must have positive duration_turns."