mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
This PR adds support for the playable CH-47F --------- Co-authored-by: Raffson <Raffson@users.noreply.github.com> Co-authored-by: Starfire13 <72491792+Starfire13@users.noreply.github.com>
26 lines
404 B
Lua
26 lines
404 B
Lua
local unitPayloads = {
|
|
["name"] = "CH-47Fbl1",
|
|
["payloads"] = {
|
|
[1] = {
|
|
["name"] = "Liberation Air Assault",
|
|
["pylons"] = {
|
|
[1] = {
|
|
["CLSID"] = "{CH47_STBD_M60D}",
|
|
["num"] = 2,
|
|
},
|
|
[2] = {
|
|
["CLSID"] = "{CH47_PORT_M60D}",
|
|
["num"] = 1,
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
[1] = 35,
|
|
},
|
|
},
|
|
},
|
|
["tasks"] = {
|
|
},
|
|
["unitType"] = "CH-47Fbl1",
|
|
}
|
|
return unitPayloads
|