Support for SW mod v2.55 (#116)

This commit is contained in:
Pande4360 2023-05-04 21:45:26 +02:00 committed by GitHub
parent 2ce63abf04
commit b36e7ea750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
98 changed files with 3734 additions and 0 deletions

View File

@ -127,6 +127,18 @@ from game.dcs.aircrafttype import AircraftType
from pydcs_extensions.a4ec.a4ec import A_4E_C
from pydcs_extensions.a6a.a6a import VSN_A6A
from pydcs_extensions.a7e.a7e import A_7E
from pydcs_extensions.SWPack.SWPack import (
TIE_AI,
HUNTERA,
TIE_INTERA,
AWINGA,
XWINGAI,
YWINGA,
CORVETTEA,
FAUCON_AI,
)
from pydcs_extensions.SWPack.SWPack import TIE_BA
from pydcs_extensions.SWPack.SWPack import naboo_starfighter_AI
from pydcs_extensions.f100.f100 import VSN_F100
from pydcs_extensions.f104.f104 import VSN_F104C, VSN_F104G, VSN_F104S, VSN_F104S_AG
from pydcs_extensions.f105.f105 import VSN_F105D, VSN_F105G
@ -160,6 +172,14 @@ from .flighttype import FlightType
# Used for CAP, Escort, and intercept if there is not a specialised aircraft available
ESCORT_CAPABLE = [
TIE_AI,
HUNTERA,
XWINGAI,
AWINGA,
CORVETTEA,
FAUCON_AI,
TIE_INTERA,
naboo_starfighter_AI,
Su_57,
F_22A,
F_15C,
@ -246,6 +266,8 @@ CAP_CAPABLE = ESCORT_CAPABLE + [
# Used for CAS (Close air support) and BAI (Battlefield Interdiction)
CAS_CAPABLE = [
TIE_BA,
YWINGA,
A_10C_2,
A_10C,
Hercules,
@ -401,6 +423,8 @@ SEAD_CAPABLE = SEAD_ESCORT_CAPABLE + [
# Aircraft used for DEAD tasks. Must be capable of the CAS DCS task.
DEAD_CAPABLE = SEAD_CAPABLE + [
YWINGA,
TIE_BA,
AJS37,
F_16A_MLU,
F_16A,
@ -437,6 +461,8 @@ DEAD_CAPABLE = SEAD_CAPABLE + [
# Aircraft used for Strike mission
STRIKE_CAPABLE = [
YWINGA,
TIE_BA,
F_117A,
B_1B,
B_52H,

View File

@ -477,6 +477,37 @@ class Faction:
self.remove_ship("HSwMS_Visby")
self.remove_ship("Strb90")
self.remove_aircraft("HKP15B")
# SWPack
if not mod_settings.SWPack:
self.remove_aircraft("AWINGA")
self.remove_aircraft("AWING")
self.remove_aircraft("XWING")
self.remove_aircraft("XWINGAI")
self.remove_aircraft("TIE_BA")
self.remove_aircraft("tie_bomber_2")
self.remove_aircraft("YWINGA")
self.remove_aircraft("YWING")
self.remove_aircraft("CORVETTE")
self.remove_aircraft("CORVETTEA")
self.remove_aircraft("FAUCON")
self.remove_aircraft("FAUCON_AI")
self.remove_aircraft("TIE")
self.remove_aircraft("TIE_AI")
self.remove_aircraft("HUNTER")
self.remove_aircraft("HUNTERA")
self.remove_aircraft("TIE_INTER")
self.remove_aircraft("TIE_INTERA")
self.remove_aircraft("naboo_starfighter")
self.remove_aircraft("naboo_starfighter_AI")
self.remove_vehicle("MBT9_REBEL")
self.remove_vehicle("MBT9_AAA EMPIRE")
self.remove_vehicle("MBT9_EMPIRE")
self.remove_vehicle("MBT9_AAA REBEL")
self.remove_vehicle("Jugger")
self.remove_vehicle("TB_TT")
self.remove_vehicle("TR_TT")
self.remove_vehicle("Gozanti")
self.remove_ship("Destroyer_carrier")
def remove_aircraft(self, name: str) -> None:
for i in self.aircrafts:

View File

@ -74,6 +74,7 @@ class ModSettings:
high_digit_sams: bool = False
ov10a_bronco: bool = False
swedishmilitaryassetspack: bool = False
SWPack: bool = False
class GameGenerator:

File diff suppressed because it is too large Load Diff

View File

@ -202,6 +202,7 @@ class NewGameWizard(QtWidgets.QWizard):
frenchpack=self.field("frenchpack"),
high_digit_sams=self.field("high_digit_sams"),
swedishmilitaryassetspack=self.field("swedishmilitaryassetspack"),
SWPack=self.field("SWPack"),
)
blue_faction = self.faction_selection_page.selected_blue_faction
@ -857,6 +858,8 @@ class GeneratorOptions(QtWidgets.QWizardPage):
self.registerField("high_digit_sams", self.high_digit_sams)
self.swedishmilitaryassetspack = QtWidgets.QCheckBox()
self.registerField("swedishmilitaryassetspack", self.swedishmilitaryassetspack)
self.SWPack = QtWidgets.QCheckBox()
self.registerField("SWPack", self.SWPack)
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>"
@ -891,6 +894,7 @@ class GeneratorOptions(QtWidgets.QWizardPage):
("Su-30 Flanker-H (V2.01B)", self.su30_flanker_h),
("Su-57 Felon", self.su57_felon),
("UH-60L Black Hawk (v1.3.1)", self.uh_60l),
("Star Wars Modpack 2.54+", self.SWPack),
]
for i in range(len(mod_pairs)):

View File

@ -0,0 +1,59 @@
local unitPayloads = {
["name"] = "AWING",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{AFUEL}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[3] = {
["CLSID"] = "{AFUEL}",
["num"] = 2,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{AFUEL}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[3] = {
["CLSID"] = "{AFUEL}",
["num"] = 2,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
},
},
},
["tasks"] = {
},
["unitType"] = "AWING",
}
return unitPayloads

View File

@ -0,0 +1,67 @@
local unitPayloads = {
["name"] = "AWINGA",
["payloads"] = {
[1] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{AFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{AFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{AFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{AFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "AWINGA",
}
return unitPayloads

View File

@ -0,0 +1,83 @@
local unitPayloads = {
["name"] = "CORVETTE",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM3}",
["num"] = 3,
},
[2] = {
["CLSID"] = "{PROTONM3}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM3}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM3}",
["num"] = 7,
},
[5] = {
["CLSID"] = "{PROTONM3}",
["num"] = 8,
},
[6] = {
["CLSID"] = "{PROTONM3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM3}",
["num"] = 3,
},
[2] = {
["CLSID"] = "{PROTONM3}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM3}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM3}",
["num"] = 7,
},
[5] = {
["CLSID"] = "{PROTONM3}",
["num"] = 8,
},
[6] = {
["CLSID"] = "{PROTONM3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "CORVETTE",
}
return unitPayloads

View File

@ -0,0 +1,83 @@
local unitPayloads = {
["name"] = "CORVETTEA",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM3}",
["num"] = 3,
},
[2] = {
["CLSID"] = "{PROTONM3}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM3}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM3}",
["num"] = 7,
},
[5] = {
["CLSID"] = "{PROTONM3}",
["num"] = 8,
},
[6] = {
["CLSID"] = "{PROTONM3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM3}",
["num"] = 3,
},
[2] = {
["CLSID"] = "{PROTONM3}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM3}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM3}",
["num"] = 7,
},
[5] = {
["CLSID"] = "{PROTONM3}",
["num"] = 8,
},
[6] = {
["CLSID"] = "{PROTONM3}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "CORVETTEA",
}
return unitPayloads

View File

@ -0,0 +1,26 @@
local unitPayloads = {
["name"] = "FAUCON",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONF}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "FAUCON",
}
return unitPayloads

View File

@ -0,0 +1,26 @@
local unitPayloads = {
["name"] = "FAUCON_AI",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONF}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "FAUCON_AI",
}
return unitPayloads

View File

@ -0,0 +1,67 @@
local unitPayloads = {
["name"] = "HUNTER",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM2}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM2}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM2}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM2}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "HUNTER",
}
return unitPayloads

View File

@ -0,0 +1,67 @@
local unitPayloads = {
["name"] = "HUNTERA",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM2}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM2}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{HUNTFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM2}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM2}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "HUNTERA",
}
return unitPayloads

