diff --git a/Database/Tasks/HeloHuntAttack.lua b/Database/Tasks/HeloHuntAttack.lua new file mode 100644 index 0000000..45e8429 --- /dev/null +++ b/Database/Tasks/HeloHuntAttack.lua @@ -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) +} diff --git a/Database/Tasks/HeloHuntTransport.lua b/Database/Tasks/HeloHuntTransport.lua new file mode 100644 index 0000000..ba82940 --- /dev/null +++ b/Database/Tasks/HeloHuntTransport.lua @@ -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) +}