Added "Helicopter hunt" mission objective

This commit is contained in:
Ambroise Garel 2025-09-16 19:49:35 +02:00
parent d13d94f1bb
commit 655b5bc6aa
3 changed files with 8 additions and 6 deletions

View File

@ -75,6 +75,8 @@ Please also note that PvP is not supported at the moment and that the mission wi
- Additional content
- [ ] More objectives types
- [x] Helicopter hunt
- [ ] Offensive counter-air
- Balance improvements
- [ ] Tweaked XP requirements for medals/promotions
- Bug fixes

View File

@ -43,11 +43,11 @@ DCSEx.enums.taskFamily = {
-- CAS = XXX,
GROUND_ATTACK = 2,
-- HELICOPTER = XXX,
-- HELO_HUNT = XXX,
INTERCEPTION = 3,
OCA = 4,
SEAD = 5,
STRIKE = 6,
HELO_HUNT = 3,
INTERCEPTION = 4,
OCA = 5,
SEAD = 6,
STRIKE = 7,
}
-------------------------------------

View File

@ -52,7 +52,7 @@ do
[TUM.settings.id.PLAYER_COALITION] = { "Red", "Blue" }, -- Must match values in the coalition.side enum
[TUM.settings.id.TARGET_COUNT] = { "1", "2", "3", "4" },
[TUM.settings.id.TARGET_LOCATION] = { },
[TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Interception", "OCA", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum
[TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helicopter hunt", "Interception", "OCA", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum
[TUM.settings.id.TIME_PERIOD] = { "World War 2", "Korea War", "Vietnam War", "Late Cold War", "Modern" }, -- Must match values in the DCSEx.enums.timePeriod enum
[TUM.settings.id.WINGMEN] = { "None", "1", "2", "3" }
}