View File

@ -0,0 +1,33 @@
local unitPayloads = {
["name"] = "TIE",
["payloads"] = {
[1] = {
["name"] = "CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIEFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIEFUEL}",
["num"] = 10,
},
},
["tasks"] = {
[1] = CAP,
[2] = Escort,
[3] = FighterSweep,
[4] = Intercept,
[5] = Reconnaissance,
},
},
},
["tasks"] = {
},
["unitType"] = "TIE",
}
return unitPayloads

View File

@ -0,0 +1,109 @@
local unitPayloads = {
["name"] = "tie_bomber_2",
["payloads"] = {
[1] = {
["name"] = "Liberation Tarcap",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
[5] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 4,
},
[7] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 6,
},
[8] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 7,
},
[9] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 8,
},
[10] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 9,
},
[3] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 8,
},
[4] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 7,
},
[5] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 6,
},
[6] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 5,
},
[7] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 4,
},
[8] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 3,
},
[9] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[10] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 32,
},
},
},
["tasks"] = {
},
["unitType"] = "tie_bomber_2",
}
return unitPayloads

View File

@ -0,0 +1,30 @@
local unitPayloads = {
["name"] = "TIE_AI",
["payloads"] = {
[1] = {
["displayName"] = "CAP",
["name"] = "Liberation CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIEFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIEFUEL}",
["num"] = 10,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "TIE_AI",
}
return unitPayloads

View File

@ -0,0 +1,192 @@
local unitPayloads = {
["name"] = "TIE_BA",
["payloads"] = {
[1] = {
["displayName"] = "CAS",
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM2}",
["num"] = 8,
},
[3] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 7,
},
[4] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 6,
},
[5] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 4,
},
[6] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[8] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 1,
},
[9] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 9,
},
},
["tasks"] = {
[1] = 32,
},
},
[2] = {
["name"] = "Liberation SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 7,
},
[2] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 6,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 3,
},
[6] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[7] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 1,
},
[8] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
},
["tasks"] = {
[1] = 31,
},
},
[3] = {
["displayName"] = "Liberation DEAD",
["name"] = "Liberation DEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 7,
},
[2] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 6,
},
[3] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM2}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 3,
},
[6] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[7] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[8] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 1,
},
[9] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 8,
},
},
["tasks"] = {
[1] = 31,
},
},
[4] = {
["displayName"] = "Liberation CAS",
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{PROTONM2}",
["num"] = 8,
},
[9] = {
["CLSID"] = "{TER_9A_3*MK-82}",
["num"] = 9,
},
[10] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
},
["tasks"] = {
[1] = 31,
},
},
},
["tasks"] = {
},
["unitType"] = "TIE_BA",
}
return unitPayloads

View File

@ -0,0 +1,67 @@
local unitPayloads = {
["name"] = "TIE_INTER",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "TIE_INTER",
}
return unitPayloads

View File

