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
* 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 4a7f616e47.
* Restore checkbox for AI Tankers
---------
Co-authored-by: Raffson <Raffson@users.noreply.github.com>
69 lines
1.2 KiB
Lua
69 lines
1.2 KiB
Lua
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
|