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
|
|
||||||
}
|
|
||||||
@ -1,87 +1,88 @@
|
|||||||
{
|
{
|
||||||
"name": "The Channel - Battle of Britain",
|
"name": "The Channel - Battle of Britain",
|
||||||
"theater": "The Channel",
|
"theater": "The Channel",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Hawkinge",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Hawkinge",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Lympne",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Lympne",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Manston",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Manston",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "High Halden",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "High Halden",
|
||||||
"importance": 1
|
"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": [
|
[
|
||||||
{
|
"Hawkinge",
|
||||||
"type": "airbase",
|
"Manston"
|
||||||
"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": [
|
[
|
||||||
[
|
"High Halden",
|
||||||
"Hawkinge",
|
"Lympne"
|
||||||
"Lympne"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Dunkirk Mardyck",
|
||||||
"Hawkinge",
|
"Saint Omer Longuenesse"
|
||||||
"Manston"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Merville Calonne",
|
||||||
"High Halden",
|
"Saint Omer Longuenesse"
|
||||||
"Lympne"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Abbeville Drucat",
|
||||||
"Dunkirk Mardyck",
|
"Saint Omer Longuenesse"
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Merville Calonne",
|
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Abbeville Drucat",
|
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,62 +1,63 @@
|
|||||||
{
|
{
|
||||||
"name": "Persian Gulf - Desert War",
|
"name": "Persian Gulf - Desert War",
|
||||||
"theater": "Persian Gulf",
|
"theater": "Persian Gulf",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Liwa Airbase",
|
"type": "airbase",
|
||||||
"size": 2000,
|
"id": "Liwa Airbase",
|
||||||
"importance": 1.2
|
"size": 2000,
|
||||||
},
|
"importance": 1.2
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -164000,
|
"id": 1002,
|
||||||
"y": -257000,
|
"x": -164000,
|
||||||
"captured_invert": true
|
"y": -257000,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -124000,
|
"id": 1001,
|
||||||
"y": -303000,
|
"x": -124000,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Al Ain International Airport",
|
||||||
"type": "airbase",
|
"Al Maktoum Intl"
|
||||||
"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 Maktoum Intl",
|
||||||
"Al Ain International Airport",
|
"Al Minhad AB"
|
||||||
"Liwa Airbase"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Al Ain International Airport",
|
|
||||||
"Al Maktoum Intl"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Al Maktoum Intl",
|
|
||||||
"Al Minhad AB"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,78 +1,79 @@
|
|||||||
{
|
{
|
||||||
"name": "The Channel - Dunkirk",
|
"name": "The Channel - Dunkirk",
|
||||||
"theater": "The Channel",
|
"theater": "The Channel",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Hawkinge",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Hawkinge",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Lympne",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Lympne",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Manston",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Manston",
|
||||||
"importance": 1,
|
"size": 600,
|
||||||
"captured_invert": true
|
"importance": 1,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Dunkirk Mardyck",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Dunkirk Mardyck",
|
||||||
"importance": 1,
|
"size": 600,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Hawkinge",
|
||||||
"type": "airbase",
|
"Manston"
|
||||||
"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": [
|
[
|
||||||
[
|
"Dunkirk Mardyck",
|
||||||
"Hawkinge",
|
"Saint Omer Longuenesse"
|
||||||
"Lympne"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Merville Calonne",
|
||||||
"Hawkinge",
|
"Saint Omer Longuenesse"
|
||||||
"Manston"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Abbeville Drucat",
|
||||||
"Dunkirk Mardyck",
|
"Saint Omer Longuenesse"
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Merville Calonne",
|
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Abbeville Drucat",
|
|
||||||
"Saint Omer Longuenesse"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,107 +1,108 @@
|
|||||||
{
|
{
|
||||||
"name": "Persian Gulf - Emirates",
|
"name": "Persian Gulf - Emirates",
|
||||||
"theater": "Persian Gulf",
|
"theater": "Persian Gulf",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Fujairah Intl",
|
"type": "airbase",
|
||||||
"radials": [
|
"id": "Fujairah Intl",
|
||||||
180,
|
"radials": [
|
||||||
225,
|
180,
|
||||||
270,
|
225,
|
||||||
315,
|
270,
|
||||||
0
|
315,
|
||||||
],
|
0
|
||||||
"size": 1000,
|
],
|
||||||
"importance": 1,
|
"size": 1000,
|
||||||
"captured_invert": true
|
"importance": 1,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -79770,
|
"id": 1002,
|
||||||
"y": 49430,
|
"x": -79770,
|
||||||
"captured_invert": true
|
"y": 49430,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -61770,
|
"id": 1001,
|
||||||
"y": 69039,
|
"x": -61770,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Al Dhafra AB",
|
||||||
"type": "airbase",
|
"Al Maktoum Intl"
|
||||||
"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 Ain International Airport",
|
"Fujairah Intl"
|
||||||
"Al Dhafra AB"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Ain International Airport",
|
||||||
"Al Dhafra AB",
|
"Al Maktoum Intl"
|
||||||
"Al Maktoum Intl"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Maktoum Intl",
|
||||||
"Al Ain International Airport",
|
"Al Minhad AB"
|
||||||
"Fujairah Intl"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Minhad AB",
|
||||||
"Al Ain International Airport",
|
"Sharjah Intl"
|
||||||
"Al Maktoum Intl"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Ras Al Khaimah",
|
||||||
"Al Maktoum Intl",
|
"Sharjah Intl"
|
||||||
"Al Minhad AB"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Fujairah Intl",
|
||||||
"Al Minhad AB",
|
"Sharjah Intl"
|
||||||
"Sharjah Intl"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Ras Al Khaimah",
|
|
||||||
"Sharjah Intl"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Fujairah Intl",
|
|
||||||
"Sharjah Intl"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -2,6 +2,7 @@
|
|||||||
"name": "Caucasus - Full Map",
|
"name": "Caucasus - Full Map",
|
||||||
"theater": "Caucasus",
|
"theater": "Caucasus",
|
||||||
"authors": "george",
|
"authors": "george",
|
||||||
|
"description": "Full Caucasus Map",
|
||||||
"player_points": [
|
"player_points": [
|
||||||
{
|
{
|
||||||
"type": "airbase",
|
"type": "airbase",
|
||||||
|
|||||||
@ -1,184 +1,185 @@
|
|||||||
{
|
{
|
||||||
"name": "Syria - Full Map",
|
"name": "Syria - Full Map",
|
||||||
"theater": "Syria",
|
"theater": "Syria",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Ramat David",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Ramat David",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -151000,
|
"id": 1001,
|
||||||
"y": -106000,
|
"x": -151000,
|
||||||
"captured_invert": true
|
"y": -106000,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -131000,
|
"id": 1002,
|
||||||
"y": -161000,
|
"x": -131000,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Khalkhalah",
|
||||||
"type": "airbase",
|
"King Hussein Air College"
|
||||||
"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": [
|
[
|
||||||
[
|
"Al-Dumayr",
|
||||||
"King Hussein Air College",
|
"Khalkhalah"
|
||||||
"Ramat David"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Khalkhalah",
|
"Al-Dumayr"
|
||||||
"King Hussein Air College"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Al-Dumayr",
|
"Hama"
|
||||||
"Khalkhalah"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Al Qusayr",
|
"Palmyra"
|
||||||
"Al-Dumayr"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Al Qusayr",
|
"Rene Mouawad"
|
||||||
"Hama"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Bassel Al-Assad",
|
||||||
"Al Qusayr",
|
"Rene Mouawad"
|
||||||
"Palmyra"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Aleppo",
|
||||||
"Al Qusayr",
|
"Hama"
|
||||||
"Rene Mouawad"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Bassel Al-Assad",
|
||||||
"Bassel Al-Assad",
|
"Hama"
|
||||||
"Rene Mouawad"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Bassel Al-Assad",
|
||||||
"Aleppo",
|
"Hatay"
|
||||||
"Hama"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Palmyra",
|
||||||
"Bassel Al-Assad",
|
"Tabqa"
|
||||||
"Hama"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jirah",
|
||||||
"Bassel Al-Assad",
|
"Tabqa"
|
||||||
"Hatay"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Aleppo",
|
||||||
"Palmyra",
|
"Jirah"
|
||||||
"Tabqa"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Aleppo",
|
||||||
"Jirah",
|
"Minakh"
|
||||||
"Tabqa"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Hatay",
|
||||||
"Aleppo",
|
"Minakh"
|
||||||
"Jirah"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Incirlik",
|
||||||
"Aleppo",
|
"Minakh"
|
||||||
"Minakh"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Hatay",
|
|
||||||
"Minakh"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Incirlik",
|
|
||||||
"Minakh"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,82 +1,83 @@
|
|||||||
{
|
{
|
||||||
"name": "Syria - Golan heights battle",
|
"name": "Syria - Golan heights battle",
|
||||||
"theater": "Syria",
|
"theater": "Syria",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Ramat David",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Ramat David",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -280000,
|
"id": 1001,
|
||||||
"y": -238000,
|
"x": -280000,
|
||||||
"captured_invert": true
|
"y": -238000,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -237000,
|
"id": 1002,
|
||||||
"y": -89800,
|
"x": -237000,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Khalkhalah",
|
||||||
"type": "airbase",
|
"King Hussein Air College"
|
||||||
"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",
|
||||||
"Khalkhalah",
|
"Marj Ruhayyil"
|
||||||
"Ramat David"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Marj Ruhayyil",
|
||||||
"Khalkhalah",
|
"Mezzeh"
|
||||||
"King Hussein Air College"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al-Dumayr",
|
||||||
"Khalkhalah",
|
"Marj Ruhayyil"
|
||||||
"Marj Ruhayyil"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Marj Ruhayyil",
|
|
||||||
"Mezzeh"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Al-Dumayr",
|
|
||||||
"Marj Ruhayyil"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,83 +1,84 @@
|
|||||||
{
|
{
|
||||||
"name": "Syria - Inherent Resolve",
|
"name": "Syria - Inherent Resolve",
|
||||||
"theater": "Syria",
|
"theater": "Syria",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "King Hussein Air College",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "King Hussein Air College",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Incirlik",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Incirlik",
|
||||||
"importance": 1.4,
|
"size": 1000,
|
||||||
"captured_invert": true
|
"importance": 1.4,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -210000,
|
"id": 1001,
|
||||||
"y": -200000,
|
"x": -210000,
|
||||||
"captured_invert": true
|
"y": -200000,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -131000,
|
"id": 1002,
|
||||||
"y": -161000,
|
"x": -131000,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Incirlik",
|
||||||
"type": "airbase",
|
"Incirlik"
|
||||||
"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",
|
||||||
"Khalkhalah",
|
"Palmyra"
|
||||||
"King Hussein Air College"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Palmyra",
|
||||||
"Incirlik",
|
"Tabqa"
|
||||||
"Incirlik"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jirah",
|
||||||
"Khalkhalah",
|
"Tabqa"
|
||||||
"Palmyra"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Palmyra",
|
|
||||||
"Tabqa"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Jirah",
|
|
||||||
"Tabqa"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,86 +1,87 @@
|
|||||||
{
|
{
|
||||||
"name": "Syria - Invasion from Turkey",
|
"name": "Syria - Invasion from Turkey",
|
||||||
"theater": "Syria",
|
"theater": "Syria",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Incirlik",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Incirlik",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Hatay",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Hatay",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": 133000,
|
"id": 1001,
|
||||||
"y": -54000
|
"x": 133000,
|
||||||
},
|
"y": -54000
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": 155000,
|
"id": 1002,
|
||||||
"y": -19000
|
"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": [
|
[
|
||||||
{
|
"Aleppo",
|
||||||
"type": "airbase",
|
"Minakh"
|
||||||
"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": [
|
[
|
||||||
[
|
"Aleppo",
|
||||||
"Hatay",
|
"Kuweires"
|
||||||
"Minakh"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jirah",
|
||||||
"Aleppo",
|
"Kuweires"
|
||||||
"Minakh"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jirah",
|
||||||
"Aleppo",
|
"Tabqa"
|
||||||
"Kuweires"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Jirah",
|
|
||||||
"Kuweires"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Jirah",
|
|
||||||
"Tabqa"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,142 +1,143 @@
|
|||||||
{
|
{
|
||||||
"name": "Persian Gulf - Invasion of Iran",
|
"name": "Persian Gulf - Invasion of Iran",
|
||||||
"theater": "Persian Gulf",
|
"theater": "Persian Gulf",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Ras Al Khaimah",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Ras Al Khaimah",
|
||||||
"importance": 1.2
|
"size": 1000,
|
||||||
},
|
"importance": 1.2
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Khasab",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Khasab",
|
||||||
"importance": 1.2
|
"size": 600,
|
||||||
},
|
"importance": 1.2
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Qeshm Island",
|
"type": "airbase",
|
||||||
"radials": [
|
"id": "Qeshm Island",
|
||||||
270,
|
"radials": [
|
||||||
315,
|
270,
|
||||||
0,
|
315,
|
||||||
45,
|
0,
|
||||||
90,
|
45,
|
||||||
135,
|
90,
|
||||||
180
|
135,
|
||||||
],
|
180
|
||||||
"size": 600,
|
],
|
||||||
"importance": 1.1
|
"size": 600,
|
||||||
},
|
"importance": 1.1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Havadarya",
|
"type": "airbase",
|
||||||
"radials": [
|
"id": "Havadarya",
|
||||||
225,
|
"radials": [
|
||||||
270,
|
225,
|
||||||
315,
|
270,
|
||||||
0,
|
315,
|
||||||
45
|
0,
|
||||||
],
|
45
|
||||||
"size": 1000,
|
],
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Bandar Abbas Intl",
|
"type": "airbase",
|
||||||
"size": 2000,
|
"id": "Bandar Abbas Intl",
|
||||||
"importance": 1.4
|
"size": 2000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": 59514.324335475,
|
"id": 1001,
|
||||||
"y": 28165.517980635
|
"x": 59514.324335475,
|
||||||
},
|
"y": 28165.517980635
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -27500.813952358,
|
"id": 1002,
|
||||||
"y": -147000.65947136
|
"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": [
|
[
|
||||||
{
|
"Bandar Lengeh",
|
||||||
"type": "airbase",
|
"Lar 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": [
|
[
|
||||||
[
|
"Havadarya",
|
||||||
"Khasab",
|
"Lar Airbase"
|
||||||
"Ras Al Khaimah"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Bandar Abbas Intl",
|
||||||
"Bandar Lengeh",
|
"Havadarya"
|
||||||
"Lar Airbase"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Bandar Abbas Intl",
|
||||||
"Havadarya",
|
"Jiroft Airport"
|
||||||
"Lar Airbase"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Lar Airbase",
|
||||||
"Bandar Abbas Intl",
|
"Shiraz International Airport"
|
||||||
"Havadarya"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Kerman Airport",
|
||||||
"Bandar Abbas Intl",
|
"Shiraz International Airport"
|
||||||
"Jiroft Airport"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jiroft Airport",
|
||||||
"Lar Airbase",
|
"Kerman Airport"
|
||||||
"Shiraz International Airport"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Kerman Airport",
|
||||||
"Kerman Airport",
|
"Lar Airbase"
|
||||||
"Shiraz International Airport"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Jiroft Airport",
|
|
||||||
"Kerman Airport"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Kerman Airport",
|
|
||||||
"Lar Airbase"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,76 +1,77 @@
|
|||||||
{
|
{
|
||||||
"name": "Persian Gulf - Invasion of Iran [Lite]",
|
"name": "Persian Gulf - Invasion of Iran [Lite]",
|
||||||
"theater": "Persian Gulf",
|
"theater": "Persian Gulf",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Bandar Lengeh",
|
"type": "airbase",
|
||||||
"radials": [
|
"id": "Bandar Lengeh",
|
||||||
270,
|
"radials": [
|
||||||
315,
|
270,
|
||||||
0,
|
315,
|
||||||
45
|
0,
|
||||||
],
|
45
|
||||||
"size": 600,
|
],
|
||||||
"importance": 1.4
|
"size": 600,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": 72000.324335475,
|
"id": 1001,
|
||||||
"y": -376000
|
"x": 72000.324335475,
|
||||||
},
|
"y": -376000
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -27500.813952358,
|
"id": 1002,
|
||||||
"y": -147000.65947136
|
"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": [
|
[
|
||||||
{
|
"Lar Airbase",
|
||||||
"type": "airbase",
|
"Shiraz International Airport"
|
||||||
"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": [
|
[
|
||||||
[
|
"Kerman Airport",
|
||||||
"Bandar Lengeh",
|
"Shiraz International Airport"
|
||||||
"Lar Airbase"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Jiroft Airport",
|
||||||
"Lar Airbase",
|
"Kerman Airport"
|
||||||
"Shiraz International Airport"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Kerman Airport",
|
|
||||||
"Shiraz International Airport"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Jiroft Airport",
|
|
||||||
"Kerman Airport"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,84 +1,85 @@
|
|||||||
{
|
{
|
||||||
"name": "Normandy - Normandy",
|
"name": "Normandy - Normandy",
|
||||||
"theater": "Normandy",
|
"theater": "Normandy",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Chailey",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Chailey",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Needs Oar Point",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Needs Oar Point",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Deux Jumeaux",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Deux Jumeaux",
|
||||||
"importance": 1
|
"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": [
|
[
|
||||||
{
|
"Deux Jumeaux",
|
||||||
"type": "airbase",
|
"Lignerolles"
|
||||||
"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": [
|
[
|
||||||
[
|
"Lessay",
|
||||||
"Chailey",
|
"Lignerolles"
|
||||||
"Needs Oar Point"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Carpiquet",
|
||||||
"Deux Jumeaux",
|
"Lignerolles"
|
||||||
"Lignerolles"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Lessay",
|
||||||
"Lessay",
|
"Maupertus"
|
||||||
"Lignerolles"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Carpiquet",
|
||||||
"Carpiquet",
|
"Evreux"
|
||||||
"Lignerolles"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Lessay",
|
|
||||||
"Maupertus"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Carpiquet",
|
|
||||||
"Evreux"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,54 +1,55 @@
|
|||||||
{
|
{
|
||||||
"name": "Normandy - Normandy Small",
|
"name": "Normandy - Normandy Small",
|
||||||
"theater": "Normandy",
|
"theater": "Normandy",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Needs Oar Point",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Needs Oar Point",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Deux Jumeaux",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Deux Jumeaux",
|
||||||
"importance": 1
|
"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": [
|
[
|
||||||
{
|
"Carpiquet",
|
||||||
"type": "airbase",
|
"Lignerolles"
|
||||||
"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": [
|
[
|
||||||
[
|
"Carpiquet",
|
||||||
"Deux Jumeaux",
|
"Evreux"
|
||||||
"Lignerolles"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Carpiquet",
|
|
||||||
"Lignerolles"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Carpiquet",
|
|
||||||
"Evreux"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,100 +1,101 @@
|
|||||||
{
|
{
|
||||||
"name": "Caucasus - North Caucasus",
|
"name": "Caucasus - North Caucasus",
|
||||||
"theater": "Caucasus",
|
"theater": "Caucasus",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Kutaisi",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Kutaisi",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Vaziani",
|
"type": "airbase",
|
||||||
"size": 600,
|
"id": "Vaziani",
|
||||||
"importance": 1
|
"size": 600,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -285810.6875,
|
"id": 1001,
|
||||||
"y": 496399.1875,
|
"x": -285810.6875,
|
||||||
"captured_invert": true
|
"y": 496399.1875,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -326050.6875,
|
"id": 1002,
|
||||||
"y": 519452.1875,
|
"x": -326050.6875,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Beslan",
|
||||||
"type": "airbase",
|
"Vaziani"
|
||||||
"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": [
|
[
|
||||||
[
|
"Beslan",
|
||||||
"Kutaisi",
|
"Mozdok"
|
||||||
"Vaziani"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Beslan",
|
||||||
"Beslan",
|
"Nalchik"
|
||||||
"Vaziani"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Mozdok",
|
||||||
"Beslan",
|
"Nalchik"
|
||||||
"Mozdok"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Mineralnye Vody",
|
||||||
"Beslan",
|
"Nalchik"
|
||||||
"Nalchik"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Mineralnye Vody",
|
||||||
"Mozdok",
|
"Mozdok"
|
||||||
"Nalchik"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Maykop-Khanskaya",
|
||||||
"Mineralnye Vody",
|
"Mineralnye Vody"
|
||||||
"Nalchik"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Mineralnye Vody",
|
|
||||||
"Mozdok"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Maykop-Khanskaya",
|
|
||||||
"Mineralnye Vody"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,72 +1,73 @@
|
|||||||
{
|
{
|
||||||
"name": "Nevada - North Nevada",
|
"name": "Nevada - North Nevada",
|
||||||
"theater": "Nevada",
|
"theater": "Nevada",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Nellis AFB",
|
"type": "airbase",
|
||||||
"size": 2000,
|
"id": "Nellis AFB",
|
||||||
"importance": 1.4
|
"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": [
|
[
|
||||||
{
|
"Groom Lake AFB",
|
||||||
"type": "airbase",
|
"Tonopah Test Range Airfield"
|
||||||
"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",
|
||||||
"Lincoln County",
|
"Mesquite"
|
||||||
"Tonopah Test Range Airfield"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Groom Lake AFB",
|
||||||
"Groom Lake AFB",
|
"Mesquite"
|
||||||
"Tonopah Test Range Airfield"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Creech AFB",
|
||||||
"Lincoln County",
|
"Groom Lake AFB"
|
||||||
"Mesquite"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Creech AFB",
|
||||||
"Groom Lake AFB",
|
"Nellis AFB"
|
||||||
"Mesquite"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Creech AFB",
|
|
||||||
"Groom Lake AFB"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Creech AFB",
|
|
||||||
"Nellis AFB"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,38 +1,39 @@
|
|||||||
{
|
{
|
||||||
"name": "Caucasus - Russia Small",
|
"name": "Caucasus - Russia Small",
|
||||||
"theater": "Caucasus",
|
"theater": "Caucasus",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Mozdok",
|
"type": "airbase",
|
||||||
"size": 2000,
|
"id": "Mozdok",
|
||||||
"importance": 1.1
|
"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": [
|
[
|
||||||
{
|
"Maykop-Khanskaya",
|
||||||
"type": "airbase",
|
"Mineralnye Vody"
|
||||||
"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"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,92 +1,93 @@
|
|||||||
{
|
{
|
||||||
"name": "Syria - Syrian Civil War",
|
"name": "Syria - Syrian Civil War",
|
||||||
"theater": "Syria",
|
"theater": "Syria",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Bassel Al-Assad",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Bassel Al-Assad",
|
||||||
"importance": 1.4
|
"size": 1000,
|
||||||
},
|
"importance": 1.4
|
||||||
{
|
},
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Marj Ruhayyil",
|
"type": "airbase",
|
||||||
"size": 1000,
|
"id": "Marj Ruhayyil",
|
||||||
"importance": 1
|
"size": 1000,
|
||||||
},
|
"importance": 1
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": 18537,
|
"id": 1001,
|
||||||
"y": -52000,
|
"x": 18537,
|
||||||
"captured_invert": true
|
"y": -52000,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": 116000,
|
"id": 1002,
|
||||||
"y": -30000,
|
"x": 116000,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Al-Dumayr",
|
||||||
"type": "airbase",
|
"Marj Ruhayyil"
|
||||||
"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": [
|
[
|
||||||
[
|
"Aleppo",
|
||||||
"Bassel Al-Assad",
|
"Hama"
|
||||||
"Hama"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Al-Dumayr",
|
"Hama"
|
||||||
"Marj Ruhayyil"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Aleppo",
|
"Al-Dumayr"
|
||||||
"Hama"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Al Qusayr",
|
||||||
"Al Qusayr",
|
"Palmyra"
|
||||||
"Hama"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Al Qusayr",
|
|
||||||
"Al-Dumayr"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Al Qusayr",
|
|
||||||
"Palmyra"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,112 +1,113 @@
|
|||||||
{
|
{
|
||||||
"name": "Caucasus - Western Georgia",
|
"name": "Caucasus - Western Georgia",
|
||||||
"theater": "Caucasus",
|
"theater": "Caucasus",
|
||||||
"authors": "Khopa",
|
"authors": "Khopa",
|
||||||
"player_points": [
|
"description": "",
|
||||||
{
|
"player_points": [
|
||||||
"type": "airbase",
|
{
|
||||||
"id": "Kobuleti",
|
"type": "airbase",
|
||||||
"radials": [
|
"id": "Kobuleti",
|
||||||
0,
|
"radials": [
|
||||||
45,
|
0,
|
||||||
90,
|
45,
|
||||||
135,
|
90,
|
||||||
180,
|
135,
|
||||||
225,
|
180,
|
||||||
315
|
225,
|
||||||
],
|
315
|
||||||
"size": 600,
|
],
|
||||||
"importance": 1.1
|
"size": 600,
|
||||||
},
|
"importance": 1.1
|
||||||
{
|
},
|
||||||
"type": "carrier",
|
{
|
||||||
"id": 1001,
|
"type": "carrier",
|
||||||
"x": -285810.6875,
|
"id": 1001,
|
||||||
"y": 496399.1875,
|
"x": -285810.6875,
|
||||||
"captured_invert": true
|
"y": 496399.1875,
|
||||||
},
|
"captured_invert": true
|
||||||
{
|
},
|
||||||
"type": "lha",
|
{
|
||||||
"id": 1002,
|
"type": "lha",
|
||||||
"x": -326050.6875,
|
"id": 1002,
|
||||||
"y": 519452.1875,
|
"x": -326050.6875,
|
||||||
"captured_invert": true
|
"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": [
|
[
|
||||||
{
|
"Kobuleti",
|
||||||
"type": "airbase",
|
"Senaki-Kolkhi"
|
||||||
"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": [
|
[
|
||||||
[
|
"Senaki-Kolkhi",
|
||||||
"Kutaisi",
|
"Sukhumi-Babushara"
|
||||||
"Senaki-Kolkhi"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Gudauta",
|
||||||
"Kobuleti",
|
"Sukhumi-Babushara"
|
||||||
"Senaki-Kolkhi"
|
],
|
||||||
],
|
[
|
||||||
[
|
"Gudauta",
|
||||||
"Senaki-Kolkhi",
|
"Sochi-Adler"
|
||||||
"Sukhumi-Babushara"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Gudauta",
|
|
||||||
"Sukhumi-Babushara"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"Gudauta",
|
|
||||||
"Sochi-Adler"
|
|
||||||
]
|
|
||||||
]
|
]
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Australia",
|
"country": "Australia",
|
||||||
"name": "Australia 2005",
|
"name": "Australia 2005",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"FA_18C_hornet",
|
"FA_18C_hornet",
|
||||||
"UH_1H",
|
"UH_1H",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Combined Joint Task Forces Blue",
|
"country": "Combined Joint Task Forces Blue",
|
||||||
"name": "Bluefor Coldwar",
|
"name": "Bluefor Coldwar",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_14B",
|
"F_14B",
|
||||||
"F_4E",
|
"F_4E",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Combined Joint Task Forces Blue",
|
"country": "Combined Joint Task Forces Blue",
|
||||||
"name": "Bluefor Coldwar (With A4)",
|
"name": "Bluefor Coldwar (With A4)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_14B",
|
"F_14B",
|
||||||
"F_4E",
|
"F_4E",
|
||||||
@ -55,8 +57,8 @@
|
|||||||
"Ticonderoga_class"
|
"Ticonderoga_class"
|
||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||||
},
|
},
|
||||||
"carrier_names": [
|
"carrier_names": [
|
||||||
"CVN-71 Theodore Roosevelt",
|
"CVN-71 Theodore Roosevelt",
|
||||||
"CVN-72 Abraham Lincoln",
|
"CVN-72 Abraham Lincoln",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Combined Joint Task Forces Blue",
|
"country": "Combined Joint Task Forces Blue",
|
||||||
"name": "Bluefor Coldwar (With A4 & MB339)",
|
"name": "Bluefor Coldwar (With A4 & MB339)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_14B",
|
"F_14B",
|
||||||
"F_4E",
|
"F_4E",
|
||||||
@ -56,8 +58,8 @@
|
|||||||
"Ticonderoga_class"
|
"Ticonderoga_class"
|
||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||||
},
|
},
|
||||||
"carrier_names": [
|
"carrier_names": [
|
||||||
"CVN-71 Theodore Roosevelt",
|
"CVN-71 Theodore Roosevelt",
|
||||||
"CVN-72 Abraham Lincoln",
|
"CVN-72 Abraham Lincoln",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Combined Joint Task Forces Blue",
|
"country": "Combined Joint Task Forces Blue",
|
||||||
"name": "Bluefor Modern",
|
"name": "Bluefor Modern",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_14B",
|
"F_14B",
|
||||||
"F_15C",
|
"F_15C",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Canada",
|
"country": "Canada",
|
||||||
"name": "Canada 2005",
|
"name": "Canada 2005",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"FA_18C_hornet",
|
"FA_18C_hornet",
|
||||||
"UH_1H",
|
"UH_1H",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "China",
|
"country": "China",
|
||||||
"name": "China 2010",
|
"name": "China 2010",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_21Bis",
|
"MiG_21Bis",
|
||||||
"Su_30",
|
"Su_30",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "France",
|
"country": "France",
|
||||||
"name": "France 1995",
|
"name": "France 1995",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"M_2000C",
|
"M_2000C",
|
||||||
"Mirage_2000_5",
|
"Mirage_2000_5",
|
||||||
@ -62,7 +64,8 @@
|
|||||||
"Jeanne d'Arc"
|
"Jeanne d'Arc"
|
||||||
],
|
],
|
||||||
"navy_generators": [
|
"navy_generators": [
|
||||||
"ArleighBurkeGroupGenerator", "OliverHazardPerryGroupGenerator"
|
"ArleighBurkeGroupGenerator",
|
||||||
|
"OliverHazardPerryGroupGenerator"
|
||||||
],
|
],
|
||||||
"has_jtac": true,
|
"has_jtac": true,
|
||||||
"jtac_unit": "MQ_9_Reaper"
|
"jtac_unit": "MQ_9_Reaper"
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "France",
|
"country": "France",
|
||||||
"name": "France 2005 (Modded)",
|
"name": "France 2005 (Modded)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"M_2000C",
|
"M_2000C",
|
||||||
"Mirage_2000_5",
|
"Mirage_2000_5",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Third Reich",
|
"country": "Third Reich",
|
||||||
"name": "Germany 1944",
|
"name": "Germany 1944",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"FW_190A8",
|
"FW_190A8",
|
||||||
"FW_190D9",
|
"FW_190D9",
|
||||||
@ -47,7 +49,8 @@
|
|||||||
"helicopter_carrier_names": [
|
"helicopter_carrier_names": [
|
||||||
],
|
],
|
||||||
"navy_generators": [
|
"navy_generators": [
|
||||||
"UBoatGroupGenerator", "SchnellbootGroupGenerator"
|
"UBoatGroupGenerator",
|
||||||
|
"SchnellbootGroupGenerator"
|
||||||
],
|
],
|
||||||
"navy_group_count": 2,
|
"navy_group_count": 2,
|
||||||
"has_jtac": false,
|
"has_jtac": false,
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Third Reich",
|
"country": "Third Reich",
|
||||||
"name": "Germany 1944",
|
"name": "Germany 1944",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"FW_190A8",
|
"FW_190A8",
|
||||||
"FW_190D9",
|
"FW_190D9",
|
||||||
@ -52,10 +54,13 @@
|
|||||||
"helicopter_carrier_names": [
|
"helicopter_carrier_names": [
|
||||||
],
|
],
|
||||||
"navy_generators": [
|
"navy_generators": [
|
||||||
"UBoatGroupGenerator", "SchnellbootGroupGenerator"
|
"UBoatGroupGenerator",
|
||||||
|
"SchnellbootGroupGenerator"
|
||||||
],
|
],
|
||||||
"navy_group_count": 2,
|
"navy_group_count": 2,
|
||||||
"missiles": ["V1GroupGenerator"],
|
"missiles": [
|
||||||
|
"V1GroupGenerator"
|
||||||
|
],
|
||||||
"missiles_group_count": 1,
|
"missiles_group_count": 1,
|
||||||
"has_jtac": false,
|
"has_jtac": false,
|
||||||
"doctrine": "ww2",
|
"doctrine": "ww2",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Germany",
|
"country": "Germany",
|
||||||
"name": "Germany 1990",
|
"name": "Germany 1990",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_29G",
|
"MiG_29G",
|
||||||
"Tornado_IDS",
|
"Tornado_IDS",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "India",
|
"country": "India",
|
||||||
"name": "India 2010",
|
"name": "India 2010",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"Mirage_2000_5",
|
"Mirage_2000_5",
|
||||||
"M_2000C",
|
"M_2000C",
|
||||||
@ -61,7 +63,8 @@
|
|||||||
"INS Vikramaditya"
|
"INS Vikramaditya"
|
||||||
],
|
],
|
||||||
"navy_generators": [
|
"navy_generators": [
|
||||||
"OliverHazardPerryGroupGenerator", "MolniyaGroupGenerator"
|
"OliverHazardPerryGroupGenerator",
|
||||||
|
"MolniyaGroupGenerator"
|
||||||
],
|
],
|
||||||
"has_jtac": true,
|
"has_jtac": true,
|
||||||
"jtac_unit": "MQ_9_Reaper"
|
"jtac_unit": "MQ_9_Reaper"
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Insurgents",
|
"country": "Insurgents",
|
||||||
"name": "Insurgents",
|
"name": "Insurgents",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
],
|
],
|
||||||
"frontline_units": [
|
"frontline_units": [
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Insurgents",
|
"country": "Insurgents",
|
||||||
"name": "Insurgents (Modded)",
|
"name": "Insurgents (Modded)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
],
|
],
|
||||||
"frontline_units": [
|
"frontline_units": [
|
||||||
@ -30,7 +32,8 @@
|
|||||||
"sams": [
|
"sams": [
|
||||||
"ZU23Generator",
|
"ZU23Generator",
|
||||||
"ZSU23Generator"
|
"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",
|
"country": "Iran",
|
||||||
"name": "Iran 2015",
|
"name": "Iran 2015",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_21Bis",
|
"MiG_21Bis",
|
||||||
"MiG_29A",
|
"MiG_29A",
|
||||||
@ -67,7 +69,9 @@
|
|||||||
"carrier_names": [
|
"carrier_names": [
|
||||||
],
|
],
|
||||||
"navy_generators": [
|
"navy_generators": [
|
||||||
"GrishaGroupGenerator", "MolniyaGroupGenerator", "KiloSubGroupGenerator"
|
"GrishaGroupGenerator",
|
||||||
|
"MolniyaGroupGenerator",
|
||||||
|
"KiloSubGroupGenerator"
|
||||||
],
|
],
|
||||||
"has_jtac": true,
|
"has_jtac": true,
|
||||||
"jtac_unit": "MQ_9_Reaper"
|
"jtac_unit": "MQ_9_Reaper"
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Israel",
|
"country": "Israel",
|
||||||
"name": "Israel 1948",
|
"name": "Israel 1948",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"SpitfireLFMkIXCW",
|
"SpitfireLFMkIXCW",
|
||||||
"SpitfireLFMkIX",
|
"SpitfireLFMkIX",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Israel",
|
"country": "Israel",
|
||||||
"name": "Israel 1973",
|
"name": "Israel 1973",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_4E",
|
"F_4E",
|
||||||
"A_4E_C",
|
"A_4E_C",
|
||||||
@ -44,8 +46,8 @@
|
|||||||
"cruisers": [
|
"cruisers": [
|
||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/",
|
"Community A-4E": "https://heclak.github.io/community-a4e-c/",
|
||||||
"WW2 Asset Pack": "https://www.digitalcombatsimulator.com/en/products/other/wwii_assets_pack/"
|
"WW2 Asset Pack": "https://www.digitalcombatsimulator.com/en/products/other/wwii_assets_pack/"
|
||||||
},
|
},
|
||||||
"carrier_names": [
|
"carrier_names": [
|
||||||
],
|
],
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Israel",
|
"country": "Israel",
|
||||||
"name": "Israel 1982",
|
"name": "Israel 1982",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_4E",
|
"F_4E",
|
||||||
"A_4E_C",
|
"A_4E_C",
|
||||||
@ -47,7 +49,7 @@
|
|||||||
"cruisers": [
|
"cruisers": [
|
||||||
],
|
],
|
||||||
"requirements": {
|
"requirements": {
|
||||||
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
"Community A-4E": "https://heclak.github.io/community-a4e-c/"
|
||||||
},
|
},
|
||||||
"carrier_names": [
|
"carrier_names": [
|
||||||
],
|
],
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Israel",
|
"country": "Israel",
|
||||||
"name": "Israel 2000",
|
"name": "Israel 2000",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_4E",
|
"F_4E",
|
||||||
"F_15C",
|
"F_15C",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Italy",
|
"country": "Italy",
|
||||||
"name": "Italy 1990",
|
"name": "Italy 1990",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"Tornado_IDS",
|
"Tornado_IDS",
|
||||||
"AV8BNA",
|
"AV8BNA",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Italy",
|
"country": "Italy",
|
||||||
"name": "Italy 1990 (With MB339)",
|
"name": "Italy 1990 (With MB339)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"Tornado_IDS",
|
"Tornado_IDS",
|
||||||
"AV8BNA",
|
"AV8BNA",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Japan",
|
"country": "Japan",
|
||||||
"name": "Japan 2005",
|
"name": "Japan 2005",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_15C",
|
"F_15C",
|
||||||
"F_16C_50",
|
"F_16C_50",
|
||||||
|
|||||||
@ -1,64 +1,67 @@
|
|||||||
{
|
"authors": "Khopa",
|
||||||
"country": "Libya",
|
"description": "", "Libya",
|
||||||
"name": "Libya 2011",
|
"name": "Libya 2011",
|
||||||
"aircrafts": [
|
"authors": "Khopa",
|
||||||
"MiG_21Bis",
|
"description": "",
|
||||||
"MiG_23MLD",
|
"aircrafts": [
|
||||||
"Su_17M4",
|
"MiG_21Bis",
|
||||||
"Su_24M",
|
"MiG_23MLD",
|
||||||
"Mi_24V"
|
"Su_17M4",
|
||||||
],
|
"Su_24M",
|
||||||
"awacs": [
|
"Mi_24V"
|
||||||
"A_50"
|
],
|
||||||
],
|
"awacs": [
|
||||||
"tankers": [
|
"A_50"
|
||||||
"IL_78M"
|
],
|
||||||
],
|
"tankers": [
|
||||||
"frontline_units": [
|
"IL_78M"
|
||||||
"IFV_BMP_1",
|
],
|
||||||
"ARV_BRDM_2",
|
"frontline_units": [
|
||||||
"MBT_T_72B",
|
"IFV_BMP_1",
|
||||||
"MBT_T_55"
|
"ARV_BRDM_2",
|
||||||
],
|
"MBT_T_72B",
|
||||||
"artillery_units": [
|
"MBT_T_55"
|
||||||
"MLRS_BM_21_Grad"
|
],
|
||||||
],
|
"artillery_units": [
|
||||||
"logistics_units": [
|
"MLRS_BM_21_Grad"
|
||||||
"Transport_Ural_375",
|
],
|
||||||
"Transport_UAZ_469"
|
"logistics_units": [
|
||||||
],
|
"Transport_Ural_375",
|
||||||
"infantry_units": [
|
"Transport_UAZ_469"
|
||||||
"Infantry_Soldier_Insurgents",
|
],
|
||||||
"Paratrooper_RPG_16"
|
"infantry_units": [
|
||||||
],
|
"Infantry_Soldier_Insurgents",
|
||||||
"shorads": [
|
"Paratrooper_RPG_16"
|
||||||
"HQ7Generator",
|
],
|
||||||
"SA8Generator",
|
"shorads": [
|
||||||
"ZSU23Generator"
|
"HQ7Generator",
|
||||||
],
|
"SA8Generator",
|
||||||
"sams": [
|
"ZSU23Generator"
|
||||||
"SA2Generator",
|
],
|
||||||
"SA3Generator",
|
"sams": [
|
||||||
"SA6Generator"
|
"SA2Generator",
|
||||||
],
|
"SA3Generator",
|
||||||
"aircraft_carrier": [
|
"SA6Generator"
|
||||||
],
|
],
|
||||||
"helicopter_carrier": [
|
"aircraft_carrier": [
|
||||||
],
|
],
|
||||||
"helicopter_carrier_names": [
|
"helicopter_carrier": [
|
||||||
],
|
],
|
||||||
"destroyers": [
|
"helicopter_carrier_names": [
|
||||||
"FF_1135M_Rezky"
|
],
|
||||||
],
|
"destroyers": [
|
||||||
"cruisers": [
|
"FF_1135M_Rezky"
|
||||||
"FSG_1241_1MP_Molniya"
|
],
|
||||||
],
|
"cruisers": [
|
||||||
"requirements": {},
|
"FSG_1241_1MP_Molniya"
|
||||||
"carrier_names": [
|
],
|
||||||
],
|
"requirements": {
|
||||||
"navy_generators": [
|
},
|
||||||
"GrishaGroupGenerator", "MolniyaGroupGenerator"
|
"carrier_names": [
|
||||||
],
|
],
|
||||||
"has_jtac": true,
|
"navy_generators": [
|
||||||
"jtac_unit": "MQ_9_Reaper"
|
"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",
|
"country": "Russia",
|
||||||
"name": "Russia 1990",
|
"name": "Russia 1990",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_23MLD",
|
"MiG_23MLD",
|
||||||
"MiG_25PD",
|
"MiG_25PD",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Russia",
|
"country": "Russia",
|
||||||
"name": "Russia 2010",
|
"name": "Russia 2010",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_29S",
|
"MiG_29S",
|
||||||
"MiG_31",
|
"MiG_31",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "Russia",
|
"country": "Russia",
|
||||||
"name": "Russia 2020 (Modded)",
|
"name": "Russia 2020 (Modded)",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"MiG_29S",
|
"MiG_29S",
|
||||||
"MiG_31",
|
"MiG_31",
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
"country": "USA",
|
"country": "USA",
|
||||||
"name": "USA 2005",
|
"name": "USA 2005",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_15C",
|
"F_15C",
|
||||||
"F_15E",
|
"F_15E",
|
||||||
|
|||||||
@ -1,6 +1,8 @@
|
|||||||
{
|
{
|
||||||
"country": "USA",
|
"country": "USA",
|
||||||
"name": "USA 1990",
|
"name": "USA 1990",
|
||||||
|
"authors": "Khopa",
|
||||||
|
"description": "",
|
||||||
"aircrafts": [
|
"aircrafts": [
|
||||||
"F_15C",
|
"F_15C",
|
||||||
"F_15E",
|
"F_15E",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user