@ -0,0 +1,67 @@
local unitPayloads = {
["name"] = "TIE_INTERA",
["payloads"] = {
[1] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 10,
},
[3] = {
["CLSID"] = "{PROTONM1}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{PROTONM1}",
["num"] = 3,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "TIE_INTERA",
}
return unitPayloads

View File

@ -0,0 +1,91 @@
local unitPayloads = {
["name"] = "XWING",
["payloads"] = {
[1] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
[2] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
},
["tasks"] = {
[1] = 11,
[2] = 18,
[3] = 19,
[4] = 10,
[5] = 17,
},
},
},
["tasks"] = {
},
["unitType"] = "XWING",
}
return unitPayloads

View File

@ -0,0 +1,85 @@
local unitPayloads = {
["name"] = "XWINGAI",
["payloads"] = {
[1] = {
["displayName"] = "Liberation TARCAP",
["name"] = "Liberation TARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[6] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 19,
[2] = 11,
},
},
[2] = {
["displayName"] = "Liberation BARCAP",
["name"] = "Liberation BARCAP",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[4] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[6] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 19,
[2] = 11,
},
},
},
["tasks"] = {
},
["unitType"] = "XWINGAI",
}
return unitPayloads

View File

@ -0,0 +1,25 @@
local unitPayloads = {
["name"] = "YWING",
["payloads"] = {
[1] = {
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONB}",
["num"] = 2,
},
[2] = {
["CLSID"] = "{PROTONB}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
},
["tasks"] = {
},
["unitType"] = "YWING",
}
return unitPayloads

View File

@ -0,0 +1,150 @@
local unitPayloads = {
["name"] = "YWINGA",
["payloads"] = {
[1] = {
["displayName"] = "Liberation DEAD",
["name"] = "A/G",
["pylons"] = {
[1] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 1,
},
[2] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 2,
},
[3] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 4,
},
[4] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 5,
},
},
["tasks"] = {
[1] = 32,
[2] = 31,
[3] = 16,
[4] = 34,
[5] = 17,
[6] = 30,
},
},
[2] = {
["name"] = "Liberation CAS",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONBGG}",
["num"] = 3,
},
[2] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 1,
},
[4] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 2,
},
[5] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 5,
},
[6] = {
["CLSID"] = "{DAC53A2F-79CA-42FF-A77A-F5649B601308}",
["num"] = 6,
},
[7] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 8,
},
},
["tasks"] = {
[1] = 31,
},
},
[3] = {
["displayName"] = "Liberation CAP",
["name"] = "Liberation CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{PROTONMissile}",
["num"] = 4,
},
[2] = {
["CLSID"] = "{PROTONMissile}",
["num"] = 5,
},
[3] = {
["CLSID"] = "{PROTONMissile}",
["num"] = 2,
},
[4] = {
["CLSID"] = "{PROTONMissile}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 31,
},
},
[4] = {
["displayName"] = "Liberation SEAD",
["name"] = "Liberation SEAD",
["pylons"] = {
[1] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 5,
},
[2] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 2,
},
[4] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 1,
},
[5] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 6,
},
[6] = {
["CLSID"] = "{B06DD79A-F21E-4EB9-BD9D-AB3844618C9C}",
["num"] = 3,
},
[7] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 7,
},
[8] = {
["CLSID"] = "{TIRFUEL}",
["num"] = 8,
},
},
["tasks"] = {
[1] = 32,
[2] = 31,
[3] = 16,
[4] = 34,
[5] = 17,
[6] = 30,
},
},
},
["tasks"] = {
},
["unitType"] = "YWINGA",
}
return unitPayloads

View File

@ -0,0 +1,81 @@
local unitPayloads = {
["name"] = "naboo_starfighter",
["payloads"] = {
[1] = {
["name"] = "Liberation CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
[6] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
},
["tasks"] = {
[1] = 11,
},
},
[2] = {
["name"] = "Liberation ESCORT",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[4] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
[6] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 19,
},
},
},
["tasks"] = {
},
["unitType"] = "naboo_starfighter",
}
return unitPayloads

View File

@ -0,0 +1,81 @@
local unitPayloads = {
["name"] = "naboo_starfighter_AI",
["payloads"] = {
[1] = {
["name"] = "Liberation CAP",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[4] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
[6] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
},
["tasks"] = {
[1] = 11,
},
},
[2] = {
["name"] = "Liberation ESCORT",
["pylons"] = {
[1] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 10,
},
[2] = {
["CLSID"] = "{PROTONM}",
["num"] = 3,
},
[3] = {
["CLSID"] = "{PROTONM}",
["num"] = 4,
},
[4] = {
["CLSID"] = "{XFUELTANK}",
["num"] = 2,
},
[5] = {
["CLSID"] = "{PROTONM}",
["num"] = 6,
},
[6] = {
["CLSID"] = "{PROTONM}",
["num"] = 5,
},
[7] = {
["CLSID"] = "{PROTONM}",
["num"] = 1,
},
},
["tasks"] = {
[1] = 19,
},
},
},
["tasks"] = {
},
["unitType"] = "naboo_starfighter_AI",
}
return unitPayloads

View File

