DenyTunnel
Deny enemy use of tunnel
Usage: Used in 8 task(s)
Lua Implementation
-- Deny Tunnel
function execute(params)
local tunnelLoc = params.tunnel_location
local method = params.denial_method or "demolition"
if method == "demolition" then
this:addTask("DtDemolish", {location = tunnelLoc})
elseif method == "flooding" then
-- Simulate flooding
this:setStateProperty("TunnelFlooded", true)
end
return true
end
Tasks Using This Action (8)
Chokepoint Denial (Bridges, Tunnels)
Deep Strike/Interdiction (AIR DOMAIN)
Tunnel Entrance Detection
Subterranean/Tunnel Operations (LAND DOMAIN)
Underground Network Mapping
Subterranean/Tunnel Operations (LAND DOMAIN)
Entry and Clearance Operations
Subterranean/Tunnel Operations (LAND DOMAIN)
Booby Trap Detection and Neutralization
Subterranean/Tunnel Operations (LAND DOMAIN)
Tunnel Denial (Flooding, Demolition)
Subterranean/Tunnel Operations (LAND DOMAIN)
Hostage Rescue Operations
Subterranean/Tunnel Operations (LAND DOMAIN)
Underground Command Post Targeting
Subterranean/Tunnel Operations (LAND DOMAIN)