Fixed A-20G payloads.

This commit is contained in:
Khopa 2020-07-30 19:31:38 +02:00
parent f897cf745f
commit 12dacfe2d2
2 changed files with 73 additions and 0 deletions

View File

@ -873,6 +873,7 @@ PLANE_PAYLOAD_OVERRIDES = {
Bf_109K_4: COMMON_OVERRIDE,
SpitfireLFMkIXCW: COMMON_OVERRIDE,
SpitfireLFMkIX: COMMON_OVERRIDE,
A_20G: COMMON_OVERRIDE,
A_4E_C: COMMON_OVERRIDE,
MB_339PAN: COMMON_OVERRIDE,
Rafale_M: COMMON_OVERRIDE,

View File

@ -0,0 +1,72 @@
local unitPayloads = {
["name"] = "A-20G",
["payloads"] = {
[1] = {
["name"] = "ANTISHIP",
["pylons"] = {
[1] = {
["CLSID"] = "{4xAN-M64_on_InvCountedAttachmentPoints}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
[2] = {
["name"] = "STRIKE",
["pylons"] = {
[1] = {
["CLSID"] = "{4xAN-M64_on_InvCountedAttachmentPoints}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
[3] = {
["name"] = "CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{4xAN-M64_on_InvCountedAttachmentPoints}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
[4] = {
["name"] = "CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{4xAN-M64_on_InvCountedAttachmentPoints}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
[5] = {
["name"] = "SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{4xAN-M64_on_InvCountedAttachmentPoints}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
},
["tasks"] = {
[1] = 32,
[2] = 30,
[3] = 17,
},
["unitType"] = "A-20G",
}
return unitPayloads