@ -0,0 +1,107 @@
{
"country": "Combined Joint Task Forces Blue",
"name": "Rebel Alliance_AI",
"authors": "Fuzzle",
"description": "<p>A more modern NATO mixed faction reflecting the units involved in Operation Iraqi Freedom.</p>",
"aircrafts": [
"A-10C Thunderbolt II (Suite 3)",
"AH-64D Apache Longbow",
"AH-64D Apache Longbow (AI)",
"AV-8B Harrier II Night Attack",
"B-1B Lancer",
"B-52H Stratofortress",
"C-130",
"C-130J-30 Super Hercules",
"F-117A Nighthawk",
"F-14A Tomcat (Block 135-GR Late)",
"F-14B Tomcat",
"F-15C Eagle",
"F-15E Strike Eagle",
"F-16CM Fighting Falcon (Block 50)",
"F-22A Raptor",
"F/A-18C Hornet (Lot 20)",
"Mirage 2000C",
"OH-58D Kiowa Warrior",
"S-3B Viking",
"SA 342L Gazelle",
"SA 342M Gazelle",
"SA 342M Gazelle Mistral",
"Tornado GR4",
"UH-1H Iroquois",
"UH-60A",
"UH-60L",
"XWINGAI",
"AWINGA",
"YWINGA",
"FAUCON_AI",
"naboo_starfighter_AI"
],
"awacs": [
"E-2C Hawkeye",
"E-3A"
],
"tankers": [
"KC-130",
"KC-130J",
"KC-135 Stratotanker",
"S-3B Tanker"
],
"frontline_units": [
"FV4034 Challenger 2",
"FV510 Warrior",
"LAV-25",
"M1043 HMMWV (M2 HMG)",
"M1045 HMMWV (BGM-71 TOW)",
"M1097 Heavy HMMWV Avenger",
"M1134 Stryker ATGM (BGM-71 TOW)",
"M1A2 Abrams",
"M2A2 Bradley",
"VAB Mephisto",
"MBT9_REBEL",
"MBT9_AAA REBEL"
],
"artillery_units": [
"M109A6 Paladin",
"M270 Multiple Launch Rocket System"
],
"logistics_units": [
"Truck M818 6x6"
],
"infantry_units": [
"Infantry M249",
"Infantry M4",
"MANPADS Stinger"
],
"preset_groups": [
"Hawk",
"Rapier",
"Roland",
"Patriot"
],
"naval_units": [
"FFG Oliver Hazard Perry",
"DDG Arleigh Burke IIa",
"CG Ticonderoga",
"LHA-1 Tarawa",
"CVN-74 John C. Stennis"
],
"missiles": [],
"air_defense_units": [
"SAM Patriot STR",
"M163 Vulcan Air Defense System",
"M1097 Heavy HMMWV Avenger",
"M48 Chaparral",
"MBT9_AAA REBEL"
],
"requirements": {},
"carrier_names": [
"CVN-71 Theodore Roosevelt"
],
"helicopter_carrier_names": [
"LHA-1 Tarawa",
"LHA-4 Nassau"
],
"has_jtac": true,
"jtac_unit": "MQ-9 Reaper",
"unrestricted_satnav": true
}

View File

@ -0,0 +1,112 @@
{
"country": "Combined Joint Task Forces Blue",
"name": "Rebel Alliance_PLAYER",
"authors": "Fuzzle",
"description": "<p>A more modern NATO mixed faction reflecting the units involved in Operation Iraqi Freedom.</p>",
"aircrafts": [
"A-10C Thunderbolt II (Suite 3)",
"AH-64D Apache Longbow",
"AH-64D Apache Longbow (AI)",
"AV-8B Harrier II Night Attack",
"B-1B Lancer",
"B-52H Stratofortress",
"C-130",
"C-130J-30 Super Hercules",
"F-117A Nighthawk",
"F-14A Tomcat (Block 135-GR Late)",
"F-14B Tomcat",
"F-15C Eagle",
"F-15E Strike Eagle",
"F-16CM Fighting Falcon (Block 50)",
"F-22A Raptor",
"F/A-18C Hornet (Lot 20)",
"Mirage 2000C",
"OH-58D Kiowa Warrior",
"S-3B Viking",
"SA 342L Gazelle",
"SA 342M Gazelle",
"SA 342M Gazelle Mistral",
"Tornado GR4",
"UH-1H Iroquois",
"UH-60A",
"UH-60L",
"XWING",
"YWING",
"FAUCON",
"AWING",
"XWINGAI",
"AWINGA",
"YWINGA",
"FAUCON_AI",
"naboo_starfighter_AI",
"naboo_starfighter"
],
"awacs": [
"E-2C Hawkeye",
"E-3A"
],
"tankers": [
"KC-130",
"KC-130J",
"KC-135 Stratotanker",
"S-3B Tanker"
],
"frontline_units": [
"FV4034 Challenger 2",
"FV510 Warrior",
"LAV-25",
"M1043 HMMWV (M2 HMG)",
"M1045 HMMWV (BGM-71 TOW)",
"M1097 Heavy HMMWV Avenger",
"M1134 Stryker ATGM (BGM-71 TOW)",
"M1A2 Abrams",
"M2A2 Bradley",
"VAB Mephisto",
"MBT9_REBEL",
"MBT9_AAA REBEL"
],
"artillery_units": [
"M109A6 Paladin",
"M270 Multiple Launch Rocket System"
],
"logistics_units": [
"Truck M818 6x6"
],
"infantry_units": [
"Infantry M249",
"Infantry M4",
"MANPADS Stinger"
],
"preset_groups": [
"Hawk",
"Rapier",
"Roland",
"Patriot"
],
"naval_units": [
"FFG Oliver Hazard Perry",
"DDG Arleigh Burke IIa",
"CG Ticonderoga",
"LHA-1 Tarawa",
"CVN-74 John C. Stennis"
],
"missiles": [],
"air_defense_units": [
"SAM Patriot STR",
"M163 Vulcan Air Defense System",
"M1097 Heavy HMMWV Avenger",
"M48 Chaparral",
"MBT9_AAA REBEL"
],
"requirements": {},
"carrier_names": [
"CVN-71 Theodore Roosevelt"
],
"helicopter_carrier_names": [
"LHA-1 Tarawa",
"LHA-4 Nassau"
],
"has_jtac": true,
"jtac_unit": "MQ-9 Reaper",
"unrestricted_satnav": true
}

View File

