mirror of
https://github.com/akaAgar/the-universal-mission-for-dcs-world.git
synced 2025-11-25 19:31:01 +00:00
Initial commit
This commit is contained in:
26
Database/Tasks/GroundAttackAPC.lua
Normal file
26
Database/Tasks/GroundAttackAPC.lua
Normal file
@@ -0,0 +1,26 @@
|
||||
Library.tasks.groundAttackAPC = {
|
||||
taskFamily = DCSEx.enums.taskFamily.GROUND_ATTACK,
|
||||
description =
|
||||
{
|
||||
briefing = {
|
||||
"Enemy APCs are moving to reinforce frontline positions—neutralizing them now will cripple their mobility and delay their counterattack.",
|
||||
"Taking out these APCs disrupts enemy troop deployments and buys our ground forces critical time to consolidate gains.",
|
||||
"Enemy armored personnel carriers are transporting infantry toward our exposed flank—engage immediately to prevent a breakthrough.",
|
||||
"Our troops are under pressure—eliminating those APCs will ease the fight and reduce incoming fire on their position.",
|
||||
"Recon confirms high-value targets in the APC convoy, including command elements—destroying them now will cause significant disruption."
|
||||
},
|
||||
short = "Destroy enemy APCs",
|
||||
},
|
||||
conditions = {
|
||||
difficultyMinimum = 0,
|
||||
eras = {},
|
||||
},
|
||||
completionEvent = DCSEx.enums.taskEvent.DESTROY,
|
||||
flags = { DCSEx.enums.taskFlag.ALLOW_JTAC },
|
||||
minimumDistance = DCSEx.converter.nmToMeters(10.0),
|
||||
safeRadius = 100,
|
||||
surfaceType = land.SurfaceType.LAND,
|
||||
targetCount = { 3, 4 },
|
||||
targetFamilies = { DCSEx.enums.unitFamily.GROUND_APC },
|
||||
waypointInaccuracy = DCSEx.converter.nmToMeters(2.5)
|
||||
}
|
||||
Reference in New Issue
Block a user