mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Update F/A-18E/F/G Super Hornet Mod to 2.4.0 (#484)
* Update F/A-18E/F/G Super Hornet Mod to 2.4.0 * Update F/A-18E/F/G Super Hornet Mod to 2.4.0 * ECM Pods for E/A-18G Growler to allow EW Jammer 2.0 Plugin * Update weapons classes for custom weapons * Adjust default loadouts * Update for Super Hornet 2.4.2 * Change Settings page to reflect 2.4.2 * Remove redeclared weapons * Add Recovery-tasking to tankers * Rewire new tankers to old tanker modsetting * Small bugfix w.r.t. CLI-tool * Save-compat fix: remap old Superbug_AITanker to FA_18ET * Add empty line at EOF * Revert "Add empty line at EOF" This reverts commit 4a7f616e47ace330eec045adc9c0490a67aef7f2. * Restore checkbox for AI Tankers --------- Co-authored-by: Raffson <Raffson@users.noreply.github.com>
This commit is contained in:
parent
398bb0775d
commit
0a930fa2ce
@ -427,7 +427,8 @@ class Faction:
|
|||||||
self.remove_aircraft("UH-60L")
|
self.remove_aircraft("UH-60L")
|
||||||
self.remove_aircraft("KC130J")
|
self.remove_aircraft("KC130J")
|
||||||
if not mod_settings.fa18ef_tanker:
|
if not mod_settings.fa18ef_tanker:
|
||||||
self.remove_aircraft("Superbug_AITanker")
|
self.remove_aircraft("FA-18ET")
|
||||||
|
self.remove_aircraft("FA-18FT")
|
||||||
if not mod_settings.f4bc_phantom:
|
if not mod_settings.f4bc_phantom:
|
||||||
self.remove_aircraft("VSN_F4B")
|
self.remove_aircraft("VSN_F4B")
|
||||||
self.remove_aircraft("VSN_F4C")
|
self.remove_aircraft("VSN_F4C")
|
||||||
@ -554,6 +555,7 @@ class Faction:
|
|||||||
self.remove_vehicle("SAM SA-14 Strela-3 manpad")
|
self.remove_vehicle("SAM SA-14 Strela-3 manpad")
|
||||||
self.remove_vehicle("SAM SA-24 Igla-S manpad")
|
self.remove_vehicle("SAM SA-24 Igla-S manpad")
|
||||||
self.remove_vehicle("Polyana-D4M1 C2 node")
|
self.remove_vehicle("Polyana-D4M1 C2 node")
|
||||||
|
# CJS FA-18E/F/G Super Hornet Mod
|
||||||
if not mod_settings.fa_18efg:
|
if not mod_settings.fa_18efg:
|
||||||
self.remove_aircraft("FA-18E")
|
self.remove_aircraft("FA-18E")
|
||||||
self.remove_aircraft("FA-18F")
|
self.remove_aircraft("FA-18F")
|
||||||
|
|||||||
@ -72,6 +72,8 @@ class MigrationUnpickler(pickle.Unpickler):
|
|||||||
return DummyObject
|
return DummyObject
|
||||||
if name in ["CaletaTortel", "Caleta_Tortel_Airport"]:
|
if name in ["CaletaTortel", "Caleta_Tortel_Airport"]:
|
||||||
return dcs.terrain.Airport # use base-class if airport was removed
|
return dcs.terrain.Airport # use base-class if airport was removed
|
||||||
|
if name == "Superbug_AITanker":
|
||||||
|
return pydcs_extensions.fa18efg.FA_18ET
|
||||||
if module == "pydcs_extensions.f4b.f4b":
|
if module == "pydcs_extensions.f4b.f4b":
|
||||||
return pydcs_extensions.f4
|
return pydcs_extensions.f4
|
||||||
if module == "pydcs_extensions.irondome.irondome":
|
if module == "pydcs_extensions.irondome.irondome":
|
||||||
|
|||||||
@ -16,7 +16,6 @@ from .f22a import *
|
|||||||
from .f4 import *
|
from .f4 import *
|
||||||
from .f84g import *
|
from .f84g import *
|
||||||
from .fa18efg import *
|
from .fa18efg import *
|
||||||
from .fa18ef_tanker import *
|
|
||||||
from .frenchpack import *
|
from .frenchpack import *
|
||||||
from .hercules import *
|
from .hercules import *
|
||||||
from .highdigitsams import *
|
from .highdigitsams import *
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
from .fa18ef_tanker import *
|
|
||||||
@ -1,31 +0,0 @@
|
|||||||
from enum import Enum
|
|
||||||
|
|
||||||
from dcs import task
|
|
||||||
from dcs.planes import PlaneType
|
|
||||||
|
|
||||||
from game.modsupport import planemod
|
|
||||||
|
|
||||||
|
|
||||||
@planemod
|
|
||||||
class Superbug_AITanker(PlaneType):
|
|
||||||
id = "Superbug_AITanker"
|
|
||||||
group_size_max = 1
|
|
||||||
height = 4.66
|
|
||||||
width = 13.62456
|
|
||||||
length = 17.07
|
|
||||||
fuel_max = 13154
|
|
||||||
max_speed = 1950.12
|
|
||||||
chaff = 120
|
|
||||||
flare = 60
|
|
||||||
charge_total = 240
|
|
||||||
chaff_charge_size = 1
|
|
||||||
flare_charge_size = 2
|
|
||||||
tacan = True
|
|
||||||
radio_frequency = 305
|
|
||||||
|
|
||||||
livery_name = "SUPERBUG_AITANKER" # from type
|
|
||||||
|
|
||||||
pylons = set()
|
|
||||||
|
|
||||||
tasks = [task.Refueling]
|
|
||||||
task_default = task.Refueling
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -339,7 +339,7 @@ def create_game(
|
|||||||
oh_6_vietnamassetpack=False,
|
oh_6_vietnamassetpack=False,
|
||||||
uh_60l=False,
|
uh_60l=False,
|
||||||
jas39_gripen=False,
|
jas39_gripen=False,
|
||||||
sk60_saab105=False,
|
sk_60=False,
|
||||||
su15_flagon=False,
|
su15_flagon=False,
|
||||||
su30_flanker_h=False,
|
su30_flanker_h=False,
|
||||||
su57_felon=False,
|
su57_felon=False,
|
||||||
|
|||||||
@ -217,8 +217,8 @@ class GeneratorOptions(QtWidgets.QWizardPage):
|
|||||||
("F-4B/C Phantom II (2.8.7.204)", self.f4bc_phantom),
|
("F-4B/C Phantom II (2.8.7.204)", self.f4bc_phantom),
|
||||||
("F-84G Thunderjet (v2.5.7.01)", self.f84g_thunderjet),
|
("F-84G Thunderjet (v2.5.7.01)", self.f84g_thunderjet),
|
||||||
("F9F Panther (v2.8.7.101)", self.f9f_panther),
|
("F9F Panther (v2.8.7.101)", self.f9f_panther),
|
||||||
("F/A-18E/F Super Hornet AI Tanker (version 1.4)", self.fa18ef_tanker),
|
("F/A-18E/F/G Super Hornet (version 2.4.2)", self.fa_18efg),
|
||||||
("F/A-18E/F/G Super Hornet (version 2.3.2)", self.fa_18efg),
|
("F/A-18E/F Super Hornet AI Tanker (version 2.4.2)", self.fa18ef_tanker),
|
||||||
("Frenchpack (v4.9.1)", self.frenchpack),
|
("Frenchpack (v4.9.1)", self.frenchpack),
|
||||||
("High Digit SAMs", self.high_digit_sams),
|
("High Digit SAMs", self.high_digit_sams),
|
||||||
("IDF Assets Pack (v1.1 by IDF Mods Project)", self.irondome),
|
("IDF Assets Pack (v1.1 by IDF Mods Project)", self.irondome),
|
||||||
|
|||||||
@ -1,50 +1,310 @@
|
|||||||
local unitPayloads = {
|
local unitPayloads = {
|
||||||
["name"] = "EA-18G",
|
["name"] = "EA-18G",
|
||||||
["payloads"] = {
|
["payloads"] = {
|
||||||
[1] = {
|
[1] =
|
||||||
["name"] = "Retribution SEAD",
|
{
|
||||||
["pylons"] = {
|
["displayName"]="Retribution SEAD Escort",
|
||||||
[1] = {
|
["name"]="Retribution SEAD Escort",
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANKHighVis}",
|
["pylons"]=
|
||||||
["num"] = 9,
|
{
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_09_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_10_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_04_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_03_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_02_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"]=
|
||||||
|
{
|
||||||
|
[1]=31
|
||||||
|
},
|
||||||
},
|
},
|
||||||
[2] = {
|
[2] = {
|
||||||
["CLSID"] = "{ALQ-99Wing}",
|
["displayName"] = "Retribution DEAD",
|
||||||
["num"] = 8,
|
["name"] = "Retribution DEAD",
|
||||||
|
["pylons"]=
|
||||||
|
{
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
},
|
},
|
||||||
[3] = {
|
[2]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{GROWLER_PYLON_09_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[4] = {
|
[3]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{GROWLER_PYLON_10_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[5] = {
|
[4]=
|
||||||
["CLSID"] = "{ALQ-99Center}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_04_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[6] = {
|
[5]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[7] = {
|
[6]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{GROWLER_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[8] = {
|
[7]=
|
||||||
["CLSID"] = "{ALQ-99Wing}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{GROWLER_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[9] = {
|
[8]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANKHighVis}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_03_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_02_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=2
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
[3] = {
|
||||||
|
["displayName"] = "Retribution SEAD",
|
||||||
|
["name"] = "Retribution SEAD",
|
||||||
|
["pylons"]=
|
||||||
|
{
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_09_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_10_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_04_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_03_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_02_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
[1] = 11,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[4] = {
|
||||||
|
["displayName"] = "Retribution SEAD Sweep",
|
||||||
|
["name"] = "Retribution SEAD Sweep",
|
||||||
|
["pylons"]=
|
||||||
|
{
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_09_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_10_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_04_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_03_MB_ALQ_99_HI_BAND}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_02_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
[1] = 11,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["displayName"]="Retribution SEAD (Low-Mid Band Next Gen)",
|
||||||
|
["name"]="Retribution SEAD (Low-Mid Band Next Gen)",
|
||||||
|
["pylons"]=
|
||||||
|
{
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_09_MB_ALQ_249_MID_BAND}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_10_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_04_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_03_MB_ALQ_249_MID_BAND}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{GROWLER_PYLON_02_OB_AR_1X_AGM-88}",
|
||||||
|
["num"]=2
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"]=
|
||||||
|
{
|
||||||
|
[1]=31
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
},
|
},
|
||||||
|
|||||||
@ -5,42 +5,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution SEAD",
|
["displayName"] = "Retribution SEAD",
|
||||||
["name"] = "Retribution SEAD",
|
["name"] = "Retribution SEAD",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_TD_3X_BRU_ADM-141A}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_AR_1X_AGM-88}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_AR_1X_AGM-88}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_TD_3X_BRU_ADM-141A}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -49,47 +63,58 @@ local unitPayloads = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
["displayName"] = "Retribution BARCAP",
|
["displayName"] = "Retribution BARCAP",
|
||||||
["name"] = "Retribution BARCAP",
|
["name"] = "Retribution BARCAP",
|
||||||
["pylons"] = {
|
["pylons"] =
|
||||||
[1] = {
|
{
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
[1]=
|
||||||
["num"] = 9,
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "<CLEAN>",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "<CLEAN>",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="<CLEAN>",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
},
|
["num"]=1
|
||||||
[10] = {
|
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
|
||||||
["num"] = 10,
|
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -99,42 +124,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution TARCAP/Escort",
|
["displayName"] = "Retribution TARCAP/Escort",
|
||||||
["name"] = "Retribution TARCAP/Escort",
|
["name"] = "Retribution TARCAP/Escort",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -144,42 +183,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution Anti-ship",
|
["displayName"] = "Retribution Anti-ship",
|
||||||
["name"] = "Retribution Anti-ship",
|
["name"] = "Retribution Anti-ship",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{AGM_84D}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{AGM_84D}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -189,42 +242,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution BAI",
|
["displayName"] = "Retribution BAI",
|
||||||
["name"] = "Retribution BAI",
|
["name"] = "Retribution BAI",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -234,42 +301,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution CAS",
|
["displayName"] = "Retribution CAS",
|
||||||
["name"] = "Retribution CAS",
|
["name"] = "Retribution CAS",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -279,42 +360,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution OCA/Runway",
|
["displayName"] = "Retribution OCA/Runway",
|
||||||
["name"] = "Retribution OCA/Runway",
|
["name"] = "Retribution OCA/Runway",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_31_V_4B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_31_V_4B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -324,42 +419,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution DEAD",
|
["displayName"] = "Retribution DEAD",
|
||||||
["name"] = "Retribution DEAD",
|
["name"] = "Retribution DEAD",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_JS_2X_BRU55_AGM-154C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_JS_2X_BRU_AGM-154C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -369,87 +478,115 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution Strike",
|
["displayName"] = "Retribution Strike",
|
||||||
["name"] = "Retribution Strike",
|
["name"] = "Retribution Strike",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[10] = {
|
[10] = {
|
||||||
["displayName"] = "Retribution OCA/aircraft",
|
["displayName"] = "Retribution OCA/Aircraft",
|
||||||
["name"] = "Retribution OCA/aircraft",
|
["name"] = "Retribution OCA/aircraft",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_JS_2X_BRU55_AGM-154C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{BRU33_2X_CBU-99}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{BRU33_2X_CBU-99}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_JS_2X_BRU_AGM-154C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
|
|||||||
68
resources/customized_payloads/FA-18ET.lua
Normal file
68
resources/customized_payloads/FA-18ET.lua
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
local unitPayloads = {
|
||||||
|
["name"] = "FA-18ET",
|
||||||
|
["payloads"] = {
|
||||||
|
[1] = {
|
||||||
|
["displayName"] = "Retribution Refueling",
|
||||||
|
["name"] = "Retribution Refueling",
|
||||||
|
["pylons"] = {
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_AA42R}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
[1] = 31,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
},
|
||||||
|
["unitType"] = "FA-18ET",
|
||||||
|
}
|
||||||
|
return unitPayloads
|
||||||
@ -5,42 +5,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution SEAD",
|
["displayName"] = "Retribution SEAD",
|
||||||
["name"] = "Retribution SEAD",
|
["name"] = "Retribution SEAD",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_TD_3X_BRU_ADM-141A}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_AR_1X_AGM-88}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C93}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_AR_1X_AGM-88}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_TD_3X_BRU_ADM-141A}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -49,47 +63,58 @@ local unitPayloads = {
|
|||||||
[2] = {
|
[2] = {
|
||||||
["displayName"] = "Retribution BARCAP",
|
["displayName"] = "Retribution BARCAP",
|
||||||
["name"] = "Retribution BARCAP",
|
["name"] = "Retribution BARCAP",
|
||||||
["pylons"] = {
|
["pylons"] =
|
||||||
[1] = {
|
{
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
[1]=
|
||||||
["num"] = 9,
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "<CLEAN>",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "<CLEAN>",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="<CLEAN>",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
},
|
["num"]=1
|
||||||
[10] = {
|
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
|
||||||
["num"] = 10,
|
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -99,42 +124,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution TARCAP/Escort",
|
["displayName"] = "Retribution TARCAP/Escort",
|
||||||
["name"] = "Retribution TARCAP/Escort",
|
["name"] = "Retribution TARCAP/Escort",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU-115_2*LAU-127_AIM-120C",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -144,42 +183,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution Anti-ship",
|
["displayName"] = "Retribution Anti-ship",
|
||||||
["name"] = "Retribution Anti-ship",
|
["name"] = "Retribution Anti-ship",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{AGM_84D}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{AGM_84D}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_SM_1X_AGM-84E}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -189,42 +242,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution BAI",
|
["displayName"] = "Retribution BAI",
|
||||||
["name"] = "Retribution BAI",
|
["name"] = "Retribution BAI",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -234,42 +301,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution CAS",
|
["displayName"] = "Retribution CAS",
|
||||||
["name"] = "Retribution CAS",
|
["name"] = "Retribution CAS",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_MB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "LAU_117_AGM_65F",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_OB_MV_1X_AGM-65F}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -279,42 +360,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution OCA/Runway",
|
["displayName"] = "Retribution OCA/Runway",
|
||||||
["name"] = "Retribution OCA/Runway",
|
["name"] = "Retribution OCA/Runway",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_31_V_4B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_31_V_4B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -324,42 +419,56 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution DEAD",
|
["displayName"] = "Retribution DEAD",
|
||||||
["name"] = "Retribution DEAD",
|
["name"] = "Retribution DEAD",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_JS_2X_BRU55_AGM-154C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{AGM-154A}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_JS_2X_BRU_AGM-154C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
@ -369,87 +478,115 @@ local unitPayloads = {
|
|||||||
["displayName"] = "Retribution Strike",
|
["displayName"] = "Retribution Strike",
|
||||||
["name"] = "Retribution Strike",
|
["name"] = "Retribution Strike",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{GBU_32_V_2B}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_MK_BR55_2X_GBU-32}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
[10] = {
|
[10] = {
|
||||||
["displayName"] = "Retribution OCA/aircraft",
|
["displayName"] = "Retribution OCA/Aircraft",
|
||||||
["name"] = "Retribution OCA/aircraft",
|
["name"] = "Retribution OCA/aircraft",
|
||||||
["pylons"] = {
|
["pylons"] = {
|
||||||
[1] = {
|
[1]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 9,
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
},
|
},
|
||||||
[2] = {
|
[2]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 8,
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_JS_2X_BRU55_AGM-154C}",
|
||||||
|
["num"]=8
|
||||||
},
|
},
|
||||||
[3] = {
|
[3]=
|
||||||
["CLSID"] = "{BRU33_2X_CBU-99}",
|
{
|
||||||
["num"] = 7,
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
},
|
},
|
||||||
[4] = {
|
[4]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 6,
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
},
|
},
|
||||||
[5] = {
|
[5]=
|
||||||
["CLSID"] = "{AN_ASQ_228}",
|
{
|
||||||
["num"] = 4,
|
["CLSID"]="{SUPERHORNET_PYLON_05_TP_ASQ228}",
|
||||||
|
["num"]=4
|
||||||
},
|
},
|
||||||
[6] = {
|
[6]=
|
||||||
["CLSID"] = "{BRU33_2X_CBU-99}",
|
{
|
||||||
["num"] = 3,
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
},
|
},
|
||||||
[7] = {
|
[7]=
|
||||||
["CLSID"] = "{FPU_12_FUEL_TANK}",
|
{
|
||||||
["num"] = 5,
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=5
|
||||||
},
|
},
|
||||||
[8] = {
|
[8]=
|
||||||
["CLSID"] = "{40EF17B7-F508-45de-8566-6FFECC0C1AB8}",
|
{
|
||||||
["num"] = 2,
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_JS_2X_BRU_AGM-154C}",
|
||||||
|
["num"]=2
|
||||||
},
|
},
|
||||||
[9] = {
|
[9]=
|
||||||
["CLSID"] = "{5CE2FF2A-645A-4197-B48D-8720AC69394F}",
|
{
|
||||||
["num"] = 1,
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
},
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
}
|
||||||
},
|
},
|
||||||
["tasks"] = {
|
["tasks"] = {
|
||||||
[1] = 11,
|
[1] = 11,
|
||||||
|
|||||||
68
resources/customized_payloads/FA-18FT.lua
Normal file
68
resources/customized_payloads/FA-18FT.lua
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
local unitPayloads = {
|
||||||
|
["name"] = "FA-18FT",
|
||||||
|
["payloads"] = {
|
||||||
|
[1] = {
|
||||||
|
["displayName"] = "Retribution Refueling",
|
||||||
|
["name"] = "Retribution Refueling",
|
||||||
|
["pylons"] = {
|
||||||
|
[1]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_01_SW_1X_AIM-9X}",
|
||||||
|
["num"]=1
|
||||||
|
},
|
||||||
|
[2]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_02_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=2
|
||||||
|
},
|
||||||
|
[3]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_05_AM_1X_AIM-120C}",
|
||||||
|
["num"]=4
|
||||||
|
},
|
||||||
|
[4]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_06_CN_FT_AA42R}",
|
||||||
|
["num"]=5
|
||||||
|
},
|
||||||
|
[5]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_07_AM_1X_AIM-120C}",
|
||||||
|
["num"]=6
|
||||||
|
},
|
||||||
|
[6]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_11_SW_1X_AIM-9X}",
|
||||||
|
["num"]=9
|
||||||
|
},
|
||||||
|
[7]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_10_MB_AM_2X_AIM-120C}",
|
||||||
|
["num"]=8
|
||||||
|
},
|
||||||
|
[8]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_IN_FT_AUX_CELLS}",
|
||||||
|
["num"]=10
|
||||||
|
},
|
||||||
|
[9]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_03_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=3
|
||||||
|
},
|
||||||
|
[10]=
|
||||||
|
{
|
||||||
|
["CLSID"]="{SUPERHORNET_PYLON_09_IB_FT_FPU-12_Fueltank}",
|
||||||
|
["num"]=7
|
||||||
|
}
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
[1] = 31,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
["tasks"] = {
|
||||||
|
},
|
||||||
|
["unitType"] = "FA-18FT",
|
||||||
|
}
|
||||||
|
return unitPayloads
|
||||||
BIN
resources/ui/units/aircrafts/banners/FA-18ET.jpg
Normal file
BIN
resources/ui/units/aircrafts/banners/FA-18ET.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
BIN
resources/ui/units/aircrafts/banners/FA-18FT.jpg
Normal file
BIN
resources/ui/units/aircrafts/banners/FA-18FT.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 KiB |
BIN
resources/ui/units/aircrafts/icons/FA-18ET_24.jpg
Normal file
BIN
resources/ui/units/aircrafts/icons/FA-18ET_24.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 10 KiB |
BIN
resources/ui/units/aircrafts/icons/FA-18FT_24.jpg
Normal file
BIN
resources/ui/units/aircrafts/icons/FA-18FT_24.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.5 KiB |
@ -40,3 +40,4 @@ tasks:
|
|||||||
DEAD: 500
|
DEAD: 500
|
||||||
SEAD: 600
|
SEAD: 600
|
||||||
SEAD Escort: 550
|
SEAD Escort: 550
|
||||||
|
SEAD Sweep: 500
|
||||||
|
|||||||
@ -62,6 +62,7 @@ tasks:
|
|||||||
SEAD Escort: 430
|
SEAD Escort: 430
|
||||||
Strike: 600
|
Strike: 600
|
||||||
TARCAP: 450
|
TARCAP: 450
|
||||||
|
|
||||||
weapon_injections: # AGM-154B only works for AI
|
weapon_injections: # AGM-154B only works for AI
|
||||||
2:
|
2:
|
||||||
- "{AGM-154B}"
|
- "{AGM-154B}"
|
||||||
|
|||||||
62
resources/units/aircraft/FA-18ET.yaml
Normal file
62
resources/units/aircraft/FA-18ET.yaml
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
This version is an AI-only tanker aircraft, capable of in-flight refueling.'
|
||||||
|
introduced: 1999
|
||||||
|
manufacturer: McDonnell Douglas
|
||||||
|
origin: USA
|
||||||
|
price: 25
|
||||||
|
max_group_size: 1
|
||||||
|
role: Carrier-based Tanker
|
||||||
|
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
|
||||||
|
patrol:
|
||||||
|
# ~265 knots IAS
|
||||||
|
speed: 320
|
||||||
|
altitude: 18000
|
||||||
|
|
||||||
|
variants:
|
||||||
|
F/A-18E Tanker: {}
|
||||||
|
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
|
||||||
|
tasks:
|
||||||
|
Refueling: 0
|
||||||
|
Recovery: 0
|
||||||
|
|
||||||
@ -62,6 +62,7 @@ tasks:
|
|||||||
SEAD Escort: 430
|
SEAD Escort: 430
|
||||||
Strike: 600
|
Strike: 600
|
||||||
TARCAP: 450
|
TARCAP: 450
|
||||||
|
|
||||||
weapon_injections: # AGM-154B only works for AI
|
weapon_injections: # AGM-154B only works for AI
|
||||||
2:
|
2:
|
||||||
- "{AGM-154B}"
|
- "{AGM-154B}"
|
||||||
|
|||||||
61
resources/units/aircraft/FA-18FT.yaml
Normal file
61
resources/units/aircraft/FA-18FT.yaml
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
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.
|
||||||
|
|
||||||
|
|
||||||
|
This version is an AI-only tanker aircraft, capable of in-flight refueling.'
|
||||||
|
introduced: 1999
|
||||||
|
manufacturer: McDonnell Douglas
|
||||||
|
origin: USA
|
||||||
|
price: 25
|
||||||
|
max_group_size: 1
|
||||||
|
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
|
||||||
|
patrol:
|
||||||
|
# ~265 knots IAS
|
||||||
|
speed: 320
|
||||||
|
altitude: 18000
|
||||||
|
|
||||||
|
variants:
|
||||||
|
F/A-18F Tanker: {}
|
||||||
|
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
|
||||||
|
tasks:
|
||||||
|
Refueling: 0
|
||||||
|
Recovery: 0
|
||||||
@ -1,21 +0,0 @@
|
|||||||
carrier_capable: true
|
|
||||||
description:
|
|
||||||
The Boeing F/A-18E and F/A-18F Super Hornet are twin-engine, carrier-capable,
|
|
||||||
multirole fighter aircraft variants based on the McDonnell Douglas F/A-18 Hornet.
|
|
||||||
This version is an AI-only tanker aircraft, capable of in-flight refueling.
|
|
||||||
introduced: 2001
|
|
||||||
manufacturer: Boeing
|
|
||||||
origin: USA
|
|
||||||
price: 20
|
|
||||||
max_group_size: 1
|
|
||||||
role: Carrier-based Tanker
|
|
||||||
max_range: 1000
|
|
||||||
patrol:
|
|
||||||
# ~265 knots IAS.
|
|
||||||
speed: 320
|
|
||||||
altitude: 12000
|
|
||||||
variants:
|
|
||||||
F/A-18E Tanker: {}
|
|
||||||
F/A-18F Tanker: {}
|
|
||||||
tasks:
|
|
||||||
Refueling: 0
|
|
||||||
8
resources/weapons/pods/alq-249.yaml
Normal file
8
resources/weapons/pods/alq-249.yaml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
name: ALQ-249 Mid Band Next Generation Jammer
|
||||||
|
type: JAMMER
|
||||||
|
# https://www.deagel.com/Components/ALQ-249%20Next%20Generation%20Jammer/a002543#001
|
||||||
|
year: 2025
|
||||||
|
fallback:
|
||||||
|
clsids:
|
||||||
|
- "{GROWLER_PYLON_03_MB_ALQ_249_MID_BAND}"
|
||||||
|
- "{GROWLER_PYLON_09_MB_ALQ_249_MID_BAND}"
|
||||||
9
resources/weapons/pods/alq-99.yaml
Normal file
9
resources/weapons/pods/alq-99.yaml
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
name: AN/ALQ-99 ECM
|
||||||
|
type: JAMMER
|
||||||
|
# https://www.deagel.com/Components/ANALQ-99/a000899#001
|
||||||
|
year: 1973
|
||||||
|
fallback:
|
||||||
|
clsids:
|
||||||
|
- "{GROWLER_PYLON_03_MB_ALQ_99_HI_BAND}"
|
||||||
|
- "{GROWLER_PYLON_09_MB_ALQ_99_HI_BAND}"
|
||||||
|
- "{GROWLER_PYLON_06_CN_ANALQ_99_LO_BAND}"
|
||||||
Loading…
x
Reference in New Issue
Block a user