@ -0,0 +1,106 @@
{
"country": "Russia",
"name": "russia Galactic Empire AI",
"authors": "Pan_de",
"description": "<p>Empire strikes back</p>",
"locales": [
"ru_RU"
],
"aircrafts": [
"IL-76MD",
"Ka-50 Hokum",
"Ka-50 Hokum (Blackshark 3)",
"L-39ZA Albatros",
"Mi-24V Hind-E",
"Mi-24P Hind-F",
"Mi-28N Havoc",
"Mi-8MTV2 Hip",
"MiG-29S Fulcrum-C",
"MiG-31 Foxhound",
"Su-24M Fencer-D",
"Su-25 Frogfoot",
"Su-25T Frogfoot",
"Su-33 Flanker-D",
"Su-34 Fullback",
"Su-57 Felon",
"Tu-142 Bear-F",
"Tu-160 Blackjack",
"Tu-22M3 Backfire-C",
"Tu-95MS Bear-H",
"TIE_AI",
"HUNTERA",
"TIE_INTERA",
"CORVETTEA",
"TIE_BA"
],
"awacs": [
"A-50"
],
"tankers": [
"IL-78M"
],
"frontline_units": [
"SA-19 Grison (2K22 Tunguska)",
"T-72B with Kontakt-1 ERA",
"SW - TR_TT",
"MBT9_EMPIRE",
"MBT9_AAA EMPIRE",
"TB_TT",
"Jugger"
],
"artillery_units": [
"2S19 Msta-S",
"BM-27 Uragan"
],
"logistics_units": [
"LUV UAZ-469 Jeep",
"Truck Ural-375",
"Gozanti"
],
"infantry_units": [
"Infantry AK-74 Rus",
"MANPADS SA-18 Igla-S \"Grouse\"",
"Paratrooper AKS",
"Paratrooper RPG-16"
],
"missiles": [],
"preset_groups": [
"SA-11",
"SA-10/S-300PS",
"SA-10B/S-300PS",
"SA-17",
"SA-12/S-300V",
"SA-20/S-300PMU-1",
"SA-20B/S-300PMU-2",
"SA-23/S-300VM",
"Russian Navy"
],
"naval_units": [
"Destroyer_carrier",
"Corvette 1241.1 Molniya",
"CV 1143.5 Admiral Kuznetsov"
],
"air_defense_units": [
"EWR 1L13",
"EWR 55G6",
"SAM SA-8 Osa \"Gecko\" TEL",
"SA-9 Strela",
"SA-13 Gopher (9K35 Strela-10M3)",
"SA-15 Tor",
"SA-19 Grison (2K22 Tunguska)",
"ZU-23 on Ural-375",
"ZSU-23-4 Shilka",
"MBT9_AAA EMPIRE"
],
"helicopter_carrier_names": [],
"requirements": {
"SU-57 Felon By CubanAce Simulations": "https://www.digitalcombatsimulator.com/fr/files/2539621/"
},
"carrier_names": [
"Admiral Kuznetsov"
],
"has_jtac": true,
"jtac_unit": "MQ-9 Reaper"
}

View File

@ -0,0 +1,109 @@
{
"country": "Russia",
"name": "russia Galactic Empire Player",
"authors": "Pan_de",
"description": "<p>Empire strikes back</p>",
"locales": [
"ru_RU"
],
"aircrafts": [
"IL-76MD",
"Ka-50 Hokum",
"Ka-50 Hokum (Blackshark 3)",
"L-39ZA Albatros",
"Mi-24V Hind-E",
"Mi-24P Hind-F",
"Mi-28N Havoc",
"Mi-8MTV2 Hip",
"MiG-29S Fulcrum-C",
"MiG-31 Foxhound",
"Su-24M Fencer-D",
"Su-25 Frogfoot",
"Su-25T Frogfoot",
"Su-33 Flanker-D",
"Su-34 Fullback",
"Tu-142 Bear-F",
"Tu-160 Blackjack",
"Tu-22M3 Backfire-C",
"Tu-95MS Bear-H",
"Su-57 Felon",
"TIE",
"HUNTER",
"TIE_INTER",
"CORVETTE",
"TIE_AI",
"HUNTERA",
"TIE_INTERA",
"CORVETTEA",
"TIE_BA",
"tie_bomber_2"
],
"awacs": [
"A-50"
],
"tankers": [
"IL-78M"
],
"frontline_units": [
"SA-19 Grison (2K22 Tunguska)",
"SW - TR_TT",
"MBT9_EMPIRE",
"MBT9_AAA EMPIRE",
"TB_TT",
"Jugger"
],
"artillery_units": [
"2S19 Msta-S",
"BM-27 Uragan"
],
"logistics_units": [
"LUV UAZ-469 Jeep",
"Truck Ural-375",
"Gozanti"
],
"infantry_units": [
"Infantry AK-74 Rus",
"MANPADS SA-18 Igla-S \"Grouse\"",
"Paratrooper AKS",
"Paratrooper RPG-16"
],
"missiles": [],
"preset_groups": [
"SA-11",
"SA-10/S-300PS",
"SA-10B/S-300PS",
"SA-17",
"SA-12/S-300V",
"SA-20/S-300PMU-1",
"SA-20B/S-300PMU-2",
"SA-23/S-300VM",
"Russian Navy"
],
"naval_units": [
"Destroyer_carrier",
"Corvette 1241.1 Molniya",
"CV 1143.5 Admiral Kuznetsov"
],
"air_defense_units": [
"EWR 1L13",
"EWR 55G6",
"SAM SA-8 Osa \"Gecko\" TEL",
"SA-9 Strela",
"SA-13 Gopher (9K35 Strela-10M3)",
"SA-15 Tor",
"SA-19 Grison (2K22 Tunguska)",
"ZU-23 on Ural-375",
"ZSU-23-4 Shilka",
"MBT9_AAA EMPIRE"
],
"helicopter_carrier_names": [],
"requirements": {
"SU-57 Felon By CubanAce Simulations": "https://www.digitalcombatsimulator.com/fr/files/2539621/"
},
"carrier_names": [
"Admiral Kuznetsov"
],
"has_jtac": true,
"jtac_unit": "MQ-9 Reaper"
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 115 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -0,0 +1,14 @@
description:
"The A-wing starfighter, also referred to as A-wing, was a type of starfighter. During the Early rebellion against the
Galactic Empire and the Galactic Civil War, the Alliance to Restore the Republic and the New Republic used the RZ-1
A-wing interceptor. Approximately thirty years later, the type's successor, the RZ-2 A-wing interceptor,
was used by the Resistance during the First Order-Resistance War."
introduced: 1978
manufacturer: Kuat Systems Engineering
origin: USA
price: 42
role: Multirole Fighter
max_range: 2000
variants:
AWING: {}

View File

@ -0,0 +1,14 @@
description:
"The A-wing starfighter, also referred to as A-wing, was a type of starfighter. During the Early rebellion against the
Galactic Empire and the Galactic Civil War, the Alliance to Restore the Republic and the New Republic used the RZ-1
A-wing interceptor. Approximately thirty years later, the type's successor, the RZ-2 A-wing interceptor,
was used by the Resistance during the First Order-Resistance War."
introduced: 1978
manufacturer: Kuat Systems Engineering
origin: USA
price: 42
role: Multirole Fighter
max_range: 2000
variants:
AWINGA: {}

View File

@ -0,0 +1,15 @@
description:
"The Raider-class corvette was a sleek and roomy vessel at 150 meters for a sizeable crew and featured 3 engines and a
hyperdrive. The dark grey protrusions on the craft were actually solar collectors, nearly identical to those found on
the starfighters of the TIE-series. These ships could be operated with a pilot and a co-pilot and were armed with
ion cannons, dual heavy laser cannons, concussion missiles, and turbolasers.[5] The ships also had a small hangar
on the starboard side, that could hold at least 2 TIE fighters"
introduced: 1978
manufacturer: Kuat Drive Yards
origin: USA
price: 150
role: Multirole Fighter
max_range: 4000
variants:
CORVETTE: {}

View File

@ -0,0 +1,15 @@
description:
"The Raider-class corvette was a sleek and roomy vessel at 150 meters for a sizeable crew and featured 3 engines and a
hyperdrive. The dark grey protrusions on the craft were actually solar collectors, nearly identical to those found on
the starfighters of the TIE-series. These ships could be operated with a pilot and a co-pilot and were armed with
ion cannons, dual heavy laser cannons, concussion missiles, and turbolasers.[5] The ships also had a small hangar
on the starboard side, that could hold at least 2 TIE fighters"
introduced: 1978
manufacturer: Kuat Drive Yards
origin: USA
price: 150
role: Multirole Fighter
max_range: 4000
variants:
CORVETTEA: {}

View File

@ -0,0 +1,13 @@
description:
"The Millennium Falcon, originally designated YT 492727ZED and formerly known as the Stellar Envoy, was a Corellian
YT-1300 light freighter built around 60 BBY. Earning a legendary status under their ownership,
the ship was most famously used by the smugglers Han Solo and Chewbacca before, during, and following
the Galactic Civil War. "
introduced: 1978
manufacturer: Corellian Engineering Corporation
origin: USA
price: 42
role: Multirole Fighter
max_range: 2000
variants:
FAUCON: {}

View File

@ -0,0 +1,14 @@
description:
"The Millennium Falcon, originally designated YT 492727ZED and formerly known as the Stellar Envoy, was a Corellian
YT-1300 light freighter built around 60 BBY. Earning a legendary status under their ownership,
the ship was most famously used by the smugglers Han Solo and Chewbacca before, during, and following
the Galactic Civil War. "
introduced: 1978
manufacturer: Corellian Engineering Corporation
origin: USA
price: 42
role: Multirole Fighter
max_range: 2000
variants:
FAUCON_AI: {}

View File

@ -0,0 +1,18 @@
description:
"The Twin ion engine Hunter was an Imperial starfighter which had a wing configuration roughly the reverse
of a TIE/IN interceptor. Similar to the T-65 X-wing starfighter, the TIE Hunter possessed S-foils,
which meant that they would open in attack mode and close in normal flight. This was largely because
the TIE Hunters were created by the Galactic Empire specifically as a means to counter the T-65 X-wing
starfighter. Unlike most other contemporary TIEs of the time, TIE Hunters were equipped with a hyperdrive
and shields, making them more valuable than most starfighters the Empire utilized. Because of these
characteristics, it was also considered to be the fastest TIE variant among the Imperial fleet.[2] When
the S-foils were closed, the craft could not fire its weapons"
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 35
role: Multirole Fighter
max_range: 2000
variants:
HUNTER: {}

View File

@ -0,0 +1,18 @@
description:
"The Twin ion engine Hunter was an Imperial starfighter which had a wing configuration roughly the reverse
of a TIE/IN interceptor. Similar to the T-65 X-wing starfighter, the TIE Hunter possessed S-foils,
which meant that they would open in attack mode and close in normal flight. This was largely because
the TIE Hunters were created by the Galactic Empire specifically as a means to counter the T-65 X-wing
starfighter. Unlike most other contemporary TIEs of the time, TIE Hunters were equipped with a hyperdrive
and shields, making them more valuable than most starfighters the Empire utilized. Because of these
characteristics, it was also considered to be the fastest TIE variant among the Imperial fleet.[2] When
the S-foils were closed, the craft could not fire its weapons"
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 35
role: Multirole Fighter
max_range: 2000
variants:
HUNTERA: {}

View File

@ -0,0 +1,17 @@
description:
"The TIE/ln space superiority starfighter, also known as the TIE/LN starfighter or TIE/ln starfighter
and commonly called the TIE fighter or simply the TIE/ln, was the signature starfighter of the Galactic
Empire and de facto symbol of it space superiority. Its official production name was the Twin Ion Engine
line edition space superiority starfighter. Instantly recognizable from the roar of its engines as well as
its unique design, the TIE/ln exuded Imperial power and prestige across the galaxy, seeing use throughout
the Empire's political existence. They were nicknamed Evil-Eyes[11] or Eye-balls[32] by members of the
New Republic."
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 5
role: Air-Superiority Fighter
max_range: 2000
variants:
TIE: {}

View File

@ -0,0 +1,18 @@
description:
"The TIE/ln space superiority starfighter, also known as the TIE/LN starfighter or TIE/ln starfighter
and commonly called the TIE fighter or simply the TIE/ln, was the signature starfighter of the Galactic
Empire and de facto symbol of it space superiority. Its official production name was the Twin Ion Engine
line edition space superiority starfighter. Instantly recognizable from the roar of its engines as well as
its unique design, the TIE/ln exuded Imperial power and prestige across the galaxy, seeing use throughout
the Empire's political existence. They were nicknamed Evil-Eyes[11] or Eye-balls[32] by members of the
New Republic."
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 5
role: Air-Superiority Fighter
max_range: 2000
variants:
TIE_AI: {}

View File

@ -0,0 +1,15 @@
always_keeps_gun: true
description:
"The TIE/sa bomber, formally known as the TIE Surface Assault Bomber and also known as the TIE/sa tactical bomber
or simply the TIE bomber, was a bombing variant of the TIE line used by the Galactic Empire. An evolution of the
TIE/gt, the TIE bomber was their main source of anti-emplacement air-support. They were nicknamed dupes by the
New Republic pilot Wyl Lark."
introduced: 1990
manufacturer: Sienar Fleet Systems
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
TIE_BA: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,15 @@
description:
"The TIE/IN interceptor[15] or TIE/in[16] was a far deadlier opponent than the standard TIE/ln space superiority
starfighter and featured four very recognizable pointed solar panels.[6] These panels, based on the bent-wing
configuration used on the prototype TIE Advanced flown by Darth Vader, were given a dagger like design, which gave
a TIE fighter pilot a wider field of vision"
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 40
role: Multirole Fighter
max_range: 2000
variants:
TIE_INTER: {}

View File

@ -0,0 +1,14 @@
description:
"The TIE/IN interceptor[15] or TIE/in[16] was a far deadlier opponent than the standard TIE/ln space superiority
starfighter and featured four very recognizable pointed solar panels.[6] These panels, based on the bent-wing
configuration used on the prototype TIE Advanced flown by Darth Vader, were given a dagger like design, which gave
a TIE fighter pilot a wider field of vision"
introduced: 1978
manufacturer: Sienar Fleet Systems
origin: USA
price: 40
role: Multirole Fighter
max_range: 2000
variants:
TIE_INTERA: {}

View File

@ -0,0 +1,14 @@
description:
"The X-wing starfighter is a name applied to a family of fictional spacecraft manufactured by the Incom Corporation
from the Star Wars franchise. Named for the distinctive shape made when its s-foils (wings) are in attack position,
the X-wing was a class of starfighter used by the Rebel Alliance in their conflict with the Galactic Empire."
introduced: 1978
manufacturer: McDonnell Douglas
origin: USA
price: 30
role: Multirole Fighter
max_range: 2000
variants:
XWING: {}

View File

@ -0,0 +1,13 @@
description:
"The X-wing starfighter is a name applied to a family of fictional spacecraft manufactured by the Incom Corporation
from the Star Wars franchise. Named for the distinctive shape made when its s-foils (wings) are in attack position,
the X-wing was a class of starfighter used by the Rebel Alliance in their conflict with the Galactic Empire."
introduced: 1978
manufacturer: McDonnell Douglas
origin: USA
price: 30
role: Multirole Fighter
max_range: 2000
variants:
XWINGAI: {}

View File

@ -0,0 +1,17 @@
always_keeps_gun: true
description:
"The BTL Y-wing starfighter, also known to as the Y-wing starfighter/bomber or more simply as the BTL-series,
Y-wing fighter, or Y-wing and nicknamed the wallowing pigs, was a series of multi-role starfighter-bombers
manufactured by Koensayr Manufacturing.
The Koensayr BTL Y-wing assault starfighter/bomber are a series of fictional spacecraft from the Star Wars franchise.
They are depicted as the star fighters of the Galactic Republic, Rebel Alliance, New Republic, and the Resistance;
being ideally suited for anti-shipping, close air support, air interdiction, force protection and ground attack"
introduced: 1990
manufacturer: Koensayr
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
YWING: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,18 @@
always_keeps_gun: true
description:
"The BTL Y-wing starfighter, also known to as the Y-wing starfighter/bomber or more simply as the BTL-series,
Y-wing fighter, or Y-wing and nicknamed the wallowing pigs, was a series of multi-role starfighter-bombers
manufactured by Koensayr Manufacturing.
The Koensayr BTL Y-wing assault starfighter/bomber are a series of fictional spacecraft from the Star Wars franchise.
They are depicted as the star fighters of the Galactic Republic, Rebel Alliance, New Republic, and the Resistance;
being ideally suited for anti-shipping, close air support, air interdiction, force protection and ground attack
missions."
introduced: 1990
manufacturer: Koensayr
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
YWINGA: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,15 @@
always_keeps_gun: true
description:
"The N-1 starfighter, also referred to as the Royal Naboo N-1 starfighter, Naboo N-1 starfighter, Naboo starfighter,
N-1 fighter, or more simply, the N-1, was a twin-seater patrol craft developed by the Theed Palace Space Vessel
Engineering Corps and used by the Royal Naboo Security Forces for duties such as defense, patrol,
and escorting."
introduced: 1990
manufacturer: Theed Palace Space Vessel Engineering Corps
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
naboo_starfighter: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,15 @@
always_keeps_gun: true
description:
"The N-1 starfighter, also referred to as the Royal Naboo N-1 starfighter, Naboo N-1 starfighter, Naboo starfighter,
N-1 fighter, or more simply, the N-1, was a twin-seater patrol craft developed by the Theed Palace Space Vessel
Engineering Corps and used by the Royal Naboo Security Forces for duties such as defense, patrol,
and escorting."
introduced: 1990
manufacturer: Theed Palace Space Vessel Engineering Corps
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
naboo_starfighter_AI: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,15 @@
always_keeps_gun: true
description:
"The TIE/sa bomber, formally known as the TIE Surface Assault Bomber and also known as the TIE/sa tactical bomber
or simply the TIE bomber, was a bombing variant of the TIE line used by the Galactic Empire. An evolution of the
TIE/gt, the TIE bomber was their main source of anti-emplacement air-support. They were nicknamed dupes by the
New Republic pilot Wyl Lark."
introduced: 1990
manufacturer: Sienar Fleet Systems
origin: USSR/Russia
price: 35
role: Close Air Support/Attack
max_range: 200
variants:
tie_bomber_2: {}
kneeboard_units: "metric"

View File

@ -0,0 +1,13 @@
class: Logistics
description: 'The Panzerkampfwagen IV (Pz.Kpfw. IV), commonly known as the Panzer
IV, was a German medium tank developed in the late 1930s and used extensively during
the Second World War. Its ordnance inventory designation was Sd.Kfz. 161. The Panzer
IV was the most numerous German tank and the second-most numerous German armored
fighting vehicle of the Second World War, with some 8,500 built. '
introduced: 1943
manufacturer: Krupp-Gruson/Vomag/Nibelungenwerke
origin: Germany
price: 12
role: Medium Tank
variants:
Gozanti: {}

View File

@ -0,0 +1,15 @@
class: IFV
description: "The BMD-1 is a Soviet airborne amphibious tracked infantry fighting\
\ vehicle, which was introduced in 1969 and first seen by the West in 1970. BMD\
\ stands for Boyevaya Mashina Desanta (\u0411\u043E\u0435\u0432\u0430\u044F \u041C\
\u0430\u0448\u0438\u043D\u0430 \u0414\u0435\u0441\u0430\u043D\u0442\u0430, which\
\ literally translates to \"Combat Vehicle of the Airborne\"). It can be dropped\
\ by parachute and although it resembles the BMP-1 it is in fact much smaller. The\
\ BMD-1 was used as an IFV by the Soviet Army's airborne divisions."
introduced: 1969
manufacturer: Volgograd
origin: USSR/Russia
price: 90
role: Airborne Amphibious Infantry Fighting Vehicle
variants:
Jugger: {}

View File

@ -0,0 +1,11 @@
class: SHORAD
description: 'The MBT Series and MAVr Models are Medium Repulser Tanks manufactured by Kuat Subsidiaries.
The MAVrs are considered quick and nimble for an armored fighting vehicle and are able to enter a fight quickly,
give significant damage, and escape relatively unharmed. '
introduced: 1943
manufacturer: Kuat
origin: Germany
price: 25
role: Self-Propelled Surface-to-Air Missile Launcher
variants:
MBT9_AAA EMPIRE: { }

View File

@ -0,0 +1,11 @@
class: SHORAD
description: 'The MBT Series and MAVr Models are Medium Repulser Tanks manufactured by Kuat Subsidiaries.
The MAVrs are considered quick and nimble for an armored fighting vehicle and are able to enter a fight quickly,
give significant damage, and escape relatively unharmed. '
introduced: 2000
manufacturer: Kuat
origin: Krytech
price: 25
role: Self-Propelled Surface-to-Air Missile Launcher
variants:
MBT9_AAA REBEL: { }

View File

@ -0,0 +1,11 @@
class: Tank
description: 'The MBT Series and MAVr Models are Medium Repulser Tanks manufactured by Kuat Subsidiaries.
The MAVrs are considered quick and nimble for an armored fighting vehicle and are able to enter a fight quickly,
give significant damage, and escape relatively unharmed. '
introduced: 1943
manufacturer: Kuat
origin: Germany
price: 25
role: Medium Tank
variants:
MBT9_EMPIRE: { }

View File

@ -0,0 +1,11 @@
class: Tank
description: 'The MBT Series and MAVr Models are Medium Repulser Tanks manufactured by Kuat Subsidiaries.
The MAVrs are considered quick and nimble for an armored fighting vehicle and are able to enter a fight quickly,
give significant damage, and escape relatively unharmed. '
introduced: 1943
manufacturer: Kuat
origin: Germany
price: 25
role: Medium Tank
variants:
MBT9_REBEL: { }

View File

@ -0,0 +1,15 @@
class: IFV
description: "The BMD-1 is a Soviet airborne amphibious tracked infantry fighting\
\ vehicle, which was introduced in 1969 and first seen by the West in 1970. BMD\
\ stands for Boyevaya Mashina Desanta (\u0411\u043E\u0435\u0432\u0430\u044F \u041C\
\u0430\u0448\u0438\u043D\u0430 \u0414\u0435\u0441\u0430\u043D\u0442\u0430, which\
\ literally translates to \"Combat Vehicle of the Airborne\"). It can be dropped\
\ by parachute and although it resembles the BMP-1 it is in fact much smaller. The\
\ BMD-1 was used as an IFV by the Soviet Army's airborne divisions."
introduced: 1969
manufacturer: Volgograd
origin: USSR/Russia
price: 8
role: Airborne Amphibious Infantry Fighting Vehicle
variants:
SW - TR_TT: {}

View File

@ -0,0 +1,11 @@
class: Tank
description: The 155 mm Gun Motor Carriage M12 was a U.S. self-propelled gun developed
during the Second World War. It mounted a 155 mm gun derived from the French Canon
de 155mm GPF field gun.
introduced: 1942
manufacturer: Pressed Steel Car Company
origin: USA
price: 120
role: Self-Propelled Gun
variants:
TB_TT: {}

View File

@ -0,0 +1,4 @@
class: Boat
price: 0
variants:
SW - ISD carrier: null