Added a pydcs extension for the IDF Mod Project F-16I mod version 1.4, utilizing the pylon_injector written for the CJS Superbug mod support. Includes banner by Schmokedpancake.

This commit is contained in:
MetalStormGhost
2022-04-18 16:44:12 +03:00
parent 151cf17e35
commit 4fe0102b7b
8 changed files with 5229 additions and 0 deletions

View File

@@ -158,6 +158,7 @@ class NewGameWizard(QtWidgets.QWizard):
)
mod_settings = ModSettings(
a4_skyhawk=self.field("a4_skyhawk"),
f_16_idf=self.field("f_16_idf"),
f22_raptor=self.field("f22_raptor"),
f104_starfighter=self.field("f104_starfighter"),
hercules=self.field("hercules"),
@@ -657,6 +658,8 @@ class GeneratorOptions(QtWidgets.QWizardPage):
self.registerField("hercules", hercules)
uh_60l = QtWidgets.QCheckBox()
self.registerField("uh_60l", uh_60l)
f_16_idf = QtWidgets.QCheckBox()
self.registerField("f_16_idf", f_16_idf)
f22_raptor = QtWidgets.QCheckBox()
self.registerField("f22_raptor", f22_raptor)
f104_starfighter = QtWidgets.QCheckBox()
@@ -682,6 +685,13 @@ class GeneratorOptions(QtWidgets.QWizardPage):
)
modLayout.addWidget(a4_skyhawk, modLayout_row, 1)
modLayout_row += 1
modLayout.addWidget(
QtWidgets.QLabel("F-16I Sufa (version 1.4 by IDF Mods Project)"),
modLayout_row,
0,
)
modLayout.addWidget(f_16_idf, modLayout_row, 1)
modLayout_row += 1
modLayout.addWidget(QtWidgets.QLabel("F-22A Raptor"), modLayout_row, 0)
modLayout.addWidget(f22_raptor, modLayout_row, 1)
modLayout_row += 1