mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Major changes: - FW190A8 ground attack loadout WGr21 rockets (primarily an air-to-air weapon) replaced with SC500J or AB500 bombs. - FW190D9 WGr21 rockets replaced with R4M rocket packs and SC500 bombs for CAS. - Added droptanks for I-16. - Ju-88A4 CAS loadout changed for AB500 cluster bombs. - Mosquito now has rockets which were introduced in DCS World 2.7.9.17830 open beta - Added more/heavier bombs to P-47 - P-51 now has a separate OCA/Runway loadout with bombs. Other ground attack loadouts switched to rockets. Also includes an SA342Minigun loadout which we didn't previously have.
138 lines
2.3 KiB
Lua
138 lines
2.3 KiB
Lua
local unitPayloads = {
|
|
["name"] = "FW-190A8",
|
|
["payloads"] = {
|
|
[1] = {
|
|
["name"] = "Liberation BARCAP",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "BF109K_4_FUEL_TANK",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[2] = {
|
|
["displayName"] = "Liberation TARCAP",
|
|
["name"] = "Liberation TARCAP",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "BF109K_4_FUEL_TANK",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[3] = {
|
|
["displayName"] = "Liberation Escort",
|
|
["name"] = "Liberation Escort",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "BF109K_4_FUEL_TANK",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[4] = {
|
|
["displayName"] = "Liberation Fighter Sweep",
|
|
["name"] = "Liberation Fighter Sweep",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "BF109K_4_FUEL_TANK",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[5] = {
|
|
["name"] = "Liberation BAI",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{AB_500_1_SD_10A}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[6] = {
|
|
["displayName"] = "Liberation CAS",
|
|
["name"] = "Liberation CAS",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{AB_500_1_SD_10A}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[7] = {
|
|
["displayName"] = "Liberation Strike",
|
|
["name"] = "Liberation Strike",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{SC_500_L2}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[8] = {
|
|
["displayName"] = "Liberation DEAD",
|
|
["name"] = "Liberation DEAD",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{SC_500_L2}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[9] = {
|
|
["displayName"] = "Liberation OCA/Runway",
|
|
["name"] = "Liberation OCA/Runway",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{SC_500_L2}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
[10] = {
|
|
["displayName"] = "Liberation OCA/Aircraft",
|
|
["name"] = "Liberation OCA/Aircraft",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{AB_500_1_SD_10A}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 11,
|
|
},
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
},
|
|
["unitType"] = "FW-190A8",
|
|
}
|
|
return unitPayloads
|