mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +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
|
||||
}
|
||||
@ -1,87 +1,88 @@
|
||||
{
|
||||
"name": "The Channel - Battle of Britain",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hawkinge",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lympne",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Manston",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "High Halden",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
"name": "The Channel - Battle of Britain",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hawkinge",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lympne",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Manston",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "High Halden",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Dunkirk Mardyck",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Saint Omer Longuenesse",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Merville Calonne",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Abbeville Drucat",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hawkinge",
|
||||
"Lympne"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Dunkirk Mardyck",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Saint Omer Longuenesse",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Merville Calonne",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Abbeville Drucat",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Hawkinge",
|
||||
"Manston"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hawkinge",
|
||||
"Lympne"
|
||||
],
|
||||
[
|
||||
"Hawkinge",
|
||||
"Manston"
|
||||
],
|
||||
[
|
||||
"High Halden",
|
||||
"Lympne"
|
||||
],
|
||||
[
|
||||
"Dunkirk Mardyck",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Merville Calonne",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Abbeville Drucat",
|
||||
"Saint Omer Longuenesse"
|
||||
]
|
||||
[
|
||||
"High Halden",
|
||||
"Lympne"
|
||||
],
|
||||
[
|
||||
"Dunkirk Mardyck",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Merville Calonne",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Abbeville Drucat",
|
||||
"Saint Omer Longuenesse"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,62 +1,63 @@
|
||||
{
|
||||
"name": "Persian Gulf - Desert War",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Liwa Airbase",
|
||||
"size": 2000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -164000,
|
||||
"y": -257000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -124000,
|
||||
"y": -303000,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Persian Gulf - Desert War",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Liwa Airbase",
|
||||
"size": 2000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -164000,
|
||||
"y": -257000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -124000,
|
||||
"y": -303000,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Ain International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Maktoum Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Minhad AB",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Liwa Airbase"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Ain International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Maktoum Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Minhad AB",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
}
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Liwa Airbase"
|
||||
],
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
[
|
||||
"Al Maktoum Intl",
|
||||
"Al Minhad AB"
|
||||
]
|
||||
[
|
||||
"Al Maktoum Intl",
|
||||
"Al Minhad AB"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,78 +1,79 @@
|
||||
{
|
||||
"name": "The Channel - Dunkirk",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hawkinge",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lympne",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Manston",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Dunkirk Mardyck",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "The Channel - Dunkirk",
|
||||
"theater": "The Channel",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hawkinge",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lympne",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Manston",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Dunkirk Mardyck",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Saint Omer Longuenesse",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Merville Calonne",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Abbeville Drucat",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hawkinge",
|
||||
"Lympne"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Saint Omer Longuenesse",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Merville Calonne",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Abbeville Drucat",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Hawkinge",
|
||||
"Manston"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hawkinge",
|
||||
"Lympne"
|
||||
],
|
||||
[
|
||||
"Hawkinge",
|
||||
"Manston"
|
||||
],
|
||||
[
|
||||
"Dunkirk Mardyck",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Merville Calonne",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Abbeville Drucat",
|
||||
"Saint Omer Longuenesse"
|
||||
]
|
||||
[
|
||||
"Dunkirk Mardyck",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Merville Calonne",
|
||||
"Saint Omer Longuenesse"
|
||||
],
|
||||
[
|
||||
"Abbeville Drucat",
|
||||
"Saint Omer Longuenesse"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,107 +1,108 @@
|
||||
{
|
||||
"name": "Persian Gulf - Emirates",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Fujairah Intl",
|
||||
"radials": [
|
||||
180,
|
||||
225,
|
||||
270,
|
||||
315,
|
||||
0
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -79770,
|
||||
"y": 49430,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -61770,
|
||||
"y": 69039,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Persian Gulf - Emirates",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Fujairah Intl",
|
||||
"radials": [
|
||||
180,
|
||||
225,
|
||||
270,
|
||||
315,
|
||||
0
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -79770,
|
||||
"y": 49430,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -61770,
|
||||
"y": 69039,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Dhafra AB",
|
||||
"size": 2000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Ain International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Maktoum Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Minhad AB",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sharjah Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ras Al Khaimah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Dhafra AB"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Dhafra AB",
|
||||
"size": 2000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Ain International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Maktoum Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Minhad AB",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sharjah Intl",
|
||||
"size": 2000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ras Al Khaimah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
}
|
||||
[
|
||||
"Al Dhafra AB",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Dhafra AB"
|
||||
],
|
||||
[
|
||||
"Al Dhafra AB",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Fujairah Intl"
|
||||
],
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
[
|
||||
"Al Maktoum Intl",
|
||||
"Al Minhad AB"
|
||||
],
|
||||
[
|
||||
"Al Minhad AB",
|
||||
"Sharjah Intl"
|
||||
],
|
||||
[
|
||||
"Ras Al Khaimah",
|
||||
"Sharjah Intl"
|
||||
],
|
||||
[
|
||||
"Fujairah Intl",
|
||||
"Sharjah Intl"
|
||||
]
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Fujairah Intl"
|
||||
],
|
||||
[
|
||||
"Al Ain International Airport",
|
||||
"Al Maktoum Intl"
|
||||
],
|
||||
[
|
||||
"Al Maktoum Intl",
|
||||
"Al Minhad AB"
|
||||
],
|
||||
[
|
||||
"Al Minhad AB",
|
||||
"Sharjah Intl"
|
||||
],
|
||||
[
|
||||
"Ras Al Khaimah",
|
||||
"Sharjah Intl"
|
||||
],
|
||||
[
|
||||
"Fujairah Intl",
|
||||
"Sharjah Intl"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -2,6 +2,7 @@
|
||||
"name": "Caucasus - Full Map",
|
||||
"theater": "Caucasus",
|
||||
"authors": "george",
|
||||
"description": "Full Caucasus Map",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
|
||||
@ -1,184 +1,185 @@
|
||||
{
|
||||
"name": "Syria - Full Map",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ramat David",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -151000,
|
||||
"y": -106000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -131000,
|
||||
"y": -161000,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Syria - Full Map",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ramat David",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -151000,
|
||||
"y": -106000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -131000,
|
||||
"y": -161000,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Qusayr",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Rene Mouawad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hama",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bassel Al-Assad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Minakh",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hatay",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"King Hussein Air College",
|
||||
"Ramat David"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Qusayr",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Rene Mouawad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hama",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bassel Al-Assad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Minakh",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hatay",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"King Hussein Air College",
|
||||
"Ramat David"
|
||||
],
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Khalkhalah"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Al-Dumayr"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Palmyra"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Rene Mouawad"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Rene Mouawad"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hatay"
|
||||
],
|
||||
[
|
||||
"Palmyra",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Jirah"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Hatay",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Incirlik",
|
||||
"Minakh"
|
||||
]
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Khalkhalah"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Al-Dumayr"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Palmyra"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Rene Mouawad"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Rene Mouawad"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hatay"
|
||||
],
|
||||
[
|
||||
"Palmyra",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Jirah"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Hatay",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Incirlik",
|
||||
"Minakh"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,82 +1,83 @@
|
||||
{
|
||||
"name": "Syria - Golan heights battle",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ramat David",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -280000,
|
||||
"y": -238000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -237000,
|
||||
"y": -89800,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Syria - Golan heights battle",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ramat David",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -280000,
|
||||
"y": -238000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -237000,
|
||||
"y": -89800,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Marj Ruhayyil",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mezzeh",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Ramat David"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Marj Ruhayyil",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mezzeh",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Ramat David"
|
||||
],
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Marj Ruhayyil"
|
||||
],
|
||||
[
|
||||
"Marj Ruhayyil",
|
||||
"Mezzeh"
|
||||
],
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Marj Ruhayyil"
|
||||
]
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Marj Ruhayyil"
|
||||
],
|
||||
[
|
||||
"Marj Ruhayyil",
|
||||
"Mezzeh"
|
||||
],
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Marj Ruhayyil"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,83 +1,84 @@
|
||||
{
|
||||
"name": "Syria - Inherent Resolve",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -210000,
|
||||
"y": -200000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -131000,
|
||||
"y": -161000,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Syria - Inherent Resolve",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "King Hussein Air College",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -210000,
|
||||
"y": -200000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -131000,
|
||||
"y": -161000,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khalkhalah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Incirlik",
|
||||
"Incirlik"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khalkhalah",
|
||||
"King Hussein Air College"
|
||||
],
|
||||
[
|
||||
"Incirlik",
|
||||
"Incirlik"
|
||||
],
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Palmyra"
|
||||
],
|
||||
[
|
||||
"Palmyra",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
]
|
||||
[
|
||||
"Khalkhalah",
|
||||
"Palmyra"
|
||||
],
|
||||
[
|
||||
"Palmyra",
|
||||
"Tabqa"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,86 +1,87 @@
|
||||
{
|
||||
"name": "Syria - Invasion from Turkey",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hatay",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 133000,
|
||||
"y": -54000
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": 155000,
|
||||
"y": -19000
|
||||
}
|
||||
"name": "Syria - Invasion from Turkey",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Incirlik",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hatay",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 133000,
|
||||
"y": -54000
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": 155000,
|
||||
"y": -19000
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Minakh",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kuweires",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hatay",
|
||||
"Minakh"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Minakh",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kuweires",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jirah",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tabqa",
|
||||
"size": 1000,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Aleppo",
|
||||
"Minakh"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Hatay",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Minakh"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Kuweires"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Kuweires"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
]
|
||||
[
|
||||
"Aleppo",
|
||||
"Kuweires"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Kuweires"
|
||||
],
|
||||
[
|
||||
"Jirah",
|
||||
"Tabqa"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,142 +1,143 @@
|
||||
{
|
||||
"name": "Persian Gulf - Invasion of Iran",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ras Al Khaimah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khasab",
|
||||
"size": 600,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Qeshm Island",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135,
|
||||
180
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Havadarya",
|
||||
"radials": [
|
||||
225,
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Abbas Intl",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 59514.324335475,
|
||||
"y": 28165.517980635
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -27500.813952358,
|
||||
"y": -147000.65947136
|
||||
}
|
||||
"name": "Persian Gulf - Invasion of Iran",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Ras Al Khaimah",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Khasab",
|
||||
"size": 600,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Qeshm Island",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135,
|
||||
180
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Havadarya",
|
||||
"radials": [
|
||||
225,
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Abbas Intl",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 59514.324335475,
|
||||
"y": 28165.517980635
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -27500.813952358,
|
||||
"y": -147000.65947136
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Lengeh",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Shiraz International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jiroft Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kerman Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lar Airbase",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khasab",
|
||||
"Ras Al Khaimah"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Lengeh",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Shiraz International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jiroft Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kerman Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lar Airbase",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
}
|
||||
[
|
||||
"Bandar Lengeh",
|
||||
"Lar Airbase"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Khasab",
|
||||
"Ras Al Khaimah"
|
||||
],
|
||||
[
|
||||
"Bandar Lengeh",
|
||||
"Lar Airbase"
|
||||
],
|
||||
[
|
||||
"Havadarya",
|
||||
"Lar Airbase"
|
||||
],
|
||||
[
|
||||
"Bandar Abbas Intl",
|
||||
"Havadarya"
|
||||
],
|
||||
[
|
||||
"Bandar Abbas Intl",
|
||||
"Jiroft Airport"
|
||||
],
|
||||
[
|
||||
"Lar Airbase",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Jiroft Airport",
|
||||
"Kerman Airport"
|
||||
],
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Lar Airbase"
|
||||
]
|
||||
[
|
||||
"Havadarya",
|
||||
"Lar Airbase"
|
||||
],
|
||||
[
|
||||
"Bandar Abbas Intl",
|
||||
"Havadarya"
|
||||
],
|
||||
[
|
||||
"Bandar Abbas Intl",
|
||||
"Jiroft Airport"
|
||||
],
|
||||
[
|
||||
"Lar Airbase",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Jiroft Airport",
|
||||
"Kerman Airport"
|
||||
],
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Lar Airbase"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,76 +1,77 @@
|
||||
{
|
||||
"name": "Persian Gulf - Invasion of Iran [Lite]",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Lengeh",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 72000.324335475,
|
||||
"y": -376000
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -27500.813952358,
|
||||
"y": -147000.65947136
|
||||
}
|
||||
"name": "Persian Gulf - Invasion of Iran [Lite]",
|
||||
"theater": "Persian Gulf",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bandar Lengeh",
|
||||
"radials": [
|
||||
270,
|
||||
315,
|
||||
0,
|
||||
45
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 72000.324335475,
|
||||
"y": -376000
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -27500.813952358,
|
||||
"y": -147000.65947136
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Shiraz International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jiroft Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kerman Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lar Airbase",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Bandar Lengeh",
|
||||
"Lar Airbase"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Shiraz International Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Jiroft Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kerman Airport",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lar Airbase",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
}
|
||||
[
|
||||
"Lar Airbase",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Bandar Lengeh",
|
||||
"Lar Airbase"
|
||||
],
|
||||
[
|
||||
"Lar Airbase",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Jiroft Airport",
|
||||
"Kerman Airport"
|
||||
]
|
||||
[
|
||||
"Kerman Airport",
|
||||
"Shiraz International Airport"
|
||||
],
|
||||
[
|
||||
"Jiroft Airport",
|
||||
"Kerman Airport"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,84 +1,85 @@
|
||||
{
|
||||
"name": "Normandy - Normandy",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Chailey",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Needs Oar Point",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Deux Jumeaux",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
"name": "Normandy - Normandy",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Chailey",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Needs Oar Point",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Deux Jumeaux",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lignerolles",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lessay",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Carpiquet",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maupertus",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Evreux",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Chailey",
|
||||
"Needs Oar Point"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lignerolles",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lessay",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Carpiquet",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maupertus",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Evreux",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Deux Jumeaux",
|
||||
"Lignerolles"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Chailey",
|
||||
"Needs Oar Point"
|
||||
],
|
||||
[
|
||||
"Deux Jumeaux",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Lessay",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Lessay",
|
||||
"Maupertus"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Evreux"
|
||||
]
|
||||
[
|
||||
"Lessay",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Lessay",
|
||||
"Maupertus"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Evreux"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,54 +1,55 @@
|
||||
{
|
||||
"name": "Normandy - Normandy Small",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Needs Oar Point",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Deux Jumeaux",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
"name": "Normandy - Normandy Small",
|
||||
"theater": "Normandy",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Needs Oar Point",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Deux Jumeaux",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lignerolles",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Carpiquet",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Evreux",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Deux Jumeaux",
|
||||
"Lignerolles"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lignerolles",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Carpiquet",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Evreux",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Carpiquet",
|
||||
"Lignerolles"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Deux Jumeaux",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Lignerolles"
|
||||
],
|
||||
[
|
||||
"Carpiquet",
|
||||
"Evreux"
|
||||
]
|
||||
[
|
||||
"Carpiquet",
|
||||
"Evreux"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,100 +1,101 @@
|
||||
{
|
||||
"name": "Caucasus - North Caucasus",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kutaisi",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Vaziani",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -285810.6875,
|
||||
"y": 496399.1875,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -326050.6875,
|
||||
"y": 519452.1875,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Caucasus - North Caucasus",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kutaisi",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Vaziani",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -285810.6875,
|
||||
"y": 496399.1875,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -326050.6875,
|
||||
"y": 519452.1875,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Beslan",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Nalchik",
|
||||
"size": 1000,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mozdok",
|
||||
"size": 2000,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mineralnye Vody",
|
||||
"size": 2000,
|
||||
"importance": 1.3
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maykop-Khanskaya",
|
||||
"size": 3000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Kutaisi",
|
||||
"Vaziani"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Beslan",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Nalchik",
|
||||
"size": 1000,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mozdok",
|
||||
"size": 2000,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mineralnye Vody",
|
||||
"size": 2000,
|
||||
"importance": 1.3
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maykop-Khanskaya",
|
||||
"size": 3000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Beslan",
|
||||
"Vaziani"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Kutaisi",
|
||||
"Vaziani"
|
||||
],
|
||||
[
|
||||
"Beslan",
|
||||
"Vaziani"
|
||||
],
|
||||
[
|
||||
"Beslan",
|
||||
"Mozdok"
|
||||
],
|
||||
[
|
||||
"Beslan",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mozdok",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Mozdok"
|
||||
],
|
||||
[
|
||||
"Maykop-Khanskaya",
|
||||
"Mineralnye Vody"
|
||||
]
|
||||
[
|
||||
"Beslan",
|
||||
"Mozdok"
|
||||
],
|
||||
[
|
||||
"Beslan",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mozdok",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Nalchik"
|
||||
],
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Mozdok"
|
||||
],
|
||||
[
|
||||
"Maykop-Khanskaya",
|
||||
"Mineralnye Vody"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,72 +1,73 @@
|
||||
{
|
||||
"name": "Nevada - North Nevada",
|
||||
"theater": "Nevada",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Nellis AFB",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
}
|
||||
"name": "Nevada - North Nevada",
|
||||
"theater": "Nevada",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Nellis AFB",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tonopah Test Range Airfield",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lincoln County",
|
||||
"size": 600,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Groom Lake AFB",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Creech AFB",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mesquite",
|
||||
"size": 1000,
|
||||
"importance": 1.3
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Lincoln County",
|
||||
"Tonopah Test Range Airfield"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Tonopah Test Range Airfield",
|
||||
"size": 600,
|
||||
"importance": 1,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Lincoln County",
|
||||
"size": 600,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Groom Lake AFB",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Creech AFB",
|
||||
"size": 2000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mesquite",
|
||||
"size": 1000,
|
||||
"importance": 1.3
|
||||
}
|
||||
[
|
||||
"Groom Lake AFB",
|
||||
"Tonopah Test Range Airfield"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Lincoln County",
|
||||
"Tonopah Test Range Airfield"
|
||||
],
|
||||
[
|
||||
"Groom Lake AFB",
|
||||
"Tonopah Test Range Airfield"
|
||||
],
|
||||
[
|
||||
"Lincoln County",
|
||||
"Mesquite"
|
||||
],
|
||||
[
|
||||
"Groom Lake AFB",
|
||||
"Mesquite"
|
||||
],
|
||||
[
|
||||
"Creech AFB",
|
||||
"Groom Lake AFB"
|
||||
],
|
||||
[
|
||||
"Creech AFB",
|
||||
"Nellis AFB"
|
||||
]
|
||||
[
|
||||
"Lincoln County",
|
||||
"Mesquite"
|
||||
],
|
||||
[
|
||||
"Groom Lake AFB",
|
||||
"Mesquite"
|
||||
],
|
||||
[
|
||||
"Creech AFB",
|
||||
"Groom Lake AFB"
|
||||
],
|
||||
[
|
||||
"Creech AFB",
|
||||
"Nellis AFB"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,38 +1,39 @@
|
||||
{
|
||||
"name": "Caucasus - Russia Small",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mozdok",
|
||||
"size": 2000,
|
||||
"importance": 1.1
|
||||
}
|
||||
"name": "Caucasus - Russia Small",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mozdok",
|
||||
"size": 2000,
|
||||
"importance": 1.1
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mineralnye Vody",
|
||||
"size": 2000,
|
||||
"importance": 1.3
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maykop-Khanskaya",
|
||||
"size": 3000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Mozdok"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Mineralnye Vody",
|
||||
"size": 2000,
|
||||
"importance": 1.3
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Maykop-Khanskaya",
|
||||
"size": 3000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Mineralnye Vody",
|
||||
"Mozdok"
|
||||
],
|
||||
[
|
||||
"Maykop-Khanskaya",
|
||||
"Mineralnye Vody"
|
||||
]
|
||||
[
|
||||
"Maykop-Khanskaya",
|
||||
"Mineralnye Vody"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,92 +1,93 @@
|
||||
{
|
||||
"name": "Syria - Syrian Civil War",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bassel Al-Assad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Marj Ruhayyil",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 18537,
|
||||
"y": -52000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": 116000,
|
||||
"y": -30000,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Syria - Syrian Civil War",
|
||||
"theater": "Syria",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Bassel Al-Assad",
|
||||
"size": 1000,
|
||||
"importance": 1.4
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Marj Ruhayyil",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": 18537,
|
||||
"y": -52000,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": 116000,
|
||||
"y": -30000,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hama",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Qusayr",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hama"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Hama",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Aleppo",
|
||||
"size": 1000,
|
||||
"importance": 1.2,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al Qusayr",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Palmyra",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Al-Dumayr",
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
}
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Marj Ruhayyil"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Bassel Al-Assad",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al-Dumayr",
|
||||
"Marj Ruhayyil"
|
||||
],
|
||||
[
|
||||
"Aleppo",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Al-Dumayr"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Palmyra"
|
||||
]
|
||||
[
|
||||
"Aleppo",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Hama"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Al-Dumayr"
|
||||
],
|
||||
[
|
||||
"Al Qusayr",
|
||||
"Palmyra"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -1,112 +1,113 @@
|
||||
{
|
||||
"name": "Caucasus - Western Georgia",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kobuleti",
|
||||
"radials": [
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135,
|
||||
180,
|
||||
225,
|
||||
315
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -285810.6875,
|
||||
"y": 496399.1875,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -326050.6875,
|
||||
"y": 519452.1875,
|
||||
"captured_invert": true
|
||||
}
|
||||
"name": "Caucasus - Western Georgia",
|
||||
"theater": "Caucasus",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"player_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kobuleti",
|
||||
"radials": [
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135,
|
||||
180,
|
||||
225,
|
||||
315
|
||||
],
|
||||
"size": 600,
|
||||
"importance": 1.1
|
||||
},
|
||||
{
|
||||
"type": "carrier",
|
||||
"id": 1001,
|
||||
"x": -285810.6875,
|
||||
"y": 496399.1875,
|
||||
"captured_invert": true
|
||||
},
|
||||
{
|
||||
"type": "lha",
|
||||
"id": 1002,
|
||||
"x": -326050.6875,
|
||||
"y": 519452.1875,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kutaisi",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Senaki-Kolkhi",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sukhumi-Babushara",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Gudauta",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sochi-Adler",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Kutaisi",
|
||||
"Senaki-Kolkhi"
|
||||
],
|
||||
"enemy_points": [
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Kutaisi",
|
||||
"size": 600,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Senaki-Kolkhi",
|
||||
"size": 1000,
|
||||
"importance": 1
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sukhumi-Babushara",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Gudauta",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 1000,
|
||||
"importance": 1.2
|
||||
},
|
||||
{
|
||||
"type": "airbase",
|
||||
"id": "Sochi-Adler",
|
||||
"radials": [
|
||||
315,
|
||||
0,
|
||||
45,
|
||||
90,
|
||||
135
|
||||
],
|
||||
"size": 2000,
|
||||
"importance": 1.4,
|
||||
"captured_invert": true
|
||||
}
|
||||
[
|
||||
"Kobuleti",
|
||||
"Senaki-Kolkhi"
|
||||
],
|
||||
"links": [
|
||||
[
|
||||
"Kutaisi",
|
||||
"Senaki-Kolkhi"
|
||||
],
|
||||
[
|
||||
"Kobuleti",
|
||||
"Senaki-Kolkhi"
|
||||
],
|
||||
[
|
||||
"Senaki-Kolkhi",
|
||||
"Sukhumi-Babushara"
|
||||
],
|
||||
[
|
||||
"Gudauta",
|
||||
"Sukhumi-Babushara"
|
||||
],
|
||||
[
|
||||
"Gudauta",
|
||||
"Sochi-Adler"
|
||||
]
|
||||
[
|
||||
"Senaki-Kolkhi",
|
||||
"Sukhumi-Babushara"
|
||||
],
|
||||
[
|
||||
"Gudauta",
|
||||
"Sukhumi-Babushara"
|
||||
],
|
||||
[
|
||||
"Gudauta",
|
||||
"Sochi-Adler"
|
||||
]
|
||||
]
|
||||
}
|
||||
@ -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",
|
||||
@ -55,8 +57,8 @@
|
||||
"Ticonderoga_class"
|
||||
],
|
||||
"requirements": {
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
},
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
},
|
||||
"carrier_names": [
|
||||
"CVN-71 Theodore Roosevelt",
|
||||
"CVN-72 Abraham Lincoln",
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Combined Joint Task Forces Blue",
|
||||
"name": "Bluefor Coldwar (With A4 & MB339)",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_14B",
|
||||
"F_4E",
|
||||
@ -56,8 +58,8 @@
|
||||
"Ticonderoga_class"
|
||||
],
|
||||
"requirements": {
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
},
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
},
|
||||
"carrier_names": [
|
||||
"CVN-71 Theodore Roosevelt",
|
||||
"CVN-72 Abraham Lincoln",
|
||||
|
||||
@ -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": {
|
||||
"frenchpack V3.5": "https://forums.eagle.ru/showthread.php?t=279974"
|
||||
],
|
||||
"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",
|
||||
@ -44,8 +46,8 @@
|
||||
"cruisers": [
|
||||
],
|
||||
"requirements": {
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/",
|
||||
"WW2 Asset Pack": "https://www.digitalcombatsimulator.com/en/products/other/wwii_assets_pack/"
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/",
|
||||
"WW2 Asset Pack": "https://www.digitalcombatsimulator.com/en/products/other/wwii_assets_pack/"
|
||||
},
|
||||
"carrier_names": [
|
||||
],
|
||||
|
||||
@ -1,6 +1,8 @@
|
||||
{
|
||||
"country": "Israel",
|
||||
"name": "Israel 1982",
|
||||
"authors": "Khopa",
|
||||
"description": "",
|
||||
"aircrafts": [
|
||||
"F_4E",
|
||||
"A_4E_C",
|
||||
@ -47,7 +49,7 @@
|
||||
"cruisers": [
|
||||
],
|
||||
"requirements": {
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||
},
|
||||
"carrier_names": [
|
||||
],
|
||||
|
||||
@ -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