mirror of
https://github.com/akaAgar/the-universal-mission-for-dcs-world.git
synced 2025-11-25 19:31:01 +00:00
23 lines
591 B
Lua
23 lines
591 B
Lua
Library.tasks.helicopterDestroyInfantry = {
|
|
taskFamily = DCSEx.enums.taskFamily.HELICOPTER,
|
|
description =
|
|
{
|
|
briefing = {
|
|
"",
|
|
},
|
|
short = "Neutralize enemy infantry",
|
|
},
|
|
conditions = {
|
|
difficultyMinimum = 0,
|
|
eras = {},
|
|
},
|
|
completionEvent = DCSEx.enums.taskEvent.DESTROY,
|
|
flags = { },
|
|
minimumDistance = DCSEx.converter.nmToMeters(5.0),
|
|
safeRadius = 100,
|
|
surfaceType = nil,
|
|
targetCount = { 6, 8 },
|
|
targetFamilies = { DCSEx.enums.unitFamily.GROUND_INFANTRY },
|
|
waypointInaccuracy = DCSEx.converter.nmToMeters(1.5)
|
|
}
|