mirror of
https://github.com/akaAgar/the-universal-mission-for-dcs-world.git
synced 2025-11-25 19:31:01 +00:00
Added "helo hunt" tasks for attack and transport helicopters
This commit is contained in:
parent
0be508c42c
commit
d13d94f1bb
25
Database/Tasks/HeloHuntAttack.lua
Normal file
25
Database/Tasks/HeloHuntAttack.lua
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
Library.tasks.heloHuntAttack = {
|
||||||
|
taskFamily = DCSEx.enums.taskFamily.HELO_HUNT,
|
||||||
|
description =
|
||||||
|
{
|
||||||
|
briefing = {
|
||||||
|
"Locate and neutralize all enemy rotary-wing assets in the area.",
|
||||||
|
"Enemy attack helicopters are staging nearby, you are to eliminate them before they launch their attack.",
|
||||||
|
"Intel confirms a group of hostile gunships in the area. You must render them combat-ineffective.",
|
||||||
|
"Engage and destroy rotary assets nearby, crippling enemy air support.",
|
||||||
|
},
|
||||||
|
short = "Destroy enemy attack helicopters",
|
||||||
|
},
|
||||||
|
conditions = {
|
||||||
|
difficultyMinimum = 0,
|
||||||
|
eras = {},
|
||||||
|
},
|
||||||
|
completionEvent = DCSEx.enums.taskEvent.DESTROY,
|
||||||
|
flags = { },
|
||||||
|
minimumDistance = DCSEx.converter.nmToMeters(10.0),
|
||||||
|
safeRadius = 100,
|
||||||
|
surfaceType = nil,
|
||||||
|
targetCount = { 2, 3 },
|
||||||
|
targetFamilies = { DCSEx.enums.unitFamily.HELICOPTER_ATTACK },
|
||||||
|
waypointInaccuracy = DCSEx.converter.nmToMeters(6.0)
|
||||||
|
}
|
||||||
22
Database/Tasks/HeloHuntTransport.lua
Normal file
22
Database/Tasks/HeloHuntTransport.lua
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
Library.tasks.heloHuntTransport = {
|
||||||
|
taskFamily = DCSEx.enums.taskFamily.HELO_HUNT,
|
||||||
|
description =
|
||||||
|
{
|
||||||
|
briefing = {
|
||||||
|
"",
|
||||||
|
},
|
||||||
|
short = "Destroy enemy transport helicopters",
|
||||||
|
},
|
||||||
|
conditions = {
|
||||||
|
difficultyMinimum = 0,
|
||||||
|
eras = {},
|
||||||
|
},
|
||||||
|
completionEvent = DCSEx.enums.taskEvent.DESTROY,
|
||||||
|
flags = { },
|
||||||
|
minimumDistance = DCSEx.converter.nmToMeters(10.0),
|
||||||
|
safeRadius = 100,
|
||||||
|
surfaceType = nil,
|
||||||
|
targetCount = { 2, 3 },
|
||||||
|
targetFamilies = { DCSEx.enums.unitFamily.HELICOPTER_TRANSPORT },
|
||||||
|
waypointInaccuracy = DCSEx.converter.nmToMeters(6.0)
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user