mirror of
https://github.com/FlightControl-Master/MOOSE_MISSIONS.git
synced 2025-08-15 10:37:46 +00:00
Updated Moose.lua
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
-- Name: TSK-010 - Task Modelling - SEAD.lua
|
||||
-- Author: FlightControl
|
||||
-- Date Created: 31 Mar 2017
|
||||
--
|
||||
-- # Situation:
|
||||
--
|
||||
-- This mission demonstrates the Task_SEAD.
|
||||
--
|
||||
-- # Test cases:
|
||||
--
|
||||
|
||||
HQ = GROUP:FindByName( "HQ", "Bravo HQ" )
|
||||
|
||||
CommandCenter = COMMANDCENTER:New( HQ, "Lima" )
|
||||
|
||||
Scoring = SCORING:New( "Detect Demo" )
|
||||
|
||||
Mission = MISSION
|
||||
:New( CommandCenter, "Overlord", "High", "SEAD the area!", coalition.side.RED )
|
||||
:AddScoring( Scoring )
|
||||
|
||||
AttackGroups = SET_GROUP:New():FilterCoalitions( "red" ):FilterPrefixes( "Attack" ):FilterStart()
|
||||
|
||||
TargetSetUnit = SET_UNIT:New():FilterCoalitions("blue"):FilterPrefixes("Target"):FilterStart()
|
||||
|
||||
TaskSEAD = TASK_A2G_SEAD:New(Mission,AttackGroups,"SEAD",TargetSetUnit)
|
||||
@@ -0,0 +1,27 @@
|
||||
---
|
||||
-- Name: TSK-100 - A2G - BAI
|
||||
-- Author: FlightControl
|
||||
-- Date Created: 28 May 2017
|
||||
--
|
||||
-- # Situation:
|
||||
--
|
||||
-- This mission demonstrates the Task_BAI.
|
||||
--
|
||||
-- # Test cases:
|
||||
--
|
||||
|
||||
HQ = GROUP:FindByName( "HQ", "Bravo HQ" )
|
||||
|
||||
CommandCenter = COMMANDCENTER:New( HQ, "Bravo" )
|
||||
|
||||
Scoring = SCORING:New( "BAI Demo" )
|
||||
|
||||
Mission = MISSION
|
||||
:New( CommandCenter, "Overlord", "Primary", "Perform a Battlefield Air Interdiction in the area!", coalition.side.RED )
|
||||
:AddScoring( Scoring )
|
||||
|
||||
AttackGroups = SET_GROUP:New():FilterCoalitions( "red" ):FilterPrefixes( "Attack" ):FilterStart()
|
||||
|
||||
TargetSetUnit = SET_UNIT:New():FilterCoalitions("blue"):FilterPrefixes( "Target" ):FilterStart()
|
||||
|
||||
TaskBAI = TASK_A2G_BAI:New( Mission, AttackGroups,"BAI", TargetSetUnit )
|
||||
@@ -0,0 +1,29 @@
|
||||
---
|
||||
-- Name: TSK-101 - A2G - BAI - WWII Mode
|
||||
-- Author: FlightControl
|
||||
-- Date Created: 28 May 2017
|
||||
--
|
||||
-- # Situation:
|
||||
--
|
||||
-- This mission demonstrates the Task_BAI.
|
||||
--
|
||||
-- # Test cases:
|
||||
--
|
||||
|
||||
HQ = GROUP:FindByName( "HQ", "Bravo HQ" )
|
||||
|
||||
CommandCenter = COMMANDCENTER:New( HQ, "Bravo" )
|
||||
CommandCenter:SetModeWWII()
|
||||
CommandCenter:SetReferenceZones( "Airbase" )
|
||||
|
||||
Scoring = SCORING:New( "BAI Demo" )
|
||||
|
||||
Mission = MISSION
|
||||
:New( CommandCenter, "Overlord", "Primary", "Perform a Battlefield Air Interdiction in the area!", coalition.side.RED )
|
||||
:AddScoring( Scoring )
|
||||
|
||||
AttackGroups = SET_GROUP:New():FilterCoalitions( "red" ):FilterPrefixes( "Attack" ):FilterStart()
|
||||
|
||||
TargetSetUnit = SET_UNIT:New():FilterCoalitions("blue"):FilterPrefixes( "Target" ):FilterStart()
|
||||
|
||||
TaskBAI = TASK_A2G_BAI:New( Mission, AttackGroups,"BAI", TargetSetUnit )
|
||||
Reference in New Issue
Block a user