mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Added description field to both campaign and faction json file.
This commit is contained in:
parent
a0c61bf73a
commit
4672252242
@ -1,71 +0,0 @@
|
||||
from dcs.helicopters import (
|
||||
AH_1W,
|
||||
AH_64D,
|
||||
)
|
||||
from dcs.planes import (
|
||||
C_130,
|
||||
E_3A,
|
||||
F_15C,
|
||||
F_16C_50,
|
||||
F_4E,
|
||||
KC130,
|
||||
KC_135,
|
||||
)
|
||||
from dcs.ships import LHA_1_Tarawa, Ticonderoga_class, USS_Arleigh_Burke_IIa
|
||||
from dcs.vehicles import (
|
||||
AirDefence,
|
||||
Armor,
|
||||
Artillery,
|
||||
Infantry,
|
||||
Unarmed,
|
||||
)
|
||||
|
||||
Japan_2005 = {
|
||||
"country": "Japan",
|
||||
"side": "blue",
|
||||
"units": [
|
||||
F_15C, # F-15J/DJ
|
||||
F_16C_50, # F-2A/B
|
||||
F_4E, # F-4EJ
|
||||
|
||||
KC_135,
|
||||
KC130,
|
||||
C_130,
|
||||
E_3A,
|
||||
|
||||
AH_1W,
|
||||
AH_64D,
|
||||
|
||||
Armor.MBT_Merkava_Mk__4, # Standing as Type 10 MBT
|
||||
Armor.MBT_M1A2_Abrams, # Standing as Type 90 MBT
|
||||
Armor.IFV_Marder, # Standing as Type 89 IFV
|
||||
Armor.TPz_Fuchs, # Standing as Type 96 APC
|
||||
Armor.IFV_LAV_25, # Standing as Type 16 or Type 87
|
||||
Armor.APC_M1043_HMMWV_Armament,
|
||||
|
||||
Artillery.MLRS_M270,
|
||||
Artillery.SPH_M109_Paladin, # Standing as Type 99 SPH
|
||||
|
||||
Unarmed.Transport_M818,
|
||||
Infantry.Infantry_M4,
|
||||
Infantry.Soldier_M249,
|
||||
|
||||
AirDefence.SAM_Hawk_PCP,
|
||||
AirDefence.SAM_Patriot_EPP_III,
|
||||
|
||||
LHA_1_Tarawa,
|
||||
], "shorad": [
|
||||
AirDefence.SPAAA_Gepard, # Type 87 SPAG
|
||||
], "helicopter_carrier": [
|
||||
LHA_1_Tarawa, # Standing as Hyuga-class helicopter carrier
|
||||
], "destroyer": [
|
||||
USS_Arleigh_Burke_IIa,
|
||||
], "cruiser": [
|
||||
Ticonderoga_class,
|
||||
], "helicopter_carrier_names": [
|
||||
"Hyuga",
|
||||
"Ise",
|
||||
], "boat":[
|
||||
"ArleighBurkeGroupGenerator"
|
||||
], "has_jtac": True
|
||||
}
|
||||
@ -1,68 +0,0 @@
|
||||
from dcs.helicopters import (
|
||||
Mi_24V,
|
||||
)
|
||||
from dcs.planes import (
|
||||
A_50,
|
||||
An_26B,
|
||||
An_30M,
|
||||
IL_76MD,
|
||||
IL_78M,
|
||||
MiG_21Bis,
|
||||
MiG_23MLD,
|
||||
Su_17M4,
|
||||
Su_24M,
|
||||
Yak_40,
|
||||
)
|
||||
from dcs.vehicles import (
|
||||
AirDefence,
|
||||
Armor,
|
||||
Artillery,
|
||||
Infantry,
|
||||
Unarmed,
|
||||
)
|
||||
|
||||
Libya_2011 = {
|
||||
"country": "Libya",
|
||||
"side": "red",
|
||||
"units": [
|
||||
|
||||
MiG_21Bis,
|
||||
MiG_23MLD,
|
||||
Su_24M,
|
||||
Su_17M4,
|
||||
Mi_24V,
|
||||
|
||||
IL_76MD,
|
||||
IL_78M,
|
||||
An_26B,
|
||||
An_30M,
|
||||
Yak_40,
|
||||
A_50,
|
||||
|
||||
AirDefence.SAM_SA_8_Osa_9A33,
|
||||
AirDefence.SAM_SA_2_LN_SM_90,
|
||||
AirDefence.SAM_SA_3_S_125_LN_5P73,
|
||||
AirDefence.SAM_SA_6_Kub_LN_2P25,
|
||||
AirDefence.HQ_7_Self_Propelled_LN,
|
||||
|
||||
Armor.IFV_BMP_1,
|
||||
Armor.FDDM_Grad,
|
||||
Armor.ARV_BRDM_2,
|
||||
Armor.MBT_T_55,
|
||||
Armor.MBT_T_72B,
|
||||
Artillery.MLRS_BM_21_Grad,
|
||||
|
||||
Unarmed.Transport_Ural_375,
|
||||
Unarmed.Transport_UAZ_469,
|
||||
|
||||
Infantry.Paratrooper_RPG_16,
|
||||
Infantry.Infantry_Soldier_Insurgents
|
||||
|
||||
],
|
||||
"shorad":[
|
||||
AirDefence.HQ_7_Self_Propelled_LN,
|
||||
AirDefence.SAM_SA_8_Osa_9A33,
|
||||
], "boat": [
|
||||
"GrishaGroupGenerator", "MolniyaGroupGenerator"
|
||||
]
|
||||
}
|
||||
@ -1,56 +0,0 @@
|
||||
from dcs.helicopters import (
|
||||
AH_64A,
|
||||
)
|
||||
from dcs.planes import (
|
||||
C_130,
|
||||
E_3A,
|
||||
F_16C_50,
|
||||
F_5E_3,
|
||||
KC130,
|
||||
KC_135,
|
||||
)
|
||||
from dcs.ships import (
|
||||
Armed_speedboat,
|
||||
CVN_74_John_C__Stennis,
|
||||
LHA_1_Tarawa,
|
||||
)
|
||||
from dcs.vehicles import (
|
||||
AirDefence,
|
||||
Armor,
|
||||
Infantry,
|
||||
Unarmed,
|
||||
)
|
||||
|
||||
Netherlands_1990 = {
|
||||
"country": "The Netherlands",
|
||||
"side": "blue",
|
||||
"units": [
|
||||
F_16C_50,
|
||||
F_5E_3,
|
||||
|
||||
KC_135,
|
||||
KC130,
|
||||
C_130,
|
||||
E_3A,
|
||||
|
||||
AH_64A,
|
||||
|
||||
Armor.APC_M113,
|
||||
Armor.MBT_Leopard_1A3,
|
||||
|
||||
Unarmed.Transport_M818,
|
||||
Infantry.Infantry_M4,
|
||||
|
||||
AirDefence.SAM_Hawk_PCP,
|
||||
AirDefence.SAM_Avenger_M1097,
|
||||
|
||||
CVN_74_John_C__Stennis,
|
||||
LHA_1_Tarawa,
|
||||
Armed_speedboat,
|
||||
],
|
||||
"shorad": [
|
||||
AirDefence.SAM_Avenger_M1097
|
||||
], "boat": [
|
||||
"OliverHazardPerryGroupGenerator"
|
||||
], "has_jtac": True
|
||||
}
|
||||
@ -1,79 +0,0 @@
|
||||
from dcs.helicopters import (
|
||||
Mi_24V,
|
||||
Mi_8MT,
|
||||
)
|
||||
from dcs.planes import (
|
||||
A_50,
|
||||
An_26B,
|
||||
An_30M,
|
||||
IL_76MD,
|
||||
IL_78M,
|
||||
MiG_15bis,
|
||||
MiG_19P,
|
||||
MiG_21Bis,
|
||||
MiG_23MLD,
|
||||
MiG_29A,
|
||||
Su_25,
|
||||
Yak_40,
|
||||
)
|
||||
from dcs.ships import (
|
||||
Bulk_cargo_ship_Yakushev,
|
||||
CV_1143_5_Admiral_Kuznetsov,
|
||||
Dry_cargo_ship_Ivanov,
|
||||
Tanker_Elnya_160,
|
||||
)
|
||||
from dcs.vehicles import (
|
||||
AirDefence,
|
||||
Armor,
|
||||
Infantry,
|
||||
Unarmed,
|
||||
)
|
||||
|
||||
NorthKorea_2000 = {
|
||||
"country": "North Korea",
|
||||
"side": "red",
|
||||
"units":[
|
||||
MiG_29A,
|
||||
Su_25,
|
||||
MiG_15bis,
|
||||
MiG_21Bis,
|
||||
MiG_23MLD,
|
||||
MiG_19P,
|
||||
|
||||
IL_76MD,
|
||||
IL_78M,
|
||||
An_26B,
|
||||
An_30M,
|
||||
Yak_40,
|
||||
|
||||
A_50,
|
||||
|
||||
Mi_8MT,
|
||||
Mi_24V,
|
||||
|
||||
Armor.MBT_T_55,
|
||||
Armor.MBT_T_72B,
|
||||
Armor.MBT_T_80U,
|
||||
Armor.IFV_BMP_1,
|
||||
Armor.APC_BTR_80,
|
||||
Armor.ARV_BRDM_2,
|
||||
|
||||
Unarmed.Transport_M818,
|
||||
Infantry.Soldier_AK,
|
||||
|
||||
AirDefence.SAM_SA_2_LN_SM_90,
|
||||
AirDefence.SAM_SA_3_S_125_LN_5P73,
|
||||
|
||||
CV_1143_5_Admiral_Kuznetsov,
|
||||
Bulk_cargo_ship_Yakushev,
|
||||
Dry_cargo_ship_Ivanov,
|
||||
Tanker_Elnya_160
|
||||
],
|
||||
"shorad":[
|
||||
AirDefence.AAA_ZU_23_Emplacement,
|
||||
AirDefence.SPAAA_ZSU_23_4_Shilka
|
||||
],
|
||||
"boat": [
|
||||
"GrishaGroupGenerator", "MolniyaGroupGenerator"
|
||||
]
|
||||
}
|
||||
@ -1,60 +0,0 @@
|
||||
from dcs.helicopters import (
|
||||
AH_1W,
|
||||
UH_1H,
|
||||
)
|
||||
from dcs.planes import (
|
||||
E_3A,
|
||||
F_16C_50,
|
||||
IL_78M,
|
||||
JF_17,
|
||||
MiG_19P,
|
||||
MiG_21Bis,
|
||||
WingLoong_I,
|
||||
)
|
||||
from dcs.ships import (
|
||||
Armed_speedboat,
|
||||
)
|
||||
from dcs.vehicles import (
|
||||
AirDefence,
|
||||
Armor,
|
||||
Infantry,
|
||||
Unarmed,
|
||||
)
|
||||
|
||||
Pakistan_2015 = {
|
||||
"country": "Pakistan",
|
||||
"side": "blue",
|
||||
"units": [
|
||||
JF_17,
|
||||
F_16C_50,
|
||||
MiG_21Bis, # Standing as J-7
|
||||
MiG_19P, # Standing as J-6
|
||||
IL_78M,
|
||||
E_3A,
|
||||
|
||||
UH_1H,
|
||||
AH_1W,
|
||||
|
||||
Armor.MBT_T_80U,
|
||||
Armor.MBT_T_55, # Standing as Al-Zarrar / Type 59 MBT
|
||||
Armor.ZBD_04A,
|
||||
Armor.APC_BTR_80,
|
||||
Armor.APC_M113,
|
||||
|
||||
Unarmed.Transport_M818,
|
||||
Infantry.Infantry_M4,
|
||||
|
||||
AirDefence.SAM_SA_2_LN_SM_90, # Standing as HQ-2
|
||||
AirDefence.SAM_SA_10_S_300PS_LN_5P85C, # Standing as HQ-9
|
||||
|
||||
Armed_speedboat,
|
||||
], "shorad": [
|
||||
AirDefence.HQ_7_Self_Propelled_LN,
|
||||
AirDefence.AAA_ZU_23_Insurgent_on_Ural_375,
|
||||
AirDefence.AAA_ZU_23_Closed
|
||||
], "boat": [
|
||||
"Type54GroupGenerator", "OliverHazardPerryGroupGenerator"
|
||||
],
|
||||
"has_jtac": True,
|
||||
"jtac_unit": WingLoong_I
|
||||
}
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "The Channel - Battle of Britain",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Persian Gulf - Desert War",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "The Channel - Dunkirk",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Persian Gulf - Emirates",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Caucasus - Full Map",
|
||||
"theater": "Caucasus",
|
||||
"authors": "george",
|
||||
"description": "Full Caucasus Map",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Syria - Full Map",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Syria - Golan heights battle",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Syria - Inherent Resolve",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Syria - Invasion from Turkey",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Persian Gulf - Invasion of Iran",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Persian Gulf - Invasion of Iran [Lite]",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Normandy - Normandy",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Normandy - Normandy Small",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Caucasus - North Caucasus",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Nevada - North Nevada",
|
||||
"theater": "Nevada",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Caucasus - Russia Small",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Syria - Syrian Civil War",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Caucasus - Western Georgia",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Australia",
|
||||
"name": "Australia 2005",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"FA_18C_hornet",
|
||||
"UH_1H",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Combined Joint Task Forces Blue",
|
||||
"name": "Bluefor Coldwar",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_14B",
|
||||
"F_4E",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Combined Joint Task Forces Blue",
|
||||
"name": "Bluefor Coldwar (With A4)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_14B",
|
||||
"F_4E",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Combined Joint Task Forces Blue",
|
||||
"name": "Bluefor Coldwar (With A4 & MB339)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_14B",
|
||||
"F_4E",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Combined Joint Task Forces Blue",
|
||||
"name": "Bluefor Modern",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_14B",
|
||||
"F_15C",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Canada",
|
||||
"name": "Canada 2005",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"FA_18C_hornet",
|
||||
"UH_1H",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "China",
|
||||
"name": "China 2010",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_21Bis",
|
||||
"Su_30",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "France",
|
||||
"name": "France 1995",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"M_2000C",
|
||||
"Mirage_2000_5",
|
||||
@ -62,7 +64,8 @@
|
||||
"Jeanne d'Arc"
|
||||
],
|
||||
"navy_generators": [
|
||||
"ArleighBurkeGroupGenerator", "OliverHazardPerryGroupGenerator"
|
||||
"ArleighBurkeGroupGenerator",
|
||||
"OliverHazardPerryGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "France",
|
||||
"name": "France 2005 (Modded)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"M_2000C",
|
||||
"Mirage_2000_5",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Third Reich",
|
||||
"name": "Germany 1944",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"FW_190A8",
|
||||
"FW_190D9",
|
||||
@ -47,7 +49,8 @@
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"UBoatGroupGenerator", "SchnellbootGroupGenerator"
|
||||
"UBoatGroupGenerator",
|
||||
"SchnellbootGroupGenerator"
|
||||
],
|
||||
"navy_group_count": 2,
|
||||
"has_jtac": false,
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Third Reich",
|
||||
"name": "Germany 1944",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"FW_190A8",
|
||||
"FW_190D9",
|
||||
@ -52,10 +54,13 @@
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"UBoatGroupGenerator", "SchnellbootGroupGenerator"
|
||||
"UBoatGroupGenerator",
|
||||
"SchnellbootGroupGenerator"
|
||||
],
|
||||
"navy_group_count": 2,
|
||||
"missiles": ["V1GroupGenerator"],
|
||||
"missiles": [
|
||||
"V1GroupGenerator"
|
||||
],
|
||||
"missiles_group_count": 1,
|
||||
"has_jtac": false,
|
||||
"doctrine": "ww2",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Germany",
|
||||
"name": "Germany 1990",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_29G",
|
||||
"Tornado_IDS",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "India",
|
||||
"name": "India 2010",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"Mirage_2000_5",
|
||||
"M_2000C",
|
||||
@ -61,7 +63,8 @@
|
||||
"INS Vikramaditya"
|
||||
],
|
||||
"navy_generators": [
|
||||
"OliverHazardPerryGroupGenerator", "MolniyaGroupGenerator"
|
||||
"OliverHazardPerryGroupGenerator",
|
||||
"MolniyaGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Insurgents",
|
||||
"name": "Insurgents",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
],
|
||||
"frontline_units": [
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Insurgents",
|
||||
"name": "Insurgents (Modded)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
],
|
||||
"frontline_units": [
|
||||
@ -30,7 +32,8 @@
|
||||
"sams": [
|
||||
"ZU23Generator",
|
||||
"ZSU23Generator"
|
||||
],"requirements": {
|
||||
],
|
||||
"requirements": {
|
||||
"frenchpack V3.5": "https://forums.eagle.ru/showthread.php?t=279974"
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Iran",
|
||||
"name": "Iran 2015",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_21Bis",
|
||||
"MiG_29A",
|
||||
@ -67,7 +69,9 @@
|
||||
"carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"GrishaGroupGenerator", "MolniyaGroupGenerator", "KiloSubGroupGenerator"
|
||||
"GrishaGroupGenerator",
|
||||
"MolniyaGroupGenerator",
|
||||
"KiloSubGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Israel",
|
||||
"name": "Israel 1948",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"SpitfireLFMkIXCW",
|
||||
"SpitfireLFMkIX",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Israel",
|
||||
"name": "Israel 1973",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_4E",
|
||||
"A_4E_C",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Israel",
|
||||
"name": "Israel 1982",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_4E",
|
||||
"A_4E_C",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Israel",
|
||||
"name": "Israel 2000",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_4E",
|
||||
"F_15C",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Italy",
|
||||
"name": "Italy 1990",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"Tornado_IDS",
|
||||
"AV8BNA",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Italy",
|
||||
"name": "Italy 1990 (With MB339)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"Tornado_IDS",
|
||||
"AV8BNA",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Japan",
|
||||
"name": "Japan 2005",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_15C",
|
||||
"F_16C_50",
|
||||
|
||||
@ -1,64 +1,67 @@
|
||||
{
|
||||
"country": "Libya",
|
||||
"name": "Libya 2011",
|
||||
"aircrafts": [
|
||||
"MiG_21Bis",
|
||||
"MiG_23MLD",
|
||||
"Su_17M4",
|
||||
"Su_24M",
|
||||
"Mi_24V"
|
||||
],
|
||||
"awacs": [
|
||||
"A_50"
|
||||
],
|
||||
"tankers": [
|
||||
"IL_78M"
|
||||
],
|
||||
"frontline_units": [
|
||||
"IFV_BMP_1",
|
||||
"ARV_BRDM_2",
|
||||
"MBT_T_72B",
|
||||
"MBT_T_55"
|
||||
],
|
||||
"artillery_units": [
|
||||
"MLRS_BM_21_Grad"
|
||||
],
|
||||
"logistics_units": [
|
||||
"Transport_Ural_375",
|
||||
"Transport_UAZ_469"
|
||||
],
|
||||
"infantry_units": [
|
||||
"Infantry_Soldier_Insurgents",
|
||||
"Paratrooper_RPG_16"
|
||||
],
|
||||
"shorads": [
|
||||
"HQ7Generator",
|
||||
"SA8Generator",
|
||||
"ZSU23Generator"
|
||||
],
|
||||
"sams": [
|
||||
"SA2Generator",
|
||||
"SA3Generator",
|
||||
"SA6Generator"
|
||||
],
|
||||
"aircraft_carrier": [
|
||||
],
|
||||
"helicopter_carrier": [
|
||||
],
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"destroyers": [
|
||||
"FF_1135M_Rezky"
|
||||
],
|
||||
"cruisers": [
|
||||
"FSG_1241_1MP_Molniya"
|
||||
],
|
||||
"requirements": {},
|
||||
"carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"GrishaGroupGenerator", "MolniyaGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
"authors": "Khopa",
|
||||
"description": "", "Libya",
|
||||
"name": "Libya 2011",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_21Bis",
|
||||
"MiG_23MLD",
|
||||
"Su_17M4",
|
||||
"Su_24M",
|
||||
"Mi_24V"
|
||||
],
|
||||
"awacs": [
|
||||
"A_50"
|
||||
],
|
||||
"tankers": [
|
||||
"IL_78M"
|
||||
],
|
||||
"frontline_units": [
|
||||
"IFV_BMP_1",
|
||||
"ARV_BRDM_2",
|
||||
"MBT_T_72B",
|
||||
"MBT_T_55"
|
||||
],
|
||||
"artillery_units": [
|
||||
"MLRS_BM_21_Grad"
|
||||
],
|
||||
"logistics_units": [
|
||||
"Transport_Ural_375",
|
||||
"Transport_UAZ_469"
|
||||
],
|
||||
"infantry_units": [
|
||||
"Infantry_Soldier_Insurgents",
|
||||
"Paratrooper_RPG_16"
|
||||
],
|
||||
"shorads": [
|
||||
"HQ7Generator",
|
||||
"SA8Generator",
|
||||
"ZSU23Generator"
|
||||
],
|
||||
"sams": [
|
||||
"SA2Generator",
|
||||
"SA3Generator",
|
||||
"SA6Generator"
|
||||
],
|
||||
"aircraft_carrier": [
|
||||
],
|
||||
"helicopter_carrier": [
|
||||
],
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"destroyers": [
|
||||
"FF_1135M_Rezky"
|
||||
],
|
||||
"cruisers": [
|
||||
"FSG_1241_1MP_Molniya"
|
||||
],
|
||||
"requirements": {
|
||||
},
|
||||
"carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"GrishaGroupGenerator", "MolniyaGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
}
|
||||
|
||||
55
resources/factions/netherlands_1990.json
Normal file
55
resources/factions/netherlands_1990.json
Normal file
@ -0,0 +1,55 @@
|
||||
{
|
||||
"country": "Netherlands",
|
||||
"name": "Netherlands 1990",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_16C_50",
|
||||
"F_5E_3",
|
||||
"AH_64A"
|
||||
],
|
||||
"awacs": [
|
||||
"E_3A"
|
||||
],
|
||||
"tankers": [
|
||||
"KC_135",
|
||||
"KC130"
|
||||
],
|
||||
"frontline_units": [
|
||||
"APC_M113",
|
||||
"MBT_Leopard_1A3"
|
||||
],
|
||||
"artillery_units": [
|
||||
],
|
||||
"logistics_units": [
|
||||
"Transport_M818"
|
||||
],
|
||||
"infantry_units": [
|
||||
"Infantry_M4",
|
||||
"Soldier_M249"
|
||||
],
|
||||
"shorads": [
|
||||
"AvengerGenerator"
|
||||
],
|
||||
"sams": [
|
||||
"HawkGenerator"
|
||||
],
|
||||
"aircraft_carrier": [
|
||||
],
|
||||
"helicopter_carrier": [
|
||||
],
|
||||
"destroyers": [
|
||||
],
|
||||
"cruisers": [
|
||||
],
|
||||
"requirements": {},
|
||||
"carrier_names": [
|
||||
],
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"OliverHazardPerryGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "MQ_9_Reaper"
|
||||
}
|
||||
72
resources/factions/north_korea_2000.json
Normal file
72
resources/factions/north_korea_2000.json
Normal file
@ -0,0 +1,72 @@
|
||||
{
|
||||
"country": "North Korea",
|
||||
"name": "North Korea 2000",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_15bis",
|
||||
"MiG_19P",
|
||||
"MiG_21Bis",
|
||||
"MiG_23MLD",
|
||||
"MiG_29A",
|
||||
"Mi_8MT",
|
||||
"Mi_24V"
|
||||
],
|
||||
"awacs": [
|
||||
"A_50"
|
||||
],
|
||||
"tankers": [
|
||||
"IL_78M"
|
||||
],
|
||||
"frontline_units": [
|
||||
"ARV_BRDM_2",
|
||||
"APC_BTR_80",
|
||||
"IFV_BMP_1",
|
||||
"MBT_T_55",
|
||||
"MBT_T_72B",
|
||||
"MBT_T_80U"
|
||||
],
|
||||
"artillery_units": [
|
||||
"MLRS_BM_21_Grad",
|
||||
"MLRS_9K57_Uragan_BM_27",
|
||||
"SPH_2S19_Msta"
|
||||
],
|
||||
"logistics_units": [
|
||||
"Transport_Ural_375",
|
||||
"Transport_UAZ_469"
|
||||
],
|
||||
"infantry_units": [
|
||||
"Paratrooper_AKS",
|
||||
"Infantry_Soldier_Rus",
|
||||
"Paratrooper_RPG_16"
|
||||
],
|
||||
"shorads": [
|
||||
"SA9Generator",
|
||||
"SA13Generator",
|
||||
"ZSU23Generator",
|
||||
"ZU23Generator"
|
||||
],
|
||||
"sams": [
|
||||
"SA2Generator",
|
||||
"SA3Generator",
|
||||
"SA6Generator"
|
||||
],
|
||||
"aircraft_carrier": [
|
||||
],
|
||||
"helicopter_carrier": [
|
||||
],
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"destroyers": [
|
||||
],
|
||||
"cruisers": [
|
||||
],
|
||||
"requirements": {},
|
||||
"carrier_names": [
|
||||
],
|
||||
"navy_generators": [
|
||||
"GrishaGroupGenerator",
|
||||
"MolniyaGroupGenerator"
|
||||
],
|
||||
"has_jtac": false
|
||||
}
|
||||
69
resources/factions/pakistan_2015.json
Normal file
69
resources/factions/pakistan_2015.json
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"country": "Pakistan",
|
||||
"name": "Pakistan 2015",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"JF_17",
|
||||
"F_16C_50",
|
||||
"MiG_21Bis",
|
||||
"MiG_19P",
|
||||
"Mi_8MT",
|
||||
"UH_1H",
|
||||
"AH_1W"
|
||||
],
|
||||
"awacs": [
|
||||
"KJ_2000"
|
||||
],
|
||||
"tankers": [
|
||||
"IL_78M"
|
||||
],
|
||||
"frontline_units": [
|
||||
"MBT_T_80U",
|
||||
"MBT_T_55",
|
||||
"ZBD_04A",
|
||||
"APC_BTR_80",
|
||||
"APC_M113"
|
||||
],
|
||||
"artillery_units": [
|
||||
"MLRS_9A52_Smerch",
|
||||
"SPH_2S9_Nona"
|
||||
],
|
||||
"logistics_units": [
|
||||
"Transport_Ural_375",
|
||||
"Transport_UAZ_469"
|
||||
],
|
||||
"infantry_units": [
|
||||
"Paratrooper_AKS",
|
||||
"Infantry_Soldier_Rus",
|
||||
"Paratrooper_RPG_16"
|
||||
],
|
||||
"shorads": [
|
||||
"HQ7Generator",
|
||||
"ZU23UralGenerator",
|
||||
"ZU23Generator"
|
||||
],
|
||||
"sams": [
|
||||
"SA10Generator",
|
||||
"SA2Generator"
|
||||
],
|
||||
"aircraft_carrier": [
|
||||
],
|
||||
"carrier_names": [
|
||||
],
|
||||
"helicopter_carrier": [
|
||||
],
|
||||
"helicopter_carrier_names": [
|
||||
],
|
||||
"destroyers": [
|
||||
],
|
||||
"cruiser": [
|
||||
],
|
||||
"requirements": {},
|
||||
"navy_generators": [
|
||||
"Type54GroupGenerator",
|
||||
"OliverHazardPerryGroupGenerator"
|
||||
],
|
||||
"has_jtac": true,
|
||||
"jtac_unit": "WingLoong_I"
|
||||
}
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Russia",
|
||||
"name": "Russia 1990",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_23MLD",
|
||||
"MiG_25PD",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Russia",
|
||||
"name": "Russia 2010",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_29S",
|
||||
"MiG_31",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Russia",
|
||||
"name": "Russia 2020 (Modded)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"MiG_29S",
|
||||
"MiG_31",
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
|
||||
{
|
||||
|
||||
"country": "USA",
|
||||
"name": "USA 2005",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_15C",
|
||||
"F_15E",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "USA",
|
||||
"name": "USA 1990",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_15C",
|
||||
"F_15E",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user