CurrentHill USA military assets pack (#461)

* usa military assets pack

* minor fixes to have missiles

* tweak nasams 3

* fix preset groups bug

* adjust b-21 name

* Update faction.py

bugfixes will go in a different branch
This commit is contained in:
Druss99
2025-01-26 09:32:12 -05:00
committed by GitHub
parent 05e80fa144
commit a76fe34f3f
80 changed files with 1819 additions and 0 deletions

View File

@@ -227,6 +227,7 @@ def load_aircraft_icons():
AIRCRAFT_ICONS["CH_Mi28N"] = AIRCRAFT_ICONS["CH_Mi"]
AIRCRAFT_ICONS["CH_Tu-95MSM"] = AIRCRAFT_ICONS["CH_Tu-95"]
AIRCRAFT_ICONS["CH_Tu-160M2"] = AIRCRAFT_ICONS["CH_Tu-16"]
AIRCRAFT_ICONS["B-21"] = AIRCRAFT_ICONS["B"]
def load_vehicle_icons():

View File

@@ -126,6 +126,7 @@ class NewGameWizard(QtWidgets.QWizard):
vietnamwarvessels=self.field("vietnamwarvessels"),
chinesemilitaryassetspack=self.field("chinesemilitaryassetspack"),
russianmilitaryassetspack=self.field("russianmilitaryassetspack"),
usamilitaryassetspack=self.field("usamilitaryassetspack"),
)
blue_faction = self.faction_selection_page.selected_blue_faction

View File

@@ -164,6 +164,8 @@ class GeneratorOptions(QtWidgets.QWizardPage):
self.registerField("chinesemilitaryassetspack", self.chinesemilitaryassetspack)
self.russianmilitaryassetspack = QtWidgets.QCheckBox()
self.registerField("russianmilitaryassetspack", self.russianmilitaryassetspack)
self.usamilitaryassetspack = QtWidgets.QCheckBox()
self.registerField("usamilitaryassetspack", self.usamilitaryassetspack)
modHelpText = QtWidgets.QLabel(
"<p>Select the mods you have installed. If your chosen factions support them, you'll be able to use these mods in your campaign.</p>"
@@ -191,6 +193,10 @@ class GeneratorOptions(QtWidgets.QWizardPage):
"CurrentHill Swedish Military Assets pack (1.10)",
self.swedishmilitaryassetspack,
),
(
"CurrentHill USA Military Assets pack (1.1.5)",
self.usamilitaryassetspack,
),
("EA-6B Prowler (v2.9.4.102)", self.ea6b_prowler),
("F-100 Super Sabre (v2.7.18.30765 patch 20.10.22)", self.f100_supersabre),
("F-104 Starfighter (v2.7.11.222.01)", self.f104_starfighter),
@@ -295,3 +301,4 @@ class GeneratorOptions(QtWidgets.QWizardPage):
self.russianmilitaryassetspack.setChecked(
s.get("russianmilitaryassetspack", False)
)
self.usamilitaryassetspack.setChecked(s.get("usamilitaryassetspack", False))