F/A-18E/F/G Super Hornet mod support v2.1 (#84)

* Don't generate runway data for heliports.

Fixes https://github.com/dcs-liberation/dcs_liberation/issues/2710.

* Remove dead code.

* Implemented support for Chiller Juice Studios F/A-18E/F/G Super Hornet mod

The Chiller Juice Studios Super Hornet mod works like this: it changes the stock F/A-18C Hornet into F/A-18E/F/G Super Hornet / Growler. The exact variant is selected with argument 999 in the livery description.lua, which is why I chose to add the three variants in the FA-18C_hornet.yaml. This way, we can use the squadrons mechanism in Liberation to select the appropriate variant by specifying the correct livery for the squadron.

Current properties injected are wingspan / width and the custom ordnance added by the mod.

Added F/A-18E/F/G banner by Schmokedpancake and F/A-18F icon.

Resolves https://github.com/dcs-liberation/dcs_liberation/issues/2681

* Added a separate loadout file for the Chiller Juice Studios F/A-18E/F/G Super Hornet mod. Currently only replaces the FPU-8A fuel tanks with FPU-12s.

* Added the possibility to use the AI variant of the F/A-18C in campaigns, allowing different loadouts and in the future, the Super Hornet mod alongside legacy Hornets in the same campaign.

* Updated Chiller Juice Studios F/A-18E/F/G Super Hornet mod support to version 2.0. Removed the 1.x version property and pylon injection since they are no longer necessary, since 2.0 adds the Super Hornet variants as separate aircraft. For the same reason, removed the AI-only F/A-18C from the faction files (still retained the aircraft yaml, loadout files and icon/banner in case someone still wants to use it).

Includes F/A-18E/F/G banner by Schmokedpancake, loadouts by @sgtfuzzle17 and F/A-18E/F icons.

* Added Super Hornet, Growler squadrons and Growler banner by @sgtfuzzle17
The squadrons include the model of the airframe in their name, so they can be referenced directly from campaign yaml files without the risk of conflicting with the same squadron of a different era, flying a different airframe.

Also updated the E and G model icons.

Resolves #77

* Fixed a bug with the EA-18G banner not being visible in Retribution. Also added the Super Hornet variants to factions bluefor_modern and Israel-USN_2005_Allied_Sword.

* Corrected the descriptions for tandem-seat Super Hornet variants.

* Updated Chiller Juice Studios F/A-18E/F/G Super Hornet mod support to version 2.1

* Anti-ship loadouts are now named properly.

* Update changelog.md

* Update QNewGameWizard.py

---------

Co-authored-by: Dan Albert <dan@gingerhq.net>
Co-authored-by: Raffson <Raffson@users.noreply.github.com>
This commit is contained in:
MetalStormGhost 2023-03-12 21:17:29 +02:00 committed by GitHub
parent e827d6d1d0
commit e2797fd796
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
42 changed files with 4017 additions and 10 deletions

View File

@ -2,7 +2,7 @@
## Features/Improvements
* **[Mission Generation]** Given a CAS flight was planned, delay ground force attack until first CAS flight is on station
* **[Mission Generation]** Add option to switch ATFLIR to LITENING automatically for ground based F-18C flights
* **[Mission Generation]** Add option to switch ATFLIR to LITENING automatically for ground based F/A-18C flights
* **[Mission Generation]** Add option to configure OPFOR autoplanner aggressiveness and have the AI take risks and plan missions against defended targets
* **[Mission Generation]** Add option to configure the desired tanker on-station time in settings
* **[Mission Generation]** Reserve GUARD frequency on VHF/UHF
@ -11,6 +11,7 @@
* **[Mission Generation]** Enable spectating & F11 free camera when the "Allow external views" option is selected
* **[Cheat Menu]** Option to instantly transfer squadrons across bases.
* **[Modding]** Support for IDF Mod Project F-16I Sufa & F-16D v3.2 mod
* **[Modding]** Support for F/A-18E/F/G mod version 2.1
* **[Modding]** Support for Swedish Military Assets for DCS by Currenthill Version 1.10
* **[UI]** Add selectable units in faction overview during campaign generation.
* **[UI]** Add button to rename pilots in Air Wing's Squadron dialog.

View File

@ -142,6 +142,7 @@ from pydcs_extensions.f16i_idf.f16i_idf import (
from pydcs_extensions.f22a.f22a import F_22A
from pydcs_extensions.f4b.f4b import VSN_F4B, VSN_F4C
from pydcs_extensions.f84g.f84g import VSN_F84G
from pydcs_extensions.fa18efg.fa18efg import FA_18E, FA_18F, EA_18G
from pydcs_extensions.hercules.hercules import Hercules
from pydcs_extensions.jas39.jas39 import JAS39Gripen, JAS39Gripen_AG
from pydcs_extensions.su30.su30 import Su_30MKA, Su_30MKI, Su_30MKM, Su_30SM
@ -182,6 +183,8 @@ ESCORT_CAPABLE = [
F_16D_50_NS,
F_16D_52,
F_16D_52_NS,
FA_18E,
FA_18F,
FA_18C_hornet,
JF_17,
JAS39Gripen,
@ -258,6 +261,8 @@ CAS_CAPABLE = [
F_16D_50_NS,
F_16D_52,
F_16D_52_NS,
FA_18E,
FA_18F,
FA_18C_hornet,
Tornado_GR4,
Tornado_IDS,
@ -359,6 +364,9 @@ SEAD_ESCORT_CAPABLE = [
F_16D_50_NS,
F_16D_52,
F_16D_52_NS,
EA_18G,
FA_18E,
FA_18F,
FA_18C_hornet,
Tornado_IDS,
Su_25T,
@ -444,6 +452,8 @@ STRIKE_CAPABLE = [
F_16D_50_NS,
F_16D_52,
F_16D_52_NS,
FA_18E,
FA_18F,
FA_18C_hornet,
AV8BNA,
JF_17,
@ -524,6 +534,8 @@ ANTISHIP_CAPABLE = [
Tu_142,
Tu_22M3,
H_6J,
FA_18E,
FA_18F,
FA_18C_hornet,
JAS39Gripen_AG,
F_16A_MLU,
@ -579,6 +591,8 @@ RUNWAY_ATTACK_CAPABLE = [
F_16D_50_NS,
F_16D_52,
F_16D_52_NS,
FA_18E,
FA_18F,
FA_18C_hornet,
AV8BNA,
JF_17,

View File

@ -348,9 +348,11 @@ class AircraftType(UnitType[Type[FlyingType]]):
@classmethod
def _each_variant_of(cls, aircraft: Type[FlyingType]) -> Iterator[AircraftType]:
data_path = Path("resources/units/aircraft") / f"{aircraft.id}.yaml"
# Replace slashes with underscores because slashes are not allowed in filenames
aircraft_id = aircraft.id.replace("/", "_")
data_path = Path("resources/units/aircraft") / f"{aircraft_id}.yaml"
if not data_path.exists():
logging.warning(f"No data for {aircraft.id}; it will not be available")
logging.warning(f"No data for {aircraft_id}; it will not be available")
return
with data_path.open(encoding="utf-8") as data_file:
@ -371,7 +373,7 @@ class AircraftType(UnitType[Type[FlyingType]]):
nautical_miles(50) if aircraft.helicopter else nautical_miles(150)
)
logging.warning(
f"{aircraft.id} does not specify a max_range. Defaulting to "
f"{aircraft_id} does not specify a max_range. Defaulting to "
f"{mission_range.nautical_miles}NM"
)

View File

@ -431,6 +431,10 @@ class Faction:
self.remove_vehicle("SAM SA-14 Strela-3 manpad")
self.remove_vehicle("SAM SA-24 Igla-S manpad")
self.remove_vehicle("Polyana-D4M1 C2 node")
if not mod_settings.fa_18efg:
self.remove_aircraft("FA-18E")
self.remove_aircraft("FA-18F")
self.remove_aircraft("EA-18G")
# swedish military assets pack
if not mod_settings.swedishmilitaryassetspack:
self.remove_vehicle("BV410_RBS70")

View File

@ -58,6 +58,7 @@ class ModSettings:
f4bc_phantom: bool = False
f15d_baz: bool = False
f_16_idf: bool = False
fa_18efg: bool = False
f22_raptor: bool = False
f84g_thunderjet: bool = False
f100_supersabre: bool = False

File diff suppressed because it is too large Load Diff

View File

@ -323,6 +323,7 @@ def create_game(
ModSettings(
a4_skyhawk=False,
a6a_intruder=False,
fa_18efg=False,
f4bc_phantom=False,
f22_raptor=False,
f84g_thunderjet=False,

View File

@ -151,7 +151,8 @@ class PackageModel(QAbstractListModel):
@staticmethod
def icon_for_flight(flight: Flight) -> Optional[QIcon]:
"""Returns the icon that should be displayed for the flight."""
name = flight.unit_type.dcs_id
"""Replace slashes with underscores because slashes are not allowed in filenames"""
name = flight.unit_type.dcs_id.replace("/", "_")
if name in AIRCRAFT_ICONS:
return QIcon(AIRCRAFT_ICONS[name])
return None
@ -451,7 +452,8 @@ class AirWingModel(QAbstractListModel):
@staticmethod
def icon_for_squadron(squadron: Squadron) -> Optional[QIcon]:
"""Returns the icon that should be displayed for the squadron."""
name = squadron.aircraft.dcs_id
"""Replace slashes with underscores because slashes are not allowed in filenames"""
name = squadron.aircraft.dcs_id.replace("/", "_")
if name in AIRCRAFT_ICONS:
return QIcon(AIRCRAFT_ICONS[name])
return None

View File

@ -453,7 +453,8 @@ class AircraftTypeList(QListView):
@staticmethod
def icon_for(aircraft: AircraftType) -> Optional[QIcon]:
name = aircraft.dcs_id
# Replace slashes with underscores because slashes are not allowed in filenames
name = aircraft.dcs_id.replace("/", "_")
if name in AIRCRAFT_ICONS:
return QIcon(AIRCRAFT_ICONS[name])
return None

View File

@ -13,7 +13,10 @@ class QFlightItem(QStandardItem):
self.flight = flight
if self.flight.unit_type.dcs_id in AIRCRAFT_ICONS:
icon = QIcon((AIRCRAFT_ICONS[self.flight.unit_type.dcs_id]))
# Replace slashes with underscores because slashes are not allowed in filenames
icon = QIcon(
(AIRCRAFT_ICONS[self.flight.unit_type.dcs_id.replace("/", "_")])
)
self.setIcon(icon)
self.setEditable(False)
self.setText(f"{flight} in {flight.flight_plan.startup_time()}")

View File

@ -11,8 +11,11 @@ class QFlightTypeTaskInfo(QGroupBox):
layout = QGridLayout()
self.aircraft_icon = QLabel()
if self.flight.unit_type.dcs_id in AIRCRAFT_ICONS:
self.aircraft_icon.setPixmap(AIRCRAFT_ICONS[self.flight.unit_type.dcs_id])
# Replace slashes with underscores because slashes are not allowed in filenames
if self.flight.unit_type.dcs_id.replace("/", "_") in AIRCRAFT_ICONS:
self.aircraft_icon.setPixmap(
AIRCRAFT_ICONS[self.flight.unit_type.dcs_id.replace("/", "_")]
)
self.task = QLabel("Task:")
self.task_type = QLabel(str(flight.flight_type))

View File

@ -181,6 +181,7 @@ class NewGameWizard(QtWidgets.QWizard):
f4bc_phantom=self.field("f4bc_phantom"),
f15d_baz=self.field("f15d_baz"),
f_16_idf=self.field("f_16_idf"),
fa_18efg=self.field("fa_18efg"),
f22_raptor=self.field("f22_raptor"),
f84g_thunderjet=self.field("f84g_thunderjet"),
f100_supersabre=self.field("f100_supersabre"),
@ -814,6 +815,8 @@ class GeneratorOptions(QtWidgets.QWizardPage):
self.registerField("f15d_baz", f15d_baz)
f_16_idf = QtWidgets.QCheckBox()
self.registerField("f_16_idf", f_16_idf)
fa_18efg = QtWidgets.QCheckBox()
self.registerField("fa_18efg", fa_18efg)
f22_raptor = QtWidgets.QCheckBox()
self.registerField("f22_raptor", f22_raptor)
f84g_thunderjet = QtWidgets.QCheckBox()
@ -854,6 +857,7 @@ class GeneratorOptions(QtWidgets.QWizardPage):
("F-4B/C Phantom II (v2.8.1.01 Standalone + 29Jan23 Patch)", f4bc_phantom),
("F-15D Baz (v1.0)", f15d_baz),
("F-16I Sufa & F-16D (v3.2 by IDF Mods Project)", f_16_idf),
("F/A-18E/F/G Super Hornet (version 2.1)", fa_18efg),
("F-22A Raptor", f22_raptor),
("F-84G Thunderjet (v2.5.7.01)", f84g_thunderjet),
("F-100 Super Sabre (v2.7.18.30765 patch 20.10.22)", f100_supersabre),

View File

@ -0,0 +1,53 @@
local unitPayloads = {
["name"] = "EA-18G",
["payloads"] = {
[1] = {
["name"] = "Retribution SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{FPU_12_FUEL_TANKHighVis}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{ALQ-99Wing}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{ALQ-99Center}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 4,
},
[7] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 3,
},
[8] = {
["CLSID"] = "{ALQ-99Wing}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{FPU_12_FUEL_TANKHighVis}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
},
["tasks"] = {
},
["unitType"] = "EA-18G",
}
return unitPayloads

View File

@ -0,0 +1,367 @@
local unitPayloads = {
["name"] = "FA-18C",
["payloads"] = {
[1] = {
["displayName"] = "Liberation SEAD",
["name"] = "Liberation SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8200-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 29,
},
},
[2] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 1,
},
[2] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-9M",
["num"] = 2,
},
[3] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 7,
},
[8] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-9M",
["num"] = 8,
},
[9] = {
["CLSID"] = "{C8E06185-7CD6-4C90-959F-044679E90751}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 19,
[2] = 11,
[3] = 18,
},
},
[3] = {
["displayName"] = "Liberation Anti-ship",
["name"] = "Liberation Anti-ship",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{8B7CADF9-4954-46B3-8CFB-93F2F5B90B03}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 30,
},
},
[4] = {
["displayName"] = "Liberation Strike",
["name"] = "Liberation Strike",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{51F9AAE5-964F-4D21-83FB-502E3BFE5F8A}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{51F9AAE5-964F-4D21-83FB-502E3BFE5F8A}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{51F9AAE5-964F-4D21-83FB-502E3BFE5F8A}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{51F9AAE5-964F-4D21-83FB-502E3BFE5F8A}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 31,
},
},
[5] = {
["displayName"] = "Liberation SEAD Escort",
["name"] = "Liberation SEAD Escort",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{F16A4DE0-116C-4A71-97F0-2CF85B0313EC}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8200-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{F16A4DE0-116C-4A71-97F0-2CF85B0313EC}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 29,
},
},
[6] = {
["displayName"] = "Liberation OCA/Runway",
["name"] = "Liberation OCA/Runway",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{AB8B8299-F1CC-4359-89B5-2172E0CF4A5A}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 31,
},
},
[7] = {
["displayName"] = "Liberation CAS",
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{F16A4DE0-116C-4A71-97F0-2CF85B0313EC}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{AF42E6DF-9A60-46D8-A9A0-1708B241AADB}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{AF42E6DF-9A60-46D8-A9A0-1708B241AADB}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{F16A4DE0-116C-4A71-97F0-2CF85B0313EC}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
},
},
[8] = {
["displayName"] = "Liberation DEAD",
["name"] = "Liberation DEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{9BCC2A2B-5708-4860-B1F1-053A18442067}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{AF42E6DF-9A60-46D8-A9A0-1708B241AADB}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{EFEC8201-B922-11d7-9897-000476191836}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{8D399DDA-FF81-4F14-904D-099B34FE7918}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{AF42E6DF-9A60-46D8-A9A0-1708B241AADB}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{9BCC2A2B-5708-4860-B1F1-053A18442067}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{6CEB49FC-DED8-4DED-B053-E1F033FF72D3}",
["num"] = 9,
},
},
["tasks"] = {
},
},
},
["unitType"] = "F/A-18C",
}
return unitPayloads

View File

@ -0,0 +1,463 @@
local unitPayloads = {
["name"] = "FA-18E",
["payloads"] = {
[1] = {
["displayName"] = "Retribution SEAD",
["name"] = "Retribution SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[2] = {
["displayName"] = "Retribution BARCAP",
["name"] = "Retribution BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 7,
},
[4] = {
["CLSID"] = "<CLEAN>",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 3,
},
[7] = {
["CLSID"] = "<CLEAN>",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
[10] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 10,
},
},
["tasks"] = {
[1] = 11,
},
},
[3] = {
["displayName"] = "Retribution TARCAP/Escort",
["name"] = "Retribution TARCAP/Escort",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[4] = {
["displayName"] = "Retribution Anti-ship",
["name"] = "Retribution Anti-ship",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{AGM_84D}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{AGM_84D}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[5] = {
["displayName"] = "Retribution BAI",
["name"] = "Retribution BAI",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[6] = {
["displayName"] = "Retribution CAS",
["name"] = "Retribution CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[7] = {
["displayName"] = "Retribution OCA/Runway",
["name"] = "Retribution OCA/Runway",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_31_V_4B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_31_V_4B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[8] = {
["displayName"] = "Retribution DEAD",
["name"] = "Retribution DEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{AGM-154A}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{AGM-154A}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{AGM-154A}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{AGM-154A}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[9] = {
["displayName"] = "Retribution Strike",
["name"] = "Retribution Strike",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[10] = {
["displayName"] = "Retribution OCA/aircraft",
["name"] = "Retribution OCA/aircraft",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{BRU33_2X_CBU-99}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{BRU33_2X_CBU-99}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
},
["tasks"] = {
},
["unitType"] = "FA-18E",
}
return unitPayloads

View File

@ -0,0 +1,463 @@
local unitPayloads = {
["name"] = "FA-18F",
["payloads"] = {
[1] = {
["displayName"] = "Retribution SEAD",
["name"] = "Retribution SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[2] = {
["displayName"] = "Retribution BARCAP",
["name"] = "Retribution BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 7,
},
[4] = {
["CLSID"] = "<CLEAN>",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 3,
},
[7] = {
["CLSID"] = "<CLEAN>",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
[10] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 10,
},
},
["tasks"] = {
[1] = 11,
},
},
[3] = {
["displayName"] = "Retribution TARCAP/Escort",
["name"] = "Retribution TARCAP/Escort",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[4] = {
["displayName"] = "Retribution Anti-ship",
["name"] = "Retribution Anti-ship",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{AGM_84D}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{AGM_84D}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[5] = {
["displayName"] = "Retribution BAI",
["name"] = "Retribution BAI",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 8,
},
[3] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[6] = {
["displayName"] = "Retribution CAS",
["name"] = "Retribution CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "LAU_117_AGM_65F",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[7] = {
["displayName"] = "Retribution OCA/Runway",
["name"] = "Retribution OCA/Runway",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_31_V_4B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_31_V_4B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[8] = {
["displayName"] = "Retribution DEAD",
["name"] = "Retribution DEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{AGM-154A}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{AGM-154A}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{AGM-154A}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{AGM-154A}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[9] = {
["displayName"] = "Retribution Strike",
["name"] = "Retribution Strike",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{GBU_32_V_2B}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
[10] = {
["displayName"] = "Retribution OCA/aircraft",
["name"] = "Retribution OCA/aircraft",
["pylons"] = {
[1] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 9,
},
[2] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{BRU33_2X_CBU-99}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{AN_ASQ_228}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{BRU33_2X_CBU-99}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{FPU_12_FUEL_TANK}",
["num"] = 5,
},
[8] = {
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
["num"] = 2,
},
[9] = {
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
},
},
},
["tasks"] = {
},
["unitType"] = "FA-18F",
}
return unitPayloads

View File

@ -17,6 +17,9 @@
"F-16I Sufa",
"F-14B Tomcat",
"F/A-18C Hornet (Lot 20)",
"F/A-18E Super Hornet",
"F/A-18F Super Hornet",
"EA-18G Growler",
"AV-8B Harrier II Night Attack",
"AH-1W SuperCobra",
"AH-64D Apache Longbow",

View File

@ -28,6 +28,9 @@
"F-22A Raptor",
"F-5E Tiger II",
"F/A-18C Hornet (Lot 20)",
"F/A-18E Super Hornet",
"F/A-18F Super Hornet",
"EA-18G Growler",
"JF-17 Thunder",
"Ka-50 Hokum",
"Ka-50 Hokum III",

View File

@ -30,6 +30,9 @@
"F-16D Fighting Falcon (Block 50)",
"F-22A Raptor",
"F/A-18C Hornet (Lot 20)",
"F/A-18E Super Hornet",
"F/A-18F Super Hornet",
"EA-18G Growler",
"S-3B Viking",
"SH-60B Seahawk",
"UH-1H Iroquois",

View File

@ -9,6 +9,9 @@
"aircrafts": [
"F-14B Tomcat",
"F/A-18C Hornet (Lot 20)",
"F/A-18E Super Hornet",
"F/A-18F Super Hornet",
"EA-18G Growler",
"AV-8B Harrier II Night Attack",
"AH-1W SuperCobra",
"S-3B Viking",

View File

@ -0,0 +1,11 @@
---
name: VAQ-130 (E/A-18G)
nickname: Zappers
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: EA-18G Growler
livery: "*VFA-31 NH206"
mission_types:
- SEAD
- SEAD Escort

View File

@ -0,0 +1,11 @@
---
name: VAQ-139 (E/A-18G)
nickname: Cougars
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: EA-18G Growler
livery: "*VAQ-139 NA501"
mission_types:
- SEAD
- SEAD Escort

View File

@ -0,0 +1,23 @@
---
name: VFA-146 (F/A-18E)
nickname: Blue Diamonds
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18E Super Hornet
livery: "*VFA-146 NH304"
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-211 (F/A-18E)
nickname: Fighting Checkmates
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18E Super Hornet
livery: "*VFA-31 NH206"
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-83 (F/A-18E)
nickname: Rampagers
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18E Super Hornet
livery: "*VFA-83 AC203 (2022)"
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-87 (F/A-18E)
nickname: Golden Warriors
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18E Super Hornet
livery: "*VFA-87 NH404"
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-103 (F/A-18F)
nickname: Jolly Rogers
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18F Super Hornet
livery: "*VFA-103 AG212 (2019)"
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-211 (F/A-18F)
nickname: Fighting Checkmates
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18F Super Hornet
livery: VFA-211 AB202 (2017)
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-41 (F/A-18F)
nickname: Black Aces
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18F Super Hornet
livery: VFA-41 NG101 (2015)
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

View File

@ -0,0 +1,23 @@
---
name: VFA-94 (F/A-18F)
nickname: Mighty Shrikes
female_pilot_percentage: 12
country: USA
role: Strike Fighter
aircraft: F/A-18F Super Hornet
livery: VFA-94 NA204 (2020)
mission_types:
- Anti-ship
- BAI
- BARCAP
- CAS
- DEAD
- Escort
- Intercept
- OCA/Aircraft
- OCA/Runway
- SEAD
- SEAD Escort
- Strike
- Fighter sweep
- TARCAP

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 243 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,38 @@
carrier_capable: true
description:
'The Boeing EA-18G Growler is an American carrier-based electronic warfare aircraft,
a specialized version of the two-seat F/A-18F Super Hornet. The EA-18G replaced the
Northrop Grumman EA-6B Prowlers in service with the United States Navy.'
introduced: 1999
manufacturer: McDonnell Douglas
origin: USA
price: 25
role: Carrier-based Multirole Fighter
fuel:
# Parking A1 to RWY 32 at Akrotiri.
taxi: 170
# AB takeoff to 350/0.85, reduce to MIL and maintain 350 to 25k ft.
climb_ppm: 44.25
# 0.85 mach for 100NM.
cruise_ppm: 22.1
# ~0.9 mach for 100NM. Occasional AB use.
combat_ppm: 27.5
min_safe: 2000
variants:
EA-18G Growler: {}
radios:
intra_flight: AN/ARC-210
inter_flight: AN/ARC-210
channels:
type: common
# DCS will clobber channel 1 of the first radio compatible with the flight's
# assigned frequency. Since the F/A-18's two radios are both AN/ARC-210s,
# radio 1 will be compatible regardless of which frequency is assigned, so
# we must use radio 1 for the intra-flight radio.
intra_flight_radio_index: 1
inter_flight_radio_index: 2
utc_kneeboard: true
# default_overrides:
# HelmetMountedDevice: 1
# InnerBoard: 0
# OuterBoard: 0

View File

@ -0,0 +1,49 @@
carrier_capable: true
description:
'The F/A-18E Super Hornet is a single-seat, twin engine, carrier-capable, multirole
fighter aircraft. The Super Hornets are larger and more advanced derivatives of the
McDonnell Douglas F/A-18C and D Hornets, also known as legacy Hornets.
The Super Hornet is equipped with a large suite of sensors that includes a radar, targeting
pod, and a helmet mounted sight. In addition to its internal 20mm cannon, the Super Hornet
can be armed with a large assortment of unguided bombs and rockets, laser and GPS-guided
bombs, air-to-surface missiles of all sorts, and both radar and infrared-guided
air-to-air missiles.
The Super Hornet is also known for its extreme, slow-speed maneuverability in a dogfight.
Although incredibly deadly, the Super Hornet is also a very easy aircraft to fly.'
introduced: 1999
manufacturer: McDonnell Douglas
origin: USA
price: 25
role: Carrier-based Multirole Fighter
fuel:
# Parking A1 to RWY 32 at Akrotiri.
taxi: 170
# AB takeoff to 350/0.85, reduce to MIL and maintain 350 to 25k ft.
climb_ppm: 44.25
# 0.85 mach for 100NM.
cruise_ppm: 22.1
# ~0.9 mach for 100NM. Occasional AB use.
combat_ppm: 27.5
min_safe: 2000
variants:
F/A-18E Super Hornet: {}
radios:
intra_flight: AN/ARC-210
inter_flight: AN/ARC-210
channels:
type: common
# DCS will clobber channel 1 of the first radio compatible with the flight's
# assigned frequency. Since the F/A-18's two radios are both AN/ARC-210s,
# radio 1 will be compatible regardless of which frequency is assigned, so
# we must use radio 1 for the intra-flight radio.
intra_flight_radio_index: 1
inter_flight_radio_index: 2
utc_kneeboard: true
# default_overrides:
# HelmetMountedDevice: 1
# InnerBoard: 0
# OuterBoard: 0

View File

@ -0,0 +1,49 @@
carrier_capable: true
description:
'The F/A-18F Super Hornet is a tandem-seat, twin engine, carrier-capable, multirole
fighter aircraft. The Super Hornets are larger and more advanced derivatives of the
McDonnell Douglas F/A-18C and D Hornets, also known as legacy Hornets.
The Super Hornet is equipped with a large suite of sensors that includes a radar, targeting
pod, and a helmet mounted sight. In addition to its internal 20mm cannon, the Super Hornet
can be armed with a large assortment of unguided bombs and rockets, laser and GPS-guided
bombs, air-to-surface missiles of all sorts, and both radar and infrared-guided
air-to-air missiles.
The Super Hornet is also known for its extreme, slow-speed maneuverability in a dogfight.
Although incredibly deadly, the Super Hornet is also a very easy aircraft to fly.'
introduced: 2006
manufacturer: Boeing
origin: USA
price: 25
role: Carrier-based Multirole Fighter
fuel:
# Parking A1 to RWY 32 at Akrotiri.
taxi: 170
# AB takeoff to 350/0.85, reduce to MIL and maintain 350 to 25k ft.
climb_ppm: 44.25
# 0.85 mach for 100NM.
cruise_ppm: 22.1
# ~0.9 mach for 100NM. Occasional AB use.
combat_ppm: 27.5
min_safe: 2000
variants:
F/A-18F Super Hornet: {}
radios:
intra_flight: AN/ARC-210
inter_flight: AN/ARC-210
channels:
type: common
# DCS will clobber channel 1 of the first radio compatible with the flight's
# assigned frequency. Since the F/A-18's two radios are both AN/ARC-210s,
# radio 1 will be compatible regardless of which frequency is assigned, so
# we must use radio 1 for the intra-flight radio.
intra_flight_radio_index: 1
inter_flight_radio_index: 2
utc_kneeboard: true
# default_overrides:
# HelmetMountedDevice: 1
# InnerBoard: 0
# OuterBoard: 0

View File

@ -0,0 +1,36 @@
carrier_capable: true
description:
'The F/A-18C Hornet is twin engine, supersonic fighter that is flown
by a single pilot in a "glass cockpit". It combines extreme maneuverability , a
deadly arsenal of weapons, and the ability to operate from an aircraft carrier.
Operated by several nations, this multi-role fighter has been instrumental in conflicts
from 1986 to today.
The Hornet is equipped with a large suite of sensors that includes a radar, targeting
pod, and a helmet mounted sight. In addition to its internal 20mm cannon, the Hornet
can be armed with a large assortment of unguided bombs and rockets, laser and GPS-guided
bombs, air-to-surface missiles of all sorts, and both radar and infrared-guided
air-to-air missiles.
The Hornet is also known for its extreme, slow-speed maneuverability in a dogfight.
Although incredibly deadly, the Hornet is also a very easy aircraft to fly.'
introduced: 1987
manufacturer: McDonnell Douglas
origin: USA
price: 20
role: Carrier-based Multirole Fighter
# DCS default livery for the Hornet is the Blue Angels.
fuel:
# Parking A1 to RWY 32 at Akrotiri.
taxi: 170
# AB takeoff to 350/0.85, reduce to MIL and maintain 350 to 25k ft.
climb_ppm: 44.25
# 0.85 mach for 100NM.
cruise_ppm: 22.1
# ~0.9 mach for 100NM. Occasional AB use.
combat_ppm: 27.5
min_safe: 2000
variants:
F/A-18C Hornet (AI): {}