MetalStormGhost b671d520c9
Cold War assets mod v1.2 support (#482)
* Implemented support for the Cold War assets mod (ex Tu-16) v1.0 by tripod3

* Rename     resources/ui/units/aircrafts/banners/Tu-16.jpg (from resources/ui/units/aircrafts/banners/Tu_16.jpg)
Rename     resources/ui/units/aircrafts/banners/Tu-4K.jpg (from resources/ui/units/aircrafts/banners/Tu_4K.jpg)
Rename     resources/ui/units/aircrafts/icons/Tu-16_24.jpg (from resources/ui/units/aircrafts/icons/Tu_16_24.jpg)
Rename     resources/ui/units/aircrafts/icons/Tu-4K_24.jpg (from resources/ui/units/aircrafts/icons/Tu_4K_24.jpg)

Also added coldwarassets handling in ModSettings() call.

* Added a DEAD loadout for the Tu-22KD.

* Updated Cold War assets mod by tripod3 support to v1.2

* Modified   pydcs_extensions/coldwarassets/coldwarassets.py
Modified   resources/units/aircraft/B_47.yaml

* Modified   qt_ui/windows/newgame/WizardPages/QGeneratorSettings.py

* Added      resources/units/aircraft/Yak_28.yaml

* Added banners, icons, loadouts and unit yamls by Biggus for new Cold War Assets added in mod version 1.2.

* Removed the Tu-128 Fiddler from soviet_union_1965.json because the Tu-128M variant is a 1979 modernization.

* Remove CAS & Armed Recon from Yak-28

* Fix typo

* Add BAI & DEAD to Tu-4K

---------

Co-authored-by: Raffson <Raffson@users.noreply.github.com>
2025-03-29 20:09:58 +00:00

135 lines
2.2 KiB
Lua

local unitPayloads = {
["name"] = "Tu_128M",
["payloads"] = {
[1] = {
["displayName"] = "Retribution BARCAP",
["name"] = "Retribution BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{R-8M1T}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{R-8M1R}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{R-8M1T}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{R-8M1R}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 10,
},
},
[2] = {
["displayName"] = "Retribution Escort",
["name"] = "Retribution Escort",
["pylons"] = {
[1] = {
["CLSID"] = "{R-8M1T}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{R-8M1R}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{R-8M1T}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{R-8M1R}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 10,
},
},
[3] = {
["displayName"] = "Retribution Fighter sweep",
["name"] = "Retribution Fighter sweep",
["pylons"] = {
[1] = {
["CLSID"] = "{R-8M1T}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{R-8M1R}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{R-8M1T}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{R-8M1R}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 10,
},
},
[4] = {
["displayName"] = "Retribution Intercept",
["name"] = "Retribution Intercept",
["pylons"] = {
[1] = {
["CLSID"] = "{R-8M1T}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{R-8M1R}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{R-8M1T}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{R-8M1R}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 10,
},
},
[5] = {
["displayName"] = "Retribution TARCAP",
["name"] = "Retribution TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{R-8M1T}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{R-8M1R}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{R-8M1T}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{R-8M1R}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 10,
},
},
},
["tasks"] = {
},
["unitType"] = "Tu_128M",
}
return unitPayloads