diff --git a/scripts/python/API/.vscode/launch.json b/scripts/python/API/.vscode/launch.json new file mode 100644 index 00000000..2d2e73eb --- /dev/null +++ b/scripts/python/API/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "App", + "type": "debugpy", + "request": "launch", + "program": "app.py", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file diff --git a/scripts/python/API/app.py b/scripts/python/API/app.py new file mode 100644 index 00000000..65e4d1eb --- /dev/null +++ b/scripts/python/API/app.py @@ -0,0 +1,248 @@ +import hashlib +import json +from math import pi +from random import random +import requests +import base64 +from data_extractor import DataExtractor +from data_types import LatLng +from unit import Unit +from unit_spawn_table import UnitSpawnTable +from datetime import datetime + +class API: + def __init__(self, username: str = "API", databases_location: str = "databases"): + self.base_url = None + self.config = None + self.units: dict[str, Unit] = {} + self.username = username + self.databases_location = databases_location + + # Read the config file olympus.json + try: + with open("olympus.json", "r") as file: + # Load the JSON configuration + self.config = json.load(file) + except FileNotFoundError: + raise Exception("Configuration file olympus.json not found.") + + self.password = self.config.get("authentication").get("gameMasterPassword") + address = self.config.get("backend").get("address") + port = self.config.get("backend").get("port", None) + + if port: + self.base_url = f"http://{address}:{port}/olympus" + else: + self.base_url = f"https://{address}/olympus" + + # Read the aircraft, helicopter, groundunit and navyunit databases as json files + try: + with open(f"{self.databases_location}/aircraftdatabase.json", "r", -1, 'utf-8') as file: + self.aircraft_database = json.load(file) + except FileNotFoundError: + raise Exception("Aircraft database file not found.") + + try: + with open(f"{self.databases_location}/helicopterdatabase.json", "r", -1, 'utf-8') as file: + self.helicopter_database = json.load(file) + except FileNotFoundError: + raise Exception("Helicopter database file not found.") + + try: + with open(f"{self.databases_location}/groundunitdatabase.json", "r", -1, 'utf-8') as file: + self.groundunit_database = json.load(file) + except FileNotFoundError: + raise Exception("Ground unit database file not found.") + + try: + with open(f"{self.databases_location}/navyunitdatabase.json", "r", -1, 'utf-8') as file: + self.navyunit_database = json.load(file) + except FileNotFoundError: + raise Exception("Navy unit database file not found.") + + def get(self, endpoint): + credentials = f"{self.username}:{self.password}" + base64_encoded_credentials = base64.b64encode(credentials.encode()).decode() + + headers = { + "Authorization": f"Basic {base64_encoded_credentials}" + } + response = requests.get(f"{self.base_url}/{endpoint}", headers=headers) + if response.status_code == 200: + return response + else: + response.raise_for_status() + + def put(self, endpoint, data): + credentials = f"{self.username}:{self.password}" + base64_encoded_credentials = base64.b64encode(credentials.encode()).decode() + + headers = { + "Authorization": f"Basic {base64_encoded_credentials}", + "Content-Type": "application/json" + } + response = requests.put(f"{self.base_url}/{endpoint}", headers=headers, json=data) + if response.status_code == 200: + return response + else: + response.raise_for_status() + + def get_units(self): + response = self.get("/units") + if response.status_code == 200: + try: + data_extractor = DataExtractor(response.content) + + # Extract the update timestamp + update_timestamp = data_extractor.extract_uint64() + print(f"Update Timestamp: {update_timestamp}") + + while data_extractor.get_seek_position() < len(response.content): + # Extract the unit ID + unit_id = data_extractor.extract_uint32() + + if unit_id not in self.units: + # Create a new Unit instance if it doesn't exist + self.units[unit_id] = Unit(unit_id) + + self.units[unit_id].update_from_data_extractor(data_extractor) + + return self.units + + except ValueError: + raise Exception("Failed to parse JSON response") + else: + raise Exception(f"Failed to fetch units: {response.status_code} - {response.text}") + + + def get_logs(self, time = 0): + endpoint = "/logs" + endpoint += f"?time={time}" + response = self.get(endpoint) + if response.status_code == 200: + try: + logs = json.loads(response.content.decode('utf-8')) + return logs + except ValueError: + raise Exception("Failed to parse JSON response") + else: + raise Exception(f"Failed to fetch logs: {response.status_code} - {response.text}") + + def spawn_aircrafts(self, units: list[UnitSpawnTable], coalition: str, airbaseName: str, country: str, immediate: bool, spawnPoints: list[LatLng]): + command = { + "units": [unit.toJSON() for unit in units], + "coalition": coalition, + "airbaseName": airbaseName, + "country": country, + "immediate": immediate, + "spawnPoints": spawnPoints, + } + data = { "spawnAircrafts": command } + self.put("", data) + + def spanw_helicopters(self, units: list[UnitSpawnTable], coalition: str, airbaseName: str, country: str, immediate: bool, spawnPoints: list[LatLng]): + command = { + "units": [unit.toJSON() for unit in units], + "coalition": coalition, + "airbaseName": airbaseName, + "country": country, + "immediate": immediate, + "spawnPoints": spawnPoints, + } + data = { "spawnHelicopters": command } + self.put("", data) + + def spawn_ground_units(self, units: list[UnitSpawnTable], coalition: str, country: str, immediate: bool, spawnPoints: list[LatLng]): + command = { + "units": [unit.toJSON() for unit in units], + "coalition": coalition, + "country": country, + "immediate": immediate, + "spawnPoints": spawnPoints, + } + data = { "spawnGroundUnits": command } + self.put("", data) + + def spawn_navy_units(self, units: list[UnitSpawnTable], coalition: str, country: str, immediate: bool, spawnPoints: list[LatLng]): + command = { + "units": [unit.toJSON() for unit in units], + "coalition": coalition, + "country": country, + "immediate": immediate, + "spawnPoints": spawnPoints, + } + data = { "spawnNavyUnits": command } + self.put("", data) + + def delete_unit(self, ID: int, explosion: bool, explosionType: str, immediate: bool): + command = { + "ID": ID, + "explosion": explosion, + "explosionType": explosionType, + "immediate": immediate, + } + data = { "deleteUnit": command } + self.put("", data) + +if __name__ == "__main__": + api = API() + try: + # Example usage + # Get the units from the API + print("Fetching units...") + units = api.get_units() + print("Units:", units) + + # Example of spawning aircrafts + print("Spawning aircrafts...") + spawn_units = [ + UnitSpawnTable( + unit_type="A-10C_2", + location=LatLng(lat=35.0, lng=35.0, alt=1000), + skill="High", + livery_id="Default", + altitude=1000, + loadout="Default", + heading=pi/2 + ) + ] + api.spawn_aircrafts(spawn_units, "blue", "", "", False, 0) + + # Spawn a random navy unit + print("Spawning navy units...") + random_navy_unit = list(api.navyunit_database.keys())[int(random() * len(api.navyunit_database))] + + spawn_navy_units = [ + UnitSpawnTable( + unit_type=random_navy_unit, + location=LatLng(lat=35.0, lng=35.0, alt=0), + skill="High", + livery_id="Default", + altitude=None, + loadout=None, + heading=0 + ) + ] + api.spawn_navy_units(spawn_navy_units, "blue", "", False, 0) + + # Example of deleting a unit + # Get all the unit of type A-10C_2 + a10_units = [unit for unit in units.values() if unit.name == "A-10C_2"] + for unit in a10_units: + api.delete_unit(unit.ID, explosion=False, explosionType="", immediate=False) + + # Fetch logs from the API + print("Fetching logs...") + logs = api.get_logs()["logs"] + + # Pretty print the logs + print("Logs:") + # The log is a dictionary. The key is the timestamp and the value is the log message + for timestamp, log_message in logs.items(): + # The timestamp is in milliseconds from unix epoch + timestamp = int(timestamp) / 1000 # Convert to seconds + iso_time = datetime.fromtimestamp(timestamp).isoformat() + print(f"{iso_time}: {log_message}") + + except Exception as e: + print("An error occurred:", e) \ No newline at end of file diff --git a/scripts/python/API/data_extractor.py b/scripts/python/API/data_extractor.py new file mode 100644 index 00000000..e65f61d3 --- /dev/null +++ b/scripts/python/API/data_extractor.py @@ -0,0 +1,139 @@ +import struct +from typing import List +from data_types import LatLng, TACAN, Radio, GeneralSettings, Ammo, Contact, Offset + +class DataExtractor: + def __init__(self, buffer: bytes): + self._seek_position = 0 + self._buffer = buffer + self._length = len(buffer) + + def set_seek_position(self, seek_position: int): + self._seek_position = seek_position + + def get_seek_position(self) -> int: + return self._seek_position + + def extract_bool(self) -> bool: + value = struct.unpack_from(' 0 + + def extract_uint8(self) -> int: + value = struct.unpack_from(' int: + value = struct.unpack_from(' int: + value = struct.unpack_from(' int: + value = struct.unpack_from(' float: + value = struct.unpack_from(' LatLng: + lat = self.extract_float64() + lng = self.extract_float64() + alt = self.extract_float64() + return LatLng(lat, lng, alt) + + def extract_from_bitmask(self, bitmask: int, position: int) -> bool: + return ((bitmask >> position) & 1) > 0 + + def extract_string(self, length: int = None) -> str: + if length is None: + length = self.extract_uint16() + + string_buffer = self._buffer[self._seek_position:self._seek_position + length] + + # Find null terminator + string_length = length + for idx, byte_val in enumerate(string_buffer): + if byte_val == 0: + string_length = idx + break + + try: + value = string_buffer[:string_length].decode('utf-8').strip() + except UnicodeDecodeError: + value = string_buffer[:string_length].decode('utf-8', errors='ignore').strip() + + self._seek_position += length + return value + + def extract_char(self) -> str: + return self.extract_string(1) + + def extract_tacan(self) -> TACAN: + return TACAN( + is_on=self.extract_bool(), + channel=self.extract_uint8(), + xy=self.extract_char(), + callsign=self.extract_string(4) + ) + + def extract_radio(self) -> Radio: + return Radio( + frequency=self.extract_uint32(), + callsign=self.extract_uint8(), + callsign_number=self.extract_uint8() + ) + + def extract_general_settings(self) -> GeneralSettings: + return GeneralSettings( + prohibit_jettison=self.extract_bool(), + prohibit_aa=self.extract_bool(), + prohibit_ag=self.extract_bool(), + prohibit_afterburner=self.extract_bool(), + prohibit_air_wpn=self.extract_bool() + ) + + def extract_ammo(self) -> List[Ammo]: + value = [] + size = self.extract_uint16() + for _ in range(size): + value.append(Ammo( + quantity=self.extract_uint16(), + name=self.extract_string(33), + guidance=self.extract_uint8(), + category=self.extract_uint8(), + missile_category=self.extract_uint8() + )) + return value + + def extract_contacts(self) -> List[Contact]: + value = [] + size = self.extract_uint16() + for _ in range(size): + value.append(Contact( + id=self.extract_uint32(), + detection_method=self.extract_uint8() + )) + return value + + def extract_active_path(self) -> List[LatLng]: + value = [] + size = self.extract_uint16() + for _ in range(size): + value.append(self.extract_lat_lng()) + return value + + def extract_offset(self) -> Offset: + return Offset( + x=self.extract_float64(), + y=self.extract_float64(), + z=self.extract_float64() + ) \ No newline at end of file diff --git a/scripts/python/API/data_indexes.py b/scripts/python/API/data_indexes.py new file mode 100644 index 00000000..38155fb2 --- /dev/null +++ b/scripts/python/API/data_indexes.py @@ -0,0 +1,70 @@ +from enum import Enum + +class DataIndexes(Enum): + START_OF_DATA = 0 + CATEGORY = 1 + ALIVE = 2 + ALARM_STATE = 3 + RADAR_STATE = 4 + HUMAN = 5 + CONTROLLED = 6 + COALITION = 7 + COUNTRY = 8 + NAME = 9 + UNIT_NAME = 10 + CALLSIGN = 11 + UNIT_ID = 12 + GROUP_ID = 13 + GROUP_NAME = 14 + STATE = 15 + TASK = 16 + HAS_TASK = 17 + POSITION = 18 + SPEED = 19 + HORIZONTAL_VELOCITY = 20 + VERTICAL_VELOCITY = 21 + HEADING = 22 + TRACK = 23 + IS_ACTIVE_TANKER = 24 + IS_ACTIVE_AWACS = 25 + ON_OFF = 26 + FOLLOW_ROADS = 27 + FUEL = 28 + DESIRED_SPEED = 29 + DESIRED_SPEED_TYPE = 30 + DESIRED_ALTITUDE = 31 + DESIRED_ALTITUDE_TYPE = 32 + LEADER_ID = 33 + FORMATION_OFFSET = 34 + TARGET_ID = 35 + TARGET_POSITION = 36 + ROE = 37 + REACTION_TO_THREAT = 38 + EMISSIONS_COUNTERMEASURES = 39 + TACAN = 40 + RADIO = 41 + GENERAL_SETTINGS = 42 + AMMO = 43 + CONTACTS = 44 + ACTIVE_PATH = 45 + IS_LEADER = 46 + OPERATE_AS = 47 + SHOTS_SCATTER = 48 + SHOTS_INTENSITY = 49 + HEALTH = 50 + RACETRACK_LENGTH = 51 + RACETRACK_ANCHOR = 52 + RACETRACK_BEARING = 53 + TIME_TO_NEXT_TASKING = 54 + BARREL_HEIGHT = 55 + MUZZLE_VELOCITY = 56 + AIM_TIME = 57 + SHOTS_TO_FIRE = 58 + SHOTS_BASE_INTERVAL = 59 + SHOTS_BASE_SCATTER = 60 + ENGAGEMENT_RANGE = 61 + TARGETING_RANGE = 62 + AIM_METHOD_RANGE = 63 + ACQUISITION_RANGE = 64 + AIRBORNE = 65 + END_OF_DATA = 255 \ No newline at end of file diff --git a/scripts/python/API/data_types.py b/scripts/python/API/data_types.py new file mode 100644 index 00000000..d5b22cb9 --- /dev/null +++ b/scripts/python/API/data_types.py @@ -0,0 +1,56 @@ +from dataclasses import dataclass +from typing import List, Optional + +@dataclass +class LatLng: + lat: float + lng: float + alt: float + + def toJSON(self): + """Convert LatLng to a JSON serializable dictionary.""" + return { + "lat": self.lat, + "lng": self.lng, + "alt": self.alt + } + +@dataclass +class TACAN: + is_on: bool + channel: int + xy: str + callsign: str + +@dataclass +class Radio: + frequency: int + callsign: int + callsign_number: int + +@dataclass +class GeneralSettings: + prohibit_jettison: bool + prohibit_aa: bool + prohibit_ag: bool + prohibit_afterburner: bool + prohibit_air_wpn: bool + +@dataclass +class Ammo: + quantity: int + name: str + guidance: int + category: int + missile_category: int + +@dataclass +class Contact: + id: int + detection_method: int + +@dataclass +class Offset: + x: float + y: float + z: float \ No newline at end of file diff --git a/scripts/python/API/databases/aircraftdatabase.json b/scripts/python/API/databases/aircraftdatabase.json new file mode 100644 index 00000000..08343772 --- /dev/null +++ b/scripts/python/API/databases/aircraftdatabase.json @@ -0,0 +1,39525 @@ +{ + "A-10C_2": { + "name": "A-10C_2", + "coalition": "blue", + "era": "Late Cold War", + "category": "aircraft", + "label": "A-10C Warthog 2", + "shortLabel": "A10", + "loadouts": [ + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2, AGM-65H*2, CBU-97*2, CBU-87*2, TGP, ECM, AIM-9*2", + "name": "AGM-65D*2, AGM-65H*2, CBU-97*2, CBU-87*2, TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x Mk-82 AIR Ballute - 500lb GP Bombs HD", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,GBU-12,GBU-38,MK82*3,MK82AIR*3,MK5*7,TGP,AM-9*2", + "name": "AGM-65D*2,AGM-65H*2,GBU-12,GBU-38,MK82*3,MK82AIR*3,MK5*7,TGP,AM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,GBU-12*2,GBU-38*2,AIM-9*2,TGP,ECM,MK151*7", + "name": "AGM-65D*2,AGM-65H*2,GBU-12*2,GBU-38*2,AIM-9*2,TGP,ECM,MK151*7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,Mk-82AIR*2,CBU-87*2,AIM-9M*2,ECM,TGP", + "name": "AGM-65D*2,AGM-65H*2,Mk-82AIR*2,CBU-87*2,AIM-9M*2,ECM,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,Mk-82AIR*2,CBU-97*2,AIM-9M*2,TGP,ECM", + "name": "AGM-65D*2,AGM-65H*2,Mk-82AIR*2,CBU-97*2,AIM-9M*2,TGP,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x Mk-82 AIR Ballute - 500lb GP Bombs HD", + "quantity": 2 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,Mk-82AIR*6,CBU-87*2,Mk151*7,AIM-9*2,TGP,ECM", + "name": "AGM-65D*2,AGM-65H*2,Mk-82AIR*6,CBU-87*2,Mk151*7,AIM-9*2,TGP,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2,AGM-65H*2,TGP, ECM, AIM-9*2", + "name": "AGM-65D*2,AGM-65H*2,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 6 + }, + { + "name": "LAU-117 with AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*2,Mk-82*6,AIM-9*2,ECM", + "name": "AGM-65D*2,Mk-82*6,AIM-9*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 3 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-88 with 3 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*3, AGM-65H*3, CBU-97*4,TGP, ECM, AIM-9*2", + "name": "AGM-65D*3, AGM-65H*3, CBU-97*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + }, + { + "name": "CBU-105 - 10 x SFW, CBU with WCMD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*4, CBU-105*2,CBU-97*2, TGP, ECM, AIM-9*2", + "name": "AGM-65D*4, CBU-105*2,CBU-97*2, TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-105 - 10 x SFW, CBU with WCMD", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*4, CBU-105*4,TGP, ECM, AIM-9*2", + "name": "AGM-65D*4, CBU-105*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*4, CBU-97*2, CBU-87*2, TGP, ECM, AIM-9*2", + "name": "AGM-65D*4, CBU-97*2, CBU-87*2, TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "AGM-65D*4, CBU-97*4,TGP, ECM, AIM-9*2", + "name": "AGM-65D*4, CBU-97*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 1 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*4,GBU-12*2,GBU-38,Mk-82,AIM-9,TGP,ECM", + "name": "AGM-65D*4,GBU-12*2,GBU-38,Mk-82,AIM-9,TGP,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*4,GBU-12*2,GBU-38*2,AIM-9*2,TGP,ECM,MK5*7", + "name": "AGM-65D*4,GBU-12*2,GBU-38*2,AIM-9*2,TGP,ECM,MK5*7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*4,Mk-82*6,CBU-87*2,TGP,AIM-9*2,Mk151*7", + "name": "AGM-65D*4,Mk-82*6,CBU-87*2,TGP,AIM-9*2,Mk151*7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*4,Mk-82AIR*2,CBU-87*2,AIM-9M*2,ECM,TGP", + "name": "AGM-65D*4,Mk-82AIR*2,CBU-87*2,AIM-9M*2,ECM,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*4,TGP, ECM, AIM-9*2", + "name": "AGM-65D*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 3 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65D*6, CBU-97*4,TGP, ECM, AIM-9*2", + "name": "AGM-65D*6, CBU-97*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 3 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65D*6,GBU-12*4,AIM-9M*2,ECM,TGP", + "name": "AGM-65D*6,GBU-12*4,AIM-9M*2,ECM,TGP", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 7 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65G,AGM-65D,Mk-82*7,AIM-9*2,ECM", + "name": "AGM-65G,AGM-65D,Mk-82*7,AIM-9*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 1 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65G,AGM-65K,GBU-10*2,AIM-9*2,TGP,ECM", + "name": "AGM-65G,AGM-65K,GBU-10*2,AIM-9*2,TGP,ECM", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 2 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65G*2,GBU-31*2,AIM-9*2,TGP,ECM", + "name": "AGM-65G*2,GBU-31*2,AIM-9*2,TGP,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65H*4, CBU-97*4,TGP, ECM, AIM-9*2", + "name": "AGM-65H*4, CBU-97*4,TGP, ECM, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x GBU-12 - 500lb Laser Guided Bombs", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65K*2,GBU-12*8,AIM-9M*2.ECM,TGP", + "name": "AGM-65K*2,GBU-12*8,AIM-9M*2.ECM,TGP", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65K*2,GBU-38*4,AIM-9*2,TGP,ECM", + "name": "AGM-65K*2,GBU-38*4,AIM-9*2,TGP,ECM", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-105 - 10 x SFW, CBU with WCMD", + "quantity": 4 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65L*2,CBU-105*4,AIM-9M*2,ECM,M151 APKWS*7,TGP", + "name": "AGM-65L*2,CBU-105*4,AIM-9M*2,ECM,M151 APKWS*7,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65L*2,CBU-97*4,AIM-9M*2,ECM,M151 APKWS*7,TGP", + "name": "AGM-65L*2,CBU-97*4,AIM-9M*2,ECM,M151 APKWS*7,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 4 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65L*2,CBU-97*4,AIM-9M*2,ECM,TGP", + "name": "AGM-65L*2,CBU-97*4,AIM-9M*2,ECM,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + }, + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65L*2,Mk-82AIR*2,CBU-97*2,AIM-9M*2,ECM,TGP", + "name": "AGM-65L*2,Mk-82AIR*2,CBU-97*2,AIM-9M*2,ECM,TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x BDU-33 - 25lb Practice Bombs LD", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-33*12, TGP, CAP-9*1", + "name": "BDU-33*12, TGP, CAP-9*1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x BDU-33 - 25lb Practice Bombs LD", + "quantity": 2 + }, + { + "name": "BDU-50LGB - 500lb Laser Guided Inert Practice Bomb LD", + "quantity": 2 + }, + { + "name": "LAU-117 with TGM-65D - Trg Round for Mav D (IIR)", + "quantity": 1 + }, + { + "name": "LAU-117 with TGM-65H - Trg Round for Mav H (CCD)", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-33*6, TGM-65H, TGM-65D, TGP, BDU-50LGB*2, CAP-9*1", + "name": "BDU-33*6, TGM-65H, TGM-65D, TGP, BDU-50LGB*2, CAP-9*1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x BDU-33 - 25lb Practice Bombs LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-33*6, TGP, CAP-9*1", + "name": "BDU-33*6, TGP, CAP-9*1", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x BDU-33 - 25lb Practice Bombs LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "BDU-50LD - 500lb Inert Practice Bomb LD", + "quantity": 2 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-33*6, TGP, CAP-9*1, BDU-50LD*2", + "name": "BDU-33*6, TGP, CAP-9*1, BDU-50LD*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "BDU-50HD - 500lb Inert Practice Bomb HD", + "quantity": 2 + }, + { + "name": "BDU-50LGB - 500lb Laser Guided Inert Practice Bomb LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk61, Practice", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-50HD*2,BDU-50LGB*2,TGP, CAP-9*1", + "name": "BDU-50HD*2,BDU-50LGB*2,TGP, CAP-9*1", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "BDU-50HD - 500lb Inert Practice Bomb HD", + "quantity": 6 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk1, Practice", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-50HD*6,Mk1*7,TGP, CAP-9*1", + "name": "BDU-50HD*6,Mk1*7,TGP, CAP-9*1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "BDU-50HD - 500lb Inert Practice Bomb HD", + "quantity": 2 + }, + { + "name": "BDU-50LD - 500lb Inert Practice Bomb LD", + "quantity": 2 + }, + { + "name": "LAU-117 with CATM-65K - Captive Trg Round for Mav K (CCD)", + "quantity": 1 + }, + { + "name": "LAU-117 with TGM-65G - Trg Round for Mav G (IIR)", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts WTU-1/B, Practice", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + } + ], + "enabled": true, + "code": "BDU-50LD*2, BDU-50HD*2,CATM-65K, TGM-65G, TGP, CAP-9*1", + "name": "BDU-50LD*2, BDU-50HD*2,CATM-65K, TGM-65G, TGP, CAP-9*1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "CBU-103 - 202 x CEM, CBU with WCMD", + "quantity": 4 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "CBU-103*4, M151*14, AIM-9*2, ECM", + "name": "CBU-103*4, M151*14, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 AIR Ballute - 500lb GP Bombs HD", + "quantity": 2 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "CBU-87*2, M151*14, MK-82AIR*6, AIM-9*2,ECM", + "name": "CBU-87*2, M151*14, MK-82AIR*6, AIM-9*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 4 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "CBU-87*4, M151*28, AIM-9*2,ECM", + "name": "CBU-87*4, M151*28, AIM-9*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x LAU-68 pods - 21 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 4 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "CBU-87*4, M151*42, AIM-9*2, ECM", + "name": "CBU-87*4, M151*42, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-10*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-10*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x GBU-12 - 500lb Laser Guided Bombs", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-12*14,TGP, AIM-9*2", + "name": "GBU-12*14,TGP, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-12*2,GBU-38*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-12*2,GBU-38*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-12*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-12*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x GBU-12 - 500lb Laser Guided Bombs", + "quantity": 2 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-12*6,GBU-10*2,TGP, AIM-9*2", + "name": "GBU-12*6,GBU-10*2,TGP, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-31*2,GBU-38*2, AGM-65H*2, AIM-9*2,TGP, ECM", + "name": "GBU-31*2,GBU-38*2, AGM-65H*2, AIM-9*2,TGP, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + }, + { + "name": "GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-31*2,GBU-38*4,AIM-9*2,TGP,ECM, AIM-9*2", + "name": "GBU-31*2,GBU-38*4,AIM-9*2,TGP,ECM, AIM-9*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-31(V)3/B - JDAM, 2000lb GPS Guided Penetrator Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-31*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-31*2,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-38*4,GBU-31*2,TGP, AIM-9*2", + "name": "GBU-38*4,GBU-31*2,TGP, AIM-9*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65D - Maverick D (IIR ASM)", + "quantity": 1 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + }, + { + "name": "LAU-117 with AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-38*4,M151 APKWS*7,AGM-65D*1,AGM-65H*1,TGP,AIM-9*2,ECM", + "name": "GBU-38*4,M151 APKWS*7,AGM-65D*1,AGM-65H*1,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-38*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-38*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "GBU-54(V)1/B - LJDAM, 500lb Laser & GPS Guided Bomb LD", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-54*4,M151 APKWS*7,AGM-65D*4,TGP,AIM-9*2,ECM", + "name": "GBU-54*4,M151 APKWS*7,AGM-65D*4,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "GBU-54(V)1/B - LJDAM, 500lb Laser & GPS Guided Bomb LD", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-54*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "name": "GBU-54*4,M151 APKWS*7,AGM-65L*2,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x LAU-131 pods - 21 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "LAU-131 98 rkt M156 WP, AIM-9*2,ECM", + "name": "LAU-131 98 rkt M156 WP, AIM-9*2,ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 6 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "LAU-68 42 rkt M156 WP, AIM-9*2, ECM", + "name": "LAU-68 42 rkt M156 WP, AIM-9*2, ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x LAU-68 pods - 21 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "M151*98, Mk-82*2,AIM-9*2,ECM", + "name": "M151*98, Mk-82*2,AIM-9*2,ECM", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 5 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x Mk-82 AIR Ballute - 500lb GP Bombs HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82*20,AIM-9*2,ECM", + "name": "Mk-82*20,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 4 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82*4,Mk-8AIR*4,AIM-9*2,ECM", + "name": "Mk-82*4,Mk-8AIR*4,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 7 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82*6,AIM-9*2,TGP,ECM", + "name": "Mk-82*6,AIM-9*2,TGP,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 6 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82*6,Mk-84*2,AIM-9*2,ECM", + "name": "Mk-82*6,Mk-84*2,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 8 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82*8,AIM-9*2,ECM", + "name": "Mk-82*8,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 5 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82AIR*6,Mk-8AIR*4,M151*1,TGP,AIM-9*2,ECM", + "name": "Mk-82AIR*6,Mk-8AIR*4,M151*1,TGP,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 8 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82AIR*8,AIM-9*2,ECM", + "name": "Mk-82AIR*8,AIM-9*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M257, Para Illum", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "MK-84*2,LAU-68*2,AGM-65K*2", + "name": "MK-84*2,LAU-68*2,AGM-65K*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-84*4,AIM-9*2,ECM", + "name": "Mk-84*4,AIM-9*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 6 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-84*6,AIM-9*2,TGP,ECM", + "name": "Mk-84*6,AIM-9*2,TGP,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM- GBU-10*2,GBU-12*4,AIM-9*2,TGP,ECM", + "name": "PGM- GBU-10*2,GBU-12*4,AIM-9*2,TGP,ECM", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM- GBU-10*4, AGM-65K*2,AIM-9*2,TGP,ECM", + "name": "PGM- GBU-10*4, AGM-65K*2,AIM-9*2,TGP,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "SUU-25 x 8 LUU-2 - Target Marker Flares", + "quantity": 9 + } + ], + "enabled": true, + "code": "SUU-25*9,AIM-9*2,ECM", + "name": "SUU-25*9,AIM-9*2,ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP", + "name": "TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "BDU-50LGB - 500lb Laser Guided Inert Practice Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "TGP, CAP-9*1, BDU-50LGB*4", + "name": "TGP, CAP-9*1, BDU-50LGB*4", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-117 with CATM-65K - Captive Trg Round for Mav K (CCD)", + "quantity": 1 + }, + { + "name": "LAU-117 with TGM-65G - Trg Round for Mav G (IIR)", + "quantity": 1 + }, + { + "name": "LAU-105 with 1 x Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, CAP-9*1, CATM-65K*1, TGM-65G*1", + "name": "TGP, CAP-9*1, CATM-65K*1, TGM-65G*1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 3 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, CBU-87*3, M151*28, AIM-9*2, ECM", + "name": "TGP, CBU-87*3, M151*28, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, M151*14, Mk-82*2, Mk-82AIR*2, AIM-9*2, ECM", + "name": "TGP, M151*14, Mk-82*2, Mk-82AIR*2, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x LAU-68 pods - 21 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 AIR Ballute - 500lb GP Bombs HD", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, M151*42, Mk-82*6, Mk-82AIR*6, AIM-9*2, ECM", + "name": "TGP, M151*42, Mk-82*6, Mk-82AIR*6, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x LAU-68 pods - 21 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, M151*49, Mk-82*2, CBU-87*2, AIM-9*2, ECM", + "name": "TGP, M151*49, Mk-82*2, CBU-87*2, AIM-9*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "BRU-42 with 3 x LAU-68 pods - 21 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "LAU-105 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "TGP, M151*84, Mk-82*2,AIM-9*2, ECM", + "name": "TGP, M151*84, Mk-82*2,AIM-9*2, ECM", + "roles": [ + "CAS" + ] + } + ], + "filename": "a-10.png", + "enabled": true, + "liveries": { + "81st fs spangdahlem ab, germany (sp) 1": { + "name": "81st FS Spangdahlem AB, Germany (SP) 1", + "countries": [ + "USA" + ] + }, + "fictional spanish tritonal": { + "name": "Fictional Spanish Tritonal", + "countries": [ + "SPN" + ] + }, + "47th fs barksdale afb, louisiana (bd)": { + "name": "47th FS Barksdale AFB, Louisiana (BD)", + "countries": [ + "USA" + ] + }, + "fictional georgian olive": { + "name": "Fictional Georgian Olive", + "countries": [ + "GRG" + ] + }, + "algerian af fictional grey": { + "name": "Algerian AF Fictional Grey", + "countries": [ + "DZA" + ] + }, + "fictional russian air force 1": { + "name": "Fictional Russian Air Force 1", + "countries": [ + "RUS" + ] + }, + "fictional israel 115 sqn flying dragon": { + "name": "Fictional Israel 115 Sqn Flying Dragon", + "countries": [ + "ISR" + ] + }, + "172nd fs battle creek angb, michigan (bc)": { + "name": "172nd FS Battle Creek ANGB, Michigan (BC)", + "countries": [ + "USA" + ] + }, + "190th fs boise angb, idaho (id)": { + "name": "190th FS Boise ANGB, Idaho (ID)", + "countries": [ + "USA" + ] + }, + "81st fs spangdahlem ab, germany (sp) 2": { + "name": "81st FS Spangdahlem AB, Germany (SP) 2", + "countries": [ + "USA" + ] + }, + "fictional german 3322": { + "name": "Fictional German 3322", + "countries": [ + "GER" + ] + }, + "66th ws nellis afb, nevada (wa)": { + "name": "66th WS Nellis AFB, Nevada (WA)", + "countries": [ + "USA" + ] + }, + "algerian af fictional desert": { + "name": "Algerian AF Fictional Desert", + "countries": [ + "DZA" + ] + }, + "fictional italian am (23gruppo)": { + "name": "AM (23Gruppo)", + "countries": [ + "ITA" + ] + }, + "haf fictional": { + "name": "Hellenic Airforce (Fictional)", + "countries": [ + "GRC" + ] + }, + "184th fs arkansas ang, fort smith (fs)": { + "name": "184th FS Arkansas ANG, Fort Smith (FS)", + "countries": [ + "USA" + ] + }, + "354th fs davis monthan afb, arizona (dm)": { + "name": "354th FS Davis Monthan AFB, Arizona (DM)", + "countries": [ + "USA" + ] + }, + "fictional royal norwegian air force": { + "name": "Fictional Royal Norwegian Air Force", + "countries": [ + "NOR" + ] + }, + "422nd tes nellis afb, nevada (ot)": { + "name": "422nd TES Nellis AFB, Nevada (OT)", + "countries": [ + "USA" + ] + }, + "118th fs bradley angb, connecticut (ct)": { + "name": "118th FS Bradley ANGB, Connecticut (CT)", + "countries": [ + "USA" + ] + }, + "fictional spanish aga": { + "name": "Fictional Spanish AGA", + "countries": [ + "SPN" + ] + }, + "74th fs moody afb, georgia (ft)": { + "name": "74th FS Moody AFB, Georgia (FT)", + "countries": [ + "USA" + ] + }, + "fictional russian air force 2": { + "name": "Fictional Russian Air Force 2", + "countries": [ + "RUS" + ] + }, + "118th fs bradley angb, connecticut (ct) n621": { + "name": "118th FS Bradley ANGB, Connecticut (CT) N621", + "countries": [ + "USA" + ] + }, + "357th fs davis monthan afb, arizona (dm)": { + "name": "357th FS Davis Monthan AFB, Arizona (DM)", + "countries": [ + "USA" + ] + }, + "canada rcaf 409 squadron": { + "name": "Fictional RCAF 409 Squadron", + "countries": [ + "CAN" + ] + }, + "355th fs eielson afb, alaska (ak)": { + "name": "355th FS Eielson AFB, Alaska (AK)", + "countries": [ + "USA" + ] + }, + "25th fs osan ab, korea (os)": { + "name": "25th FS Osan AB, Korea (OS)", + "countries": [ + "USA" + ] + }, + "358th fs davis monthan afb, arizona (dm)": { + "name": "358th FS Davis Monthan AFB, Arizona (DM)", + "countries": [ + "USA" + ] + }, + "australia notional raaf": { + "name": "Australia Notional RAAF", + "countries": [ + "AUS" + ] + }, + "fictional canadian air force pixel camo": { + "name": "Fictional Canadian Air Force Pixel Camo", + "countries": [ + "CAN" + ] + }, + "fictional france escadron de chasse 03.003 ardennes": { + "name": "Fictional France Escadron de Chasse 03.003 ARDENNES", + "countries": [ + "FRA" + ] + }, + "canada rcaf 442 snow scheme": { + "name": "Fictional RCAF 442 Snow Scheme", + "countries": [ + "CAN" + ] + }, + "23rd tfw england afb (el)": { + "name": "23rd TFW England AFB (EL)", + "countries": [ + "USA" + ] + }, + "fictional georgian grey": { + "name": "Fictional Georgian Grey", + "countries": [ + "GRG" + ] + }, + "fictional ukraine air force 1": { + "name": "Fictional Ukraine Air Force 1", + "countries": [ + "UKR" + ] + }, + "104th fs maryland ang, baltimore (md)": { + "name": "104th FS Maryland ANG, Baltimore (MD)", + "countries": [ + "USA" + ] + }, + "fictional spanish 12nd wing": { + "name": "Fictional Spanish 12nd Wing", + "countries": [ + "SPN" + ] + }, + "a-10 grey": { + "name": "A-10 Grey", + "countries": [ + "DEN", + "TUR", + "NETH", + "BEL", + "UK" + ] + }, + "fictional german 3323": { + "name": "Fictional German 3323", + "countries": [ + "GER" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, straight wing, 1 crew, attack aircraft. Warthog", + "abilities": "Boom AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 53 + }, + "A-20G": { + "name": "A-20G", + "coalition": "blue", + "category": "aircraft", + "label": "A-20G Havoc", + "era": "WW2", + "shortLabel": "A20", + "loadouts": [ + { + "items": [ + { + "name": "4 x AN-M64 - 500lb GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "500 lb GP bomb LD*4", + "name": "500 lb GP bomb LD*4", + "roles": [ + "CAS", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + } + ], + "filename": "a-20.png", + "enabled": true, + "liveries": { + "ussr 1st gmtap": { + "name": "1st GMTAP", + "countries": [ + "SUN", + "RUS" + ] + }, + "usaf 645th bs": { + "name": "645th BS, 410th BG, 9th AF", + "countries": [ + "USA" + ] + }, + "107 sqn": { + "name": "107 SQN", + "countries": [ + "UK" + ] + }, + "ussr 27 ape dd": { + "name": "27th API DD", + "countries": [ + "SUN", + "RUS" + ] + }, + "usaf 668th bs": { + "name": "668th BS, 416th BG", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "2 propeller, straight wing, 3 crew, medium attack bomber. Havoc", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 52 + }, + "A-50": { + "name": "A-50", + "coalition": "red", + "category": "aircraft", + "label": "A-50 Mainstay", + "era": "Late Cold War", + "shortLabel": "A50", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "AWACS" + ] + } + ], + "filename": "a-50.png", + "enabled": true, + "liveries": { + "rf air force": { + "name": "RF Air Force", + "countries": [ + "RUS" + ] + }, + "rf air force new": { + "name": "RF Air Force new", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 15 crew. NATO reporting name: Mainstay", + "abilities": "AEW", + "canTargetPoint": false, + "canRearm": false, + "length": 152 + }, + "KJ-2000": { + "name": "KJ-2000", + "coalition": "red", + "category": "aircraft", + "label": "KJ-2000", + "era": "Late Cold War", + "shortLabel": "KJ2k", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "AWACS" + ] + } + ], + "filename": "a-50.png", + "enabled": true, + "liveries": { + "china air force kj-2000 (parade 93)": { + "name": "china air force kj-2000 (parade 93)", + "countries": [ + "CHN" + ] + }, + "china air force kj-2000": { + "name": "china air force kj-2000", + "countries": [ + "CHN" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 15 crew. NATO reporting name: Mainring", + "abilities": "AEW", + "canTargetPoint": false, + "canRearm": false, + "length": 152 + }, + "AJS37": { + "name": "AJS37", + "coalition": "blue", + "category": "aircraft", + "label": "AJS37 Viggen", + "era": "Mid Cold War", + "shortLabel": "AJS", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75A (AGM-65A Maverick) (TV ASM)", + "quantity": 4 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Battlefield Air Interdiction: RB-75*4, RB-24J*2, XT", + "name": "Battlefield Air Interdiction: RB-75*4, RB-24J*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-04E Anti-ship Missile", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Anti-ship: RB-04E*2, RB-74*2, XT", + "name": "Anti-ship: RB-04E*2, RB-74*2, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75T (AGM-65A Maverick) (TV ASM Lg HE Whd)", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Anti-ship (Heavy Mav): RB-75T*4, XT", + "name": "Anti-ship (Heavy Mav): RB-75T*4, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "U/22 Jammer pod", + "quantity": 1 + }, + { + "name": "KB Flare/Chaff dispenser pod", + "quantity": 1 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Hard Target (Countermeasures): RB-05, XT, KB, U22", + "name": "Hard Target (Countermeasures): RB-05, XT, KB, U22", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75T (AGM-65A Maverick) (TV ASM Lg HE Whd)", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Hard Target (MAV): RB-75T*2, RB-74*2, XT", + "name": "Hard Target (MAV): RB-75T*2, RB-74*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Ferry Flight: XT", + "name": "Ferry Flight: XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75A (AGM-65A Maverick) (TV ASM)", + "quantity": 2 + }, + { + "name": "AKAN M/55 Gunpod, 150 rnds MINGR55-HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS (75 GUN): RB-75*2, AKAN", + "name": "CAS (75 GUN): RB-75*2, AKAN", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAP: RB-74*4, XT", + "name": "CAP: RB-74*4, XT", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "U22/A Jammer", + "quantity": 1 + }, + { + "name": "KB Flare/Chaff dispenser pod", + "quantity": 1 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Countermeasures Escort: U/22A, KB", + "name": "Countermeasures Escort: U/22A, KB", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BK-90 MJ1 (72 x MJ1 HE-FRAG Bomblets)", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Strike: BK90 (MJ1)*2, RB-74*2, XT", + "name": "Strike: BK90 (MJ1)*2, RB-74*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + }, + { + "name": "AKAN M/55 Gunpod, 150 rnds MINGR55-HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS: AKAN, RB-05A", + "name": "CAS: AKAN, RB-05A", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAP (6 AAM): RB-74*4, RB-24J*2, XT", + "name": "CAP (6 AAM): RB-74*4, RB-24J*2, XT", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "ARAK M/70B HE 6x 135mm UnGd Rkts, Shu70 HE/FRAG", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Rocket Half Load HE: ARAK HE*2, RB-74*2, XT", + "name": "Rocket Half Load HE: ARAK HE*2, RB-74*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAP / Intecept: RB-05A*2, RB-74*2, XT", + "name": "CAP / Intecept: RB-05A*2, RB-74*2, XT", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "4x SB M/71 120kg GP Bomb Low-drag", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Bombs Low-drag: SB71LD*16, RB-24J*2, XT", + "name": "Bombs Low-drag: SB71LD*16, RB-24J*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75T (AGM-65A Maverick) (TV ASM Lg HE Whd)", + "quantity": 2 + }, + { + "name": "KB Flare/Chaff dispenser pod", + "quantity": 1 + }, + { + "name": "U/22 Jammer pod", + "quantity": 1 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD: RB-75T*2, U22/A, KB, XT", + "name": "SEAD: RB-75T*2, U22/A, KB, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-15F Programmable Anti-ship Missile", + "quantity": 2 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Anti-Ship (Modern): RB-15F*2, RB-74*2, XT", + "name": "Anti-Ship (Modern): RB-15F*2, RB-74*2, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "New Payload", + "name": "New Payload", + "roles": [] + }, + { + "items": [ + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAP (AJ37): RB-24J*2", + "name": "CAP (AJ37): RB-24J*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "KB Flare/Chaff dispenser pod", + "quantity": 1 + }, + { + "name": "Rb-04E Anti-ship Missile", + "quantity": 1 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "ECM Escort Anti-ship: RB-04E, KB, RB-74*2, XT", + "name": "ECM Escort Anti-ship: RB-04E, KB, RB-74*2, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "4x SB M/71 120kg GP Bomb High-drag", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Bombs High-drag: SB71HD*16, XT, RB-24J", + "name": "Bombs High-drag: SB71HD*16, XT, RB-24J", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Rb-75A (AGM-65A Maverick) (TV ASM)", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Anti-ship (Light Mav): RB-75*4, XT", + "name": "Anti-ship (Light Mav): RB-75*4, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ARAK M/70B HE 6x 135mm UnGd Rkts, Shu70 HE/FRAG", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Rocket Full Load HE: ARAK HE*4, RB-24J, XT", + "name": "Rocket Full Load HE: ARAK HE*4, RB-24J, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "2x 80kg LYSB-71 Illumination Bomb", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Illumination: LYSB*8, XT", + "name": "Illumination: LYSB*8, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Anti-ship (RB05): RB-05A*2, RB-74*2, XT", + "name": "Anti-ship (RB05): RB-05A*2, RB-74*2, XT", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AKAN M/55 Gunpod, 150 rnds MINGR55-HE", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAP (Gun): AKAN*2, RB-74*2, XT", + "name": "CAP (Gun): AKAN*2, RB-74*2, XT", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Hard Target: RB-05A*2, RB-74*2, XT", + "name": "Hard Target: RB-05A*2, RB-74*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "Rb-05A MCLOS ASM/AShM/AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "RB-05*2, XT", + "name": "RB-05*2, XT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ARAK M/70B HE 6x 135mm UnGd Rkts, Shu70 HE/FRAG", + "quantity": 4 + }, + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAS: ARAK M70 HE*4, XT", + "name": "CAS: ARAK M70 HE*4, XT", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + }, + { + "name": "4x SB M/71 120kg GP Bomb High-drag", + "quantity": 4 + }, + { + "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Runway Strike: SB71HD*16, RB-24J, XT", + "name": "Runway Strike: SB71HD*16, RB-24J, XT", + "roles": [ + "Runway Attack" + ] + } + ], + "filename": "viggen.png", + "enabled": true, + "liveries": { + "37": { + "name": "#1 Splinter F21 Norrbottens Flygflottilj", + "countries": "All" + }, + "37402": { + "name": "#3 JA-37 F21 Akktu Stakki", + "countries": "All" + }, + "se-dxnv4": { + "name": "SE-DXN by Mach3DS", + "countries": "All" + }, + "f7 skaraborg": { + "name": "#4 Splinter F7 Skaraborgs Flygflottilj 76", + "countries": "All" + }, + "sf-37 akktu stakki - f21": { + "name": "SF-37 Akktu Stakki - F21", + "countries": "All" + }, + "the show must go on": { + "name": "SHOW MUST GO ON! by Bender & Mach3DS", + "countries": "All" + }, + "baremetal": { + "name": "#2 Bare Metal F7 Skaraborgs Flygflottilj", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "Single jet engine, delta wing, 1 crew, attack aircraft. Viggen", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 52 + }, + "AV8BNA": { + "name": "AV8BNA", + "coalition": "blue", + "category": "aircraft", + "label": "AV8BNA Harrier", + "era": "Late Cold War", + "shortLabel": "AV8", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 6 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "H-L-H: Mk-82SEx6, GAU-12", + "name": "H-L-H: Mk-82SEx6, GAU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "SUU-25 x 8 LUU-2 - Target Marker Flares", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AFAC: AIM-9Mx2, SUU-25x2, LAU-68 (7 WP Tkts)x2, TPOD", + "name": "AFAC: AIM-9Mx2, SUU-25x2, LAU-68 (7 WP Tkts)x2, TPOD", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "GBU-16 - 1000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AS: AGM-122, AIM-9M, GBU-12, GBU-16x2, TPOD, Jammer Pod, GAU-12", + "name": "AS: AGM-122, AIM-9M, GBU-12, GBU-16x2, TPOD, Jammer Pod, GAU-12", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "2 GBU-38 */*", + "quantity": 1 + }, + { + "name": "AERO 1D 300 Gallons Fuel Tank ", + "quantity": 2 + }, + { + "name": "2 GBU-38 *\\*", + "quantity": 1 + }, + { + "name": "AGM-122 Sidearm", + "quantity": 1 + } + ], + "enabled": true, + "code": "H-M-H: AIM-9M, AGM-122, GBU-38x4, Fuel Tankx2", + "name": "H-M-H: AIM-9M, AGM-122, GBU-38x4, Fuel Tankx2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "2 Mk-83 *\\*", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "2 Mk-83 */*", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Interdiction (H-H-H-H): AIM-9Mx2, Mk-83LDx6, Jammer Pod, GAU-12", + "name": "Interdiction (H-H-H-H): AIM-9Mx2, Mk-83LDx6, Jammer Pod, GAU-12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AERO 1D 300 Gallons Fuel Tank ", + "quantity": 2 + }, + { + "name": "2 Mk-83 *\\*", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "2 Mk-83 */*", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Interdiction (H-H-H-H): AIM-9Mx2, Mk-83LDx4, Jammer Pod, GAU-12, Fuel Tankx2", + "name": "Interdiction (H-H-H-H): AIM-9Mx2, Mk-83LDx4, Jammer Pod, GAU-12, Fuel Tankx2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "SUU-25 x 8 LUU-2 - Target Marker Flares", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AFAC: AIM-9m, AGM-122, SUU-25x2, LAU-68 (7 WP Tkts)x2, Jammer Pod", + "name": "AFAC: AIM-9m, AGM-122, SUU-25x2, LAU-68 (7 WP Tkts)x2, Jammer Pod", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "2 Mk-82 Snakeye */*", + "quantity": 2 + }, + { + "name": "2 Mk-82 Snakeye *\\*", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Interdiction (H-L-L-H): AIM-9Mx2, Mk-82SEx8, Jammer Pod, GAU-12", + "name": "Interdiction (H-L-L-H): AIM-9Mx2, Mk-82SEx8, Jammer Pod, GAU-12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 6 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "H-M-H: Mk-82LDx6, GAU-12", + "name": "H-M-H: Mk-82LDx6, GAU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 GBU-12 *-*", + "quantity": 2 + }, + { + "name": "AERO 1D 300 Gallons Fuel Tank ", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM (H-H-H-H): GBU-12x4, TPOD, Fuel Tankx2", + "name": "PGM (H-H-H-H): GBU-12x4, TPOD, Fuel Tankx2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "2 Mk-82 Snakeye *\\*", + "quantity": 2 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "2 Mk-82 Snakeye */*", + "quantity": 2 + } + ], + "enabled": true, + "code": "L-L-L: Mk-82SEx10, Jammer Pod, GAU-12", + "name": "L-L-L: Mk-82SEx10, Jammer Pod, GAU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "SUU-25 x 8 LUU-2 - Target Marker Flares", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "AFAC: AIM-9Mx2, SUU-25x2, LAU-68 LAU-68 (7 WP Tkts)x2, GAU-12", + "name": "AFAC: AIM-9Mx2, SUU-25x2, LAU-68 LAU-68 (7 WP Tkts)x2, GAU-12", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "3 Mk-82", + "quantity": 2 + }, + { + "name": "2 Mk-82 *\\*", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "2 Mk-82 */*", + "quantity": 1 + } + ], + "enabled": true, + "code": "H-M-H: Mk-82LDx10, GAU-12", + "name": "H-M-H: Mk-82LDx10, GAU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets", + "quantity": 2 + }, + { + "name": "2 Mk-20 Rockeye *\\*", + "quantity": 2 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "2 Mk-20 Rockeye */*", + "quantity": 2 + } + ], + "enabled": true, + "code": "Area Suppression: Mk-20x10, GAU-12", + "name": "Area Suppression: Mk-20x10, GAU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-10 pod - 4 x 127mm ZUNI, UnGd Rkts Mk71, HE/FRAG", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 2 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Rockets: LAU-10 (4 HE Rkts)x2, LAU-68 (7 HE Rkts)x2", + "name": "Rockets: LAU-10 (4 HE Rkts)x2, LAU-68 (7 HE Rkts)x2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AS: AIM-9M, AGM-122, AGM-65Fx2, GBU-12, TPOD, Jammer Pod, GAU-12", + "name": "AS: AIM-9M, AGM-122, AGM-65Fx2, GBU-12, TPOD, Jammer Pod, GAU-12", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-7 with AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Helo Escort: AIM-9Mx4, Jammer Pod, GAU-12", + "name": "Helo Escort: AIM-9Mx4, Jammer Pod, GAU-12", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "2 GBU-12 *-*", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM (H-H-H-H): GBU-12x5, TPOD, Jammer POd, GAU-12", + "name": "PGM (H-H-H-H): GBU-12x5, TPOD, Jammer POd, GAU-12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-7 with AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AERO 1D 300 Gallons Fuel Tank ", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Helo Escort: AIM-9Mx4, Jammer Pod, GAU-12, Fuel Tankx2", + "name": "Helo Escort: AIM-9Mx4, Jammer Pod, GAU-12, Fuel Tankx2", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-16 - 1000lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM (H-H-H-H): AIM-9Mx2, GBU-16x4, TPOD, GAU-12", + "name": "PGM (H-H-H-H): AIM-9Mx2, GBU-16x4, TPOD, GAU-12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 4 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Anti Armor: AIM-9Mx2, AGM-65Fx4, GAU-12", + "name": "Anti Armor: AIM-9Mx2, AGM-65Fx4, GAU-12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "2 Mk-83 *\\*", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "2 Mk-83 */*", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "RA (H-M-M-H): AIM-9M, AGM-122, Mk-83LDx6, Jammer Pod, GAU-12", + "name": "RA (H-M-M-H): AIM-9M, AGM-122, Mk-83LDx6, Jammer Pod, GAU-12", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 4 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Stand Off: AIM-9M, AGM-122, AGM-65Fx4, Jammer Pod, GAU-12", + "name": "Stand Off: AIM-9M, AGM-122, AGM-65Fx4, Jammer Pod, GAU-12", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 3 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Stand Off: AIM-9M, AGM-122x3, AGM-65Fx2, Jammer Pod, GAU-12", + "name": "Stand Off: AIM-9M, AGM-122x3, AGM-65Fx2, Jammer Pod, GAU-12", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-122 Sidearm", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + } + ], + "enabled": true, + "code": "Stand Off: AIM-9Mx2, AGM-122x2, AGM-65Fx2, Jammer Pod, GAU-12", + "name": "Stand Off: AIM-9Mx2, AGM-122x2, AGM-65Fx2, Jammer Pod, GAU-12", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 3 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Iron Hand: AIM-9Mx1, AGM-122x3, LAU-68 (7 HE Rkts)x2, Jammer Pod, GAU-12", + "name": "Iron Hand: AIM-9Mx1, AGM-122x3, LAU-68 (7 HE Rkts)x2, Jammer Pod, GAU-12", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 3 + }, + { + "name": "2 Mk-20 Rockeye *\\*", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "2 Mk-20 Rockeye */*", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "Iron Hand: AIM-9M, AGM-122x3, Mk-20x4, Jammer Pod, GAU-12", + "name": "Iron Hand: AIM-9M, AGM-122x3, Mk-20x4, Jammer Pod, GAU-12", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 2 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + }, + { + "name": "AN/ALQ-164 DECM Pod", + "quantity": 1 + }, + { + "name": "GAU 12 Gunpod w/SAPHEI-T", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AS: AIM-9M, AGM-122, AGM-65E2x2, GBU-12, TPOD, Jammer Pod, GAU-12", + "name": "AS: AIM-9M, AGM-122, AGM-65E2x2, GBU-12, TPOD, Jammer Pod, GAU-12", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65L - Maverick E2/L (CCD Laser ASM)", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM: AIM-9M, AGM-122, AGM-65E2x4, TPOD", + "name": "PGM: AIM-9M, AGM-122, AGM-65E2x4, TPOD", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "AGM-122 Sidearm", + "quantity": 1 + }, + { + "name": "LAU-131 pod - 7 x 2.75\" Hydra, Laser Guided Rkts M151, HE APKWS", + "quantity": 4 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "PGM: AIM-9M, AGM-122, APKWSIIx4, TPOD", + "name": "PGM: AIM-9M, AGM-122, APKWSIIx4, TPOD", + "roles": [ + "Strike" + ] + } + ], + "filename": "av8bna.png", + "enabled": true, + "liveries": { + "vmat-203": { + "name": "VMAT-203", + "countries": "All" + }, + "vma-542": { + "name": "VMA-542", + "countries": "All" + }, + "vma-311d": { + "name": "VMA-311D", + "countries": "All" + }, + "vma-223d": { + "name": "VMA-223D", + "countries": "All" + }, + "vma-513": { + "name": "VMA-513", + "countries": "All" + }, + "vma-214d": { + "name": "VMA-214D", + "countries": "All" + }, + "vma-211": { + "name": "VMA-211", + "countries": "All" + }, + "vma-231-2": { + "name": "VMA-231-2", + "countries": "All" + }, + "vmat-203s": { + "name": "VMAT-203 Special", + "countries": "All" + }, + "vma-214": { + "name": "VMA-214", + "countries": "All" + }, + "vma-513d": { + "name": "VMA-513D", + "countries": "All" + }, + "vma-231d": { + "name": "VMA-231D", + "countries": "All" + }, + "vma-311": { + "name": "VMA-311", + "countries": "All" + }, + "default": { + "name": "default", + "countries": "All" + }, + "vma-231-1": { + "name": "VMA-231-1", + "countries": "All" + }, + "vma-211d": { + "name": "VMA-211D", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew, all weather, VTOL attack aircraft. Harrier", + "abilities": "Drogue AAR, Carrier", + "canTargetPoint": true, + "canRearm": false, + "length": 46 + }, + "An-26B": { + "name": "An-26B", + "coalition": "red", + "category": "aircraft", + "label": "An-26B Curl", + "era": "Mid Cold War", + "shortLabel": "A26", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "an-26.png", + "enabled": true, + "liveries": { + "china plaaf": { + "name": "China PLAAF", + "countries": [ + "CHN" + ] + }, + "rf navy": { + "name": "RF Navy", + "countries": [ + "RUS" + ] + }, + "abkhazian af": { + "name": "Abkhazian AF", + "countries": [ + "ABH" + ] + }, + "aeroflot": { + "name": "Aeroflot", + "countries": [ + "SUN", + "RUS" + ] + }, + "georgian af": { + "name": "Georgian AF", + "countries": [ + "GRG" + ] + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "RUS" + ] + }, + "ukraine af": { + "name": "Ukraine AF", + "countries": [ + "UKR" + ] + } + }, + "type": "Aircraft", + "description": "2 turboprop, straight wing, 5 crew, cargo and passenger aircraft. NATO reporting name: Curl", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 78 + }, + "An-30M": { + "name": "An-30M", + "coalition": "red", + "category": "aircraft", + "label": "An-30M Clank", + "era": "Mid Cold War", + "shortLabel": "A30", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "a-50.png", + "enabled": true, + "liveries": { + "15th transport ab": { + "name": "15th Transport AB", + "countries": [ + "UKR" + ] + }, + "china caac": { + "name": "China CAAC", + "countries": [ + "CHN" + ] + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 turboprop, straight wing, 7 crew, weather reseach aircraft. NATO reporting name: Clank", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 80 + }, + "B-1B": { + "name": "B-1B", + "coalition": "blue", + "category": "aircraft", + "label": "B-1B Lancer", + "era": "Late Cold War", + "shortLabel": "B1", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "28 x Mk-82 - 500lb GP Bombs LD", + "quantity": 3 + } + ], + "enabled": true, + "code": "Mk-82*84", + "name": "Mk-82*84", + "roles": [ + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "4 x AGM-154C - JSOW Unitary BROACH", + "quantity": 3 + } + ], + "enabled": true, + "code": "AGM-154*12", + "name": "AGM-154*12", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "16 x GBU-38 - JDAM, 500lb GPS Guided Bombs", + "quantity": 3 + } + ], + "enabled": true, + "code": "GBU-38*48", + "name": "GBU-38*48", + "roles": [ + "CAS", + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "10 x CBU-87 - 202 x CEM Cluster Bombs", + "quantity": 3 + } + ], + "enabled": true, + "code": "CBU-87*30", + "name": "CBU-87*30", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "10 x CBU-97 - 10 x SFW Cluster Bombs", + "quantity": 3 + } + ], + "enabled": true, + "code": "CBU-97*30", + "name": "CBU-97*30", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "10 x CBU-97 - 10 x SFW Cluster Bombs", + "quantity": 2 + }, + { + "name": "16 x GBU-38 - JDAM, 500lb GPS Guided Bombs", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-38*16, CBU-97*20", + "name": "GBU-38*16, CBU-97*20", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "8 x Mk-84 - 2000lb GP Bombs LD", + "quantity": 3 + } + ], + "enabled": true, + "code": "Mk-84*24", + "name": "Mk-84*24", + "roles": [ + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bombs", + "quantity": 3 + } + ], + "enabled": true, + "code": "GBU-31*24", + "name": "GBU-31*24", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x GBU-31(V)3/B - JDAM, 2000lb GPS Guided Penetrator Bombs", + "quantity": 3 + } + ], + "enabled": true, + "code": "GBU-31(V)3/B*24", + "name": "GBU-31(V)3/B*24", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "16 x GBU-38 - JDAM, 500lb GPS Guided Bombs", + "quantity": 2 + }, + { + "name": "8 x GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bombs", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-31*8, GBU-38*32", + "name": "GBU-31*8, GBU-38*32", + "roles": [ + "Strike", + "Strike" + ] + } + ], + "filename": "b-1.png", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "usaf standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swing wing, 2 crew bomber. Lancer", + "abilities": "Boom AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 146 + }, + "B-52H": { + "name": "B-52H", + "coalition": "blue", + "category": "aircraft", + "label": "B-52H Stratofortress", + "era": "Early Cold War", + "shortLabel": "B52", + "loadouts": [ + { + "items": [ + { + "name": "8 x AGM-84A Harpoon ASM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-84A*8", + "name": "AGM-84A*8", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6 x AGM-86D on MER", + "quantity": 2 + }, + { + "name": "8 x AGM-86D", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-86C*20", + "name": "AGM-86C*20", + "roles": [ + "Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "MER12 with 12 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "27 x Mk-82 - 500lb GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk 82*51", + "name": "Mk 82*51", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "18 x Mk-84 2000lb GP Bombs", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-84*18", + "name": "Mk-84*18", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "HSAB with 9 x Mk-20 Rockeye - 490lbs CBUs, 247 x HEAT Bomblets", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk20*18", + "name": "Mk20*18", + "roles": [ + "Strike", + "Runway Attack" + ] + } + ], + "filename": "b-52.png", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "usaf standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "8 jet engine, swept wing, 6 crew bomber. Stratofortress", + "abilities": "Boom AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 159 + }, + "Bf-109K-4": { + "name": "Bf-109K-4", + "coalition": "red", + "category": "aircraft", + "label": "Bf-109K-4", + "era": "WW2", + "shortLabel": "109", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "300 liter Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank", + "name": "Fuel Tank", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "SC 250 Type 3 J - 250kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC250", + "name": "SC250", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "SC 500 J - 500kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC500", + "name": "SC500", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + } + ], + "filename": "bf109.png", + "enabled": true, + "liveries": { + "germany_standard": { + "name": "Jagdgeschwader 27", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 white 6, jg 4": { + "name": "White 6, JG 4", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 red7 eads": { + "name": "BF109G4 -red7- EADS -fondation messerschmitt V2", + "countries": [ + "GER" + ] + }, + "bf-109 k4 iijg52": { + "name": "II./JG52", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 us captured": { + "name": "US Captured", + "countries": [ + "USA" + ] + }, + "bf-109 k4 stab jg52": { + "name": "Stab JG52", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 334xxx batch": { + "name": "334xxx batch", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 ussr green": { + "name": "Green-trophy RKKA", + "countries": [ + "SUN", + "RUS" + ] + }, + "bf-109 k4 330xxx batch": { + "name": "330xxx batch", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 irmgard": { + "name": "Bf-109K-4 Irmgard Captured", + "countries": [ + "USA" + ] + }, + "bf-109 k4 swiss e-3a j-374 1940": { + "name": "Swiss E-3a J-374 1940 l'Seducteur", + "countries": [ + "SUI" + ] + }, + "green": { + "name": "Green", + "countries": "All" + }, + "bf-109 k4 9.jg77": { + "name": "9./JG77", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 croatia": { + "name": "Croatia Air Force - 'Black 4'", + "countries": [ + "HRV", + "NZG", + "GER" + ] + }, + "bf-109 k4 9.jg27 (w10+i)": { + "name": "9./JG27 (W10+I)", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 legion condor spain 1939": { + "name": "6-123 ESPAÑA", + "countries": [ + "SPN" + ] + }, + "bf-109 k4 jagdgeschwader 53": { + "name": " Jagdgeschwader 53", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 1.njg 11": { + "name": "NJG 11", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 g10 of tibor tobak rhaf": { + "name": "BF109G10 RHAF Tibor Tobak by Reflected", + "countries": [ + "GER", + "HUN", + "NZG" + ] + }, + "bf-109 k4 jagdgeschwader 77": { + "name": "Jagdgeschwader 77", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 iaf s-199": { + "name": "S-199 IDF by Ovenmit", + "countries": [ + "ISR" + ] + }, + "bf-109 k4 iiijg27": { + "name": "III/JG27", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 1.njg 11 (white 5)": { + "name": "1./NJG 11 (W5)", + "countries": [ + "GER", + "NZG" + ] + }, + "bf-109 k4 raf vd 358 e-2": { + "name": "RAF VD 358 E-2 - UK Captured", + "countries": [ + "UK" + ] + }, + "bf-109 k4 335xxx batch": { + "name": "335xxx batch", + "countries": [ + "GER", + "NZG" + ] + } + }, + "type": "Aircraft", + "description": "Single propeller, straight wing, 1 crew. 109", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 29 + }, + "C-101CC": { + "name": "C-101CC", + "coalition": "blue", + "category": "aircraft", + "label": "C-101CC", + "era": "Late Cold War", + "shortLabel": "101", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9P, DEFA 553 CANNON (I)", + "name": "2*AIM-9P, DEFA 553 CANNON (I)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M, DEFA 553 CANNON (I)", + "name": "2*AIM-9M, DEFA 553 CANNON (I)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9P, DEFA 533 CANNON (II)", + "name": "2*AIM-9P, DEFA 533 CANNON (II)", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9P, AN-M3 CANNON (IV)", + "name": "2*AIM-9P, AN-M3 CANNON (IV)", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, DEFA 553 CANNON", + "name": "2*R.550 MAGIC, DEFA 553 CANNON", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M, AN-M3 CANNON (III)", + "name": "2*AIM-9M, AN-M3 CANNON (III)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9P, DEFA 553 CANNON", + "name": "2*AIM-9P, DEFA 553 CANNON", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, DEFA 553 CANNON (III)", + "name": "2*R.550 MAGIC, DEFA 553 CANNON (III)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "Belouga", + "quantity": 2 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*AIM-9P, 2*BELOUGA, DEFA 553 CANNON", + "name": "2*AIM-9P, 2*BELOUGA, DEFA 553 CANNON", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "Sea Eagle - ASM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*AIM9-P, 2*SEA EAGLE, DEFA-553 CANNON", + "name": "2*AIM9-P, 2*SEA EAGLE, DEFA-553 CANNON", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Sea Eagle - ASM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M 2*SEA EAGLE, AN-M3 CANNON", + "name": "2*AIM-9M 2*SEA EAGLE, AN-M3 CANNON", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M, AN-M3 CANNON", + "name": "2*AIM-9M, AN-M3 CANNON", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Belouga", + "quantity": 2 + }, + { + "name": "4*BDU-33 - AF/B37K Rack with 4*25lb Practice Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*BELOUGA,2*BDU-33, DEFA-553 CANNON", + "name": "2*BELOUGA,2*BDU-33, DEFA-553 CANNON", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Sea Eagle - ASM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2* SEA EAGLE, DEFA-553 CANNON", + "name": "2* SEA EAGLE, DEFA-553 CANNON", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "BR-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*AIM-9P, 2*BR-250,2*MK-82, DEFA 553 CANNON", + "name": "2*AIM-9P, 2*BR-250,2*MK-82, DEFA 553 CANNON", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + }, + { + "name": "Sea Eagle - ASM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, 2*SEA EAGLE , DEFA-553 CANNON", + "name": "2*R.550 MAGIC, 2*SEA EAGLE , DEFA-553 CANNON", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, DEFA 553 CANNON (IV)", + "name": "2*R.550 MAGIC, DEFA 553 CANNON (IV)", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Belouga", + "quantity": 2 + }, + { + "name": "BR-500 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*BELOUGA, 2*BR-500, DEFA 553 CANNON", + "name": "2*BELOUGA, 2*BR-500, DEFA 553 CANNON", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M, DEFA 553 CANNON (IV)", + "name": "2*AIM-9M, DEFA 553 CANNON (IV)", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, AN-M3 CANNON (II)", + "name": "2*R.550 MAGIC, AN-M3 CANNON (II)", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic, DEFA 553 CANNON (I)", + "name": "2*R550 Magic, DEFA 553 CANNON (I)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + }, + { + "name": "BIN-200 - 200kg Napalm Incendiary Bomb", + "quantity": 2 + }, + { + "name": "Belouga", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*AIM-9M ,2*BELOUGA,2*BIN-200, AN-M3 CANNON", + "name": "2*AIM-9M ,2*BELOUGA,2*BIN-200, AN-M3 CANNON", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*AIM-9M, 2*LAU 68, 2*MK-82, DEFA 553 CANNON", + "name": "2*AIM-9M, 2*LAU 68, 2*MK-82, DEFA 553 CANNON", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AN-M3 - 2*Browning Machine Guns 12.7mm", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9P, AN-M3 CANNON (III)", + "name": "2*AIM-9P, AN-M3 CANNON (III)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9M, DEFA 533 CANNON (II)", + "name": "2*AIM-9M, DEFA 533 CANNON (II)", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "DEFA-553 - 30mm Revolver Cannon", + "quantity": 1 + }, + { + "name": "4*BDU-33 - AF/B37K Rack with 4*25lb Practice Bomb LD", + "quantity": 2 + }, + { + "name": "BR-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "R550 Magic 2 IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*R.550 MAGIC, 2*BR-250, 2*BDU-33, DEFA 553 CANNON", + "name": "2*R.550 MAGIC, 2*BR-250, 2*BDU-33, DEFA 553 CANNON", + "roles": [ + "CAS" + ] + } + ], + "filename": "c-101.png", + "enabled": true, + "liveries": { + "i brigada aerea - chile early green n.1 a-36 halcon": { + "name": "I Brigada Aerea - Chile Early Green", + "countries": [ + "CHL" + ] + }, + "aviodev skin": { + "name": "Aviodev Skin", + "countries": [ + "CUB", + "AUS", + "PRT", + "SUN", + "USA", + "BLR", + "HRV", + "LBN", + "SVK", + "TUR", + "ARG", + "BEL", + "FIN", + "SAU", + "UN", + "RSI", + "CHL", + "AUT", + "EGY", + "CAN", + "QAT", + "YUG", + "ISR", + "PER", + "BHR", + "NGA", + "IDN", + "KAZ", + "INS", + "AUSAF", + "PAK", + "SVN", + "RED", + "ROU", + "DEN", + "TUN", + "IND", + "CZE", + "MYS", + "GHA", + "OMN", + "CYP", + "RSO", + "IRN", + "UKR", + "JPN", + "THA", + "JOR", + "RSA", + "MEX", + "NOR", + "ITA", + "NETH", + "SUI", + "VNM", + "KOR", + "GRG", + "SDN", + "UK", + "BRA", + "ARE", + "ABH", + "BOL", + "RUS", + "PHL", + "SPN", + "MAR", + "DZA", + "GDR", + "HND", + "PRK", + "SRB", + "BGR", + "LBY", + "VEN", + "IRQ", + "SYR", + "NZG", + "GRC", + "POL", + "SWE", + "GER", + "CHN", + "YEM", + "FRA", + "HUN", + "ETH", + "BLUE", + "KWT" + ] + }, + "georgia combat fictional green": { + "name": "Georgia Combat Fictional Green", + "countries": [ + "GRG" + ] + }, + "i brigada aerea - chile early grey n.1 a-36 halcon": { + "name": "I Brigada Aerea - Chile Early Grey", + "countries": [ + "CHL" + ] + }, + "royal jordanian air force": { + "name": "Royal jordanian Air Force ", + "countries": [ + "JOR" + ] + }, + "georgia combat fictional spots": { + "name": "Georgia Combat Fictional Spots", + "countries": [ + "GRG" + ] + }, + "i brigada aerea - grupo de aviacion n.1 a-36 halcon desert skin": { + "name": "I Brigada Aerea - Grupo de Aviacion N.1 A-36 HALCON Desert Skin", + "countries": [ + "CHL" + ] + }, + "i brigada aerea - chile early agressor nº410 n.1 a-36 halcon": { + "name": "I Brigada Aerea - Chile Early Agressor Nº410 ", + "countries": [ + "CHL" + ] + }, + "usaf agressor fictional": { + "name": "USAF Agressor Fictional", + "countries": [ + "USA", + "AUSAF", + "BLUE" + ] + }, + "i brigada aerea - grupo de aviacion n.1 a-36 halcon": { + "name": "I Brigada Aerea - Grupo de Aviacion N.1 A-36 HALCON", + "countries": [ + "CHL" + ] + }, + "i brigada aerea - chile early agressor nº411 n.1 a-36 halcon": { + "name": "I Brigada Aerea - Chile Early Agressor Nº411", + "countries": [ + "CHL" + ] + }, + "claex green camu skin - centro logistico de armamento y experimentacion": { + "name": "CLAEX Green Camu Skin - Centro Logistico de Armamento y Experimentacion", + "countries": [ + "RED", + "SPN", + "BLUE" + ] + }, + "russia combat fictional": { + "name": "Russia Combat Fictional", + "countries": [ + "RED", + "RUS" + ] + }, + "georgia combat fictional wolf": { + "name": "Georgia Combat Fictional Wolf", + "countries": [ + "GRG" + ] + }, + "honduras - air force comayagua coronel jose enrique soto cano air base skin 1": { + "name": "Honduras - Air Force Comayagua Coronel Jose Enrique Soto Cano Air Base Skin 1", + "countries": [ + "HND" + ] + }, + "i brigada aerea - grupo de aviacion n.3 a-36 halcon": { + "name": "I Brigada Aerea - Grupo de Aviacion N.3 A-36 HALCON", + "countries": [ + "CHL" + ] + }, + "honduras - air force comayagua coronel jose enrique soto cano air base skin 2": { + "name": "Honduras - Air Force Comayagua Coronel Jose Enrique Soto Cano Air Base Skin 2", + "countries": [ + "HND" + ] + }, + "claex desert camu skin - centro logistico de armamento y experimentacion": { + "name": "CLAEX Desert Camu Skin - Centro Logistico de Armamento y Experimentacion", + "countries": [ + "RED", + "SPN", + "BLUE" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 42 + }, + "C-130": { + "name": "C-130", + "coalition": "blue", + "category": "aircraft", + "label": "C-130 Hercules", + "era": "Early Cold War", + "shortLabel": "130", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "c-130.png", + "enabled": true, + "liveries": { + "belgian air force": { + "name": "Belgian Air Force", + "countries": [ + "BEL" + ] + }, + "iriaf 5-8518": { + "name": "IRIAF 5-8518", + "countries": [ + "IRN" + ] + }, + "israel defence force": { + "name": "Israel Defence Force", + "countries": [ + "ISR" + ] + }, + "haf gray": { + "name": "Hellenic Airforce - Gray", + "countries": [ + "GRC" + ] + }, + "turkish air force": { + "name": "Turkish Air Force", + "countries": [ + "TUR" + ] + }, + "royal danish air force": { + "name": "Royal Danish Air Force", + "countries": [ + "DEN" + ] + }, + "algerian af green": { + "name": "Algerian AF Green", + "countries": [ + "DZA" + ] + }, + "royal netherlands air force": { + "name": "Royal Netherlands Air Force", + "countries": [ + "NETH" + ] + }, + "canada's air force": { + "name": "Canada's Air Force", + "countries": [ + "CAN" + ] + }, + "royal norwegian air force": { + "name": "Royal Norwegian Air Force", + "countries": [ + "NOR" + ] + }, + "iriaf 5-8503": { + "name": "IRIAF 5-8503", + "countries": [ + "IRN" + ] + }, + "us air force": { + "name": "US Air Force", + "countries": [ + "USA" + ] + }, + "royal air force": { + "name": "Royal Air Force", + "countries": [ + "UK" + ] + }, + "air algerie l-382 white": { + "name": "Air Algerie L-382 White", + "countries": [ + "DZA" + ] + }, + "french air force": { + "name": "French Air Force", + "countries": [ + "FRA" + ] + }, + "spanish air force": { + "name": "Spanish Air Force", + "countries": [ + "SPN" + ] + }, + "algerian af h30 white": { + "name": "Algerian AF H30 White", + "countries": [ + "DZA" + ] + } + }, + "type": "Aircraft", + "description": "4 turboprop, stright wing, 3 crew. Hercules", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 97 + }, + "C-17A": { + "name": "C-17A", + "coalition": "blue", + "category": "aircraft", + "label": "C-17A Globemaster", + "era": "Modern", + "shortLabel": "C17", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "c-17.png", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "usaf standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 3 crew. Globemaster", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 174 + }, + "E-2C": { + "name": "E-2C", + "coalition": "blue", + "category": "aircraft", + "label": "E-2D Hawkeye", + "era": "Mid Cold War", + "shortLabel": "E2", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "AWACS" + ] + } + ], + "filename": "e-2.png", + "enabled": true, + "liveries": { + "vaw-125 tigertails": { + "name": "VAW-125 Tigertails", + "countries": [ + "USA" + ] + }, + "e-2d demo": { + "name": "E-2D Demo", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "2 turboprop, straight wing, 5 crew. Hawkeye", + "abilities": "AEW, Carrier", + "canTargetPoint": false, + "canRearm": false, + "length": 57 + }, + "E-3A": { + "name": "E-3A", + "coalition": "blue", + "category": "aircraft", + "label": "E-3A Sentry", + "era": "Mid Cold War", + "shortLabel": "E3", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "AWACS" + ] + } + ], + "filename": "e-3.png", + "enabled": true, + "liveries": { + "nato": { + "name": "nato", + "countries": [ + "USA", + "FRA", + "UK" + ] + }, + "usaf standard": { + "name": "usaf standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 17 crew. Sentry", + "abilities": "AEW", + "canTargetPoint": false, + "canRearm": false, + "length": 152 + }, + "F-117A": { + "name": "F-117A", + "coalition": "blue", + "category": "aircraft", + "label": "F-117A Nighthawk", + "era": "Late Cold War", + "shortLabel": "117", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-12*2", + "name": "GBU-12*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-10*2", + "name": "GBU-10*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-27 - 2000lb Laser Guided Penetrator Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-27*2", + "name": "GBU-27*2", + "roles": [ + "Strike" + ] + } + ], + "filename": "f-117.png", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "usaf standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, delta wing, 1 crew. Nighthawk", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 65 + }, + "F-14A-135-GR": { + "name": "F-14A-135-GR", + "coalition": "blue", + "category": "aircraft", + "label": "F-14A-135-GR Tomcat", + "era": "Late Cold War", + "shortLabel": "14A", + "loadouts": [ + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*2, AIM-7F*1, AIM-9L*4, XT*2", + "name": "AIM-54A-MK47*2, AIM-7F*1, AIM-9L*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-7F*2, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*4, AIM-7F*2, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-9L*4, XT*2", + "name": "AIM-54A-MK47*4, AIM-9L*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-9M*4, XT*2", + "name": "AIM-54A-MK47*4, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 6 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*6, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*6, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-20", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-20*2", + "name": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-20*2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 1 + }, + { + "name": "AIM-7F", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-82*1", + "name": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-82*1", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-82*2", + "name": "AIM-54A-MK60*1, AIM-7F*1, AIM-9L*2, XT*2, Mk-82*2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-20", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2, LANTIRN", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2, LANTIRN", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*4, AIM-9M*4, XT*2", + "name": "AIM-54A-MK60*4, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7F", + "quantity": 4 + }, + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-7F*4, AIM-9L*4, XT*2", + "name": "AIM-7F*4, AIM-9L*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7F", + "quantity": 6 + }, + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-7F*6, AIM-9L*2, XT*2", + "name": "AIM-7F*6, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "GBU-12", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-7M*1, AIM-9M*2, XT*2, GBU-12*2, LANTIRN", + "name": "AIM-7M*1, AIM-9M*2, XT*2, GBU-12*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "GBU-24", + "quantity": 1 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-7M*1, AIM-9M*2, XT*2, GBU-24*1, LANTIRN", + "name": "AIM-7M*1, AIM-9M*2, XT*2, GBU-24*1, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "3 BDU-33", + "quantity": 4 + } + ], + "enabled": true, + "code": "BDU-33*12", + "name": "BDU-33*12", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "MAK79 4 BDU-33", + "quantity": 2 + }, + { + "name": "MAK79 3 BDU-33", + "quantity": 2 + } + ], + "enabled": true, + "code": "BDU-33*14", + "name": "BDU-33*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "GBU-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-10*2", + "name": "GBU-10*2", + "roles": [ + "Strike", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "GBU-12", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-12*4", + "name": "GBU-12*4", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-16", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-16*4", + "name": "GBU-16*4", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-24*2", + "name": "GBU-24*2", + "roles": [ + "Strike", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "2 SUU-25 * 8 LUU-2", + "quantity": 1 + }, + { + "name": "SUU-25 * 8 LUU-2", + "quantity": 1 + } + ], + "enabled": true, + "code": "LUU-2*24", + "name": "LUU-2*24", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-20", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-20*4", + "name": "Mk-20*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MAK79 4 Mk-81", + "quantity": 2 + }, + { + "name": "MAK79 3 Mk-81", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-81*14", + "name": "Mk-81*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "MAK79 4 Mk-82", + "quantity": 2 + }, + { + "name": "MAK79 3 Mk-82", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-82*14", + "name": "Mk-82*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "Mk-82", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-82*4", + "name": "Mk-82*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82AIR", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-82AIR*4", + "name": "Mk-82AIR*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-83", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-83*4", + "name": "Mk-83*4", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Mk-84", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-84*4", + "name": "Mk-84*4", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "XT*2", + "name": "XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "2 LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + }, + { + "name": "LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + } + ], + "enabled": true, + "code": "Zuni*12", + "name": "Zuni*12", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "2 LAU-10 - 4 ZUNI MK 71", + "quantity": 3 + }, + { + "name": "LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + } + ], + "enabled": true, + "code": "Zuni*28", + "name": "Zuni*28", + "roles": [ + "Strike", + "CAS" + ] + } + ], + "filename": "f-14.png", + "enabled": true, + "liveries": { + "rogue nation(top gun - maverick)": { + "name": "Top Gun: Maverick - Rogue Nation", + "countries": "All" + }, + "vf-21 freelancers 200": { + "name": "VF-21 Freelancers 200", + "countries": "All" + }, + "vf-11 ae106 1988": { + "name": "VF-11 AE106 1988", + "countries": "All" + }, + "vf-301 nd113": { + "name": "VF-301 ND113 by Mach3DS", + "countries": "All" + }, + "vf-301 nd111": { + "name": "VF-301 ND111 by Mach3DS", + "countries": "All" + }, + "vf-154 black knights 101": { + "name": "00 - VF-154 Black Knights 101", + "countries": "All" + }, + "vf-14 tophatters aj206 (1999 allied force)": { + "name": "VF-14 Tophatters AJ206 (1999 Allied Force)", + "countries": "All" + }, + "vf-31 ae204 1988": { + "name": "VF-31 AE204 1988", + "countries": "All" + }, + "vf-1 wolfpack nk102 (1974)": { + "name": "VF-1 Wolfpack NK102 (1974)", + "countries": "All" + }, + "vf-33 starfighters ab201 (1988)": { + "name": "VF-33 Starfighters AB201(Dale Snodgrass)", + "countries": "All" + }, + "vf-31 1991 ae200": { + "name": "VF-31 1991 AE200 by Mach3DS", + "countries": "All" + }, + "vf-41 black aces aj100 (1999 allied force)": { + "name": "VF-41 Black Aces AJ100 (1999 Allied Force)", + "countries": "All" + }, + "vf-41 black aces aj101 (1999 allied force)": { + "name": "VF-41 Black Aces AJ101 (1999 Allied Force)", + "countries": "All" + }, + "vf-31 1991 ae205": { + "name": "VF-31 1991 AE205 by Mach3DS", + "countries": "All" + }, + "vf-41 black aces aj102 (1999 allied force)": { + "name": "VF-41 Black Aces AJ102 (1999 Allied Force)", + "countries": "All" + }, + "vf-1 wolfpack nk101 (1974)": { + "name": "VF-1 Wolfpack NK101 (1974)", + "countries": "All" + }, + "vf-31 ae200 1988": { + "name": "VF-31 AE200 1988", + "countries": "All" + }, + "vf-11 red rippers 106": { + "name": "VF-11 Red Rippers 106", + "countries": "All" + }, + "vf-1 wolfpack nk103 (1974)": { + "name": "VF-1 Wolfpack NK103 (1974)", + "countries": "All" + }, + "vf-14 tophatters ab103 (1976)": { + "name": "VF-14 Tophatters AB103(1976)", + "countries": "All" + }, + "vf-111 sundowners 200": { + "name": "VF-111 Sundowners 200", + "countries": "All" + }, + "top gun 114": { + "name": "Top Gun 114 Maverick and Goose", + "countries": "All" + }, + "vf-11 ae103 1988": { + "name": "VF-11 AE103 1988", + "countries": "All" + }, + "vx-4 vandy one sad bunny (1992)": { + "name": "VX-4 Vandy One Sad Bunny (1992)", + "countries": "All" + }, + "vf-211 fighting checkmates 100 (2001)": { + "name": "VF-211 Fighting Checkmates 100 (2001)", + "countries": [ + "USA" + ] + }, + "vf-301 nd104": { + "name": "VF-301 ND104 by Mach3DS", + "countries": "All" + }, + "vf-32 swordsmen ab200 (1976)": { + "name": "VF-32 Swordsmen AB200 (1976)", + "countries": "All" + }, + "vf-211 fighting checkmates 105": { + "name": "VF-211 Fighting Checkmates 105", + "countries": "All" + }, + "vf-14 tophatters ab100 (1976)": { + "name": "VF-14 Tophatters AB100(1976)", + "countries": "All" + }, + "vf-11 ae101 1988": { + "name": "VF-11 AE101 1988", + "countries": "All" + }, + "vf-14 tophatters aj202 (1999 allied force)": { + "name": "VF-14 Tophatters AJ202 (1999 Allied Force)", + "countries": "All" + }, + "vf-1 wolfpack nk100 (1974)": { + "name": "VF-1 Wolfpack NK100 (1974)", + "countries": "All" + }, + "vf-301 nd101 hivis": { + "name": "VF-301 ND101 HiVis by Mach3DS", + "countries": "All" + }, + "vf-14 tophatters aj201 (1999 allied force)": { + "name": "VF-14 Tophatters AJ201 (1999 Allied Force)", + "countries": "All" + }, + "vf-14 tophatters aj200 (1999) 80th aniversary": { + "name": "VF-14 Tophatters AJ200 (1999) 80th Anniversary", + "countries": "All" + }, + "vf-41 black aces aj104 (1999 allied force)": { + "name": "VF-41 Black Aces AJ104 (1999 Allied Force)", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swing wing, 2 crew. Tomcat", + "abilities": "Drogue AAR, Carrier", + "canTargetPoint": true, + "canRearm": false, + "length": 62 + }, + "F-14B": { + "name": "F-14B", + "coalition": "blue", + "category": "aircraft", + "label": "F-14B Tomcat", + "era": "Late Cold War", + "shortLabel": "14B", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "XT*2", + "name": "XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 6 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*6, AIM-9M*2, XT*2", + "name": "AIM-54A-MK47*6, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 6 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*6, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*6, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 6 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*6, AIM-9M*2, XT*2", + "name": "AIM-54A-MK60*6, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54C-Mk47", + "quantity": 6 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54C-MK47*6, AIM-9M*2, XT*2", + "name": "AIM-54C-MK47*6, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7M", + "quantity": 6 + }, + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-7M*6, AIM-9M*2, XT*2", + "name": "AIM-7M*6, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7M", + "quantity": 6 + }, + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-7M*6, AIM-9L*2, XT*2", + "name": "AIM-7M*6, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-7M*2, AIM-9M*2, XT*2", + "name": "AIM-54A-MK47*4, AIM-7M*2, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-7M*2, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*4, AIM-7M*2, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*4, AIM-7M*2, AIM-9M*2, XT*2", + "name": "AIM-54A-MK60*4, AIM-7M*2, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54C-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54C-MK47*4, AIM-7M*2, AIM-9M*2, XT*2", + "name": "AIM-54C-MK47*4, AIM-7M*2, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*2, AIM-7M*1, AIM-9M*2, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*2, AIM-7M*1, AIM-9M*2, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*2, AIM-7M*1, AIM-9M*4, XT*2", + "name": "AIM-54A-MK47*2, AIM-7M*1, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*2, AIM-7M*1, AIM-9M*4, XT*2", + "name": "AIM-54A-MK60*2, AIM-7M*1, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54C-Mk47", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54C-MK47*2, AIM-7M*1, AIM-9M*4, XT*2", + "name": "AIM-54C-MK47*2, AIM-7M*1, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-9M*2, AIM-9L*2, XT*2", + "name": "AIM-54A-MK47*4, AIM-9M*2, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*4, AIM-9M*4, XT*2", + "name": "AIM-54A-MK47*4, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*4, AIM-9M*4, XT*2", + "name": "AIM-54A-MK60*4, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54C-Mk47", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-54C-MK47*4, AIM-9M*4, XT*2", + "name": "AIM-54C-MK47*4, AIM-9M*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9M", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-7M*4, AIM-9M*2, AIM-9L*2, XT*2", + "name": "AIM-7M*4, AIM-9M*2, AIM-9L*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7M", + "quantity": 4 + }, + { + "name": "LAU-138 AIM-9L", + "quantity": 2 + }, + { + "name": "LAU-7 AIM-9L", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-7M*4, AIM-9L*4, XT*2", + "name": "AIM-7M*4, AIM-9L*4, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 3 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk47", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK47*2, AIM-7M*3, AIM-9M*2, XT*2", + "name": "AIM-54A-MK47*2, AIM-7M*3, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 3 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*2, AIM-7M*3, AIM-9M*2, XT*2", + "name": "AIM-54A-MK60*2, AIM-7M*3, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 3 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "AIM-54C-Mk47", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-54C-MK47*2, AIM-7M*3, AIM-9M*2, XT*2", + "name": "AIM-54C-MK47*2, AIM-7M*3, AIM-9M*2, XT*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "MAK79 4 BDU-33", + "quantity": 2 + }, + { + "name": "MAK79 3 BDU-33", + "quantity": 2 + } + ], + "enabled": true, + "code": "BDU-33*14", + "name": "BDU-33*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "3 BDU-33", + "quantity": 4 + } + ], + "enabled": true, + "code": "BDU-33*12", + "name": "BDU-33*12", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "GBU-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-10*2", + "name": "GBU-10*2", + "roles": [ + "Strike", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "GBU-12", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-12*4", + "name": "GBU-12*4", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-16", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-16*4", + "name": "GBU-16*4", + "roles": [ + "Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-24*2", + "name": "GBU-24*2", + "roles": [ + "Strike", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Mk-84", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-84*4", + "name": "Mk-84*4", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Mk-83", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-83*4", + "name": "Mk-83*4", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Mk-82", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-82*4", + "name": "Mk-82*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MAK79 4 Mk-82", + "quantity": 2 + }, + { + "name": "MAK79 3 Mk-82", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-82*14", + "name": "Mk-82*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "MAK79 4 Mk-81", + "quantity": 2 + }, + { + "name": "MAK79 3 Mk-81", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-81*14", + "name": "Mk-81*14", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "Mk-20", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-20*4", + "name": "Mk-20*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-82AIR", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-82AIR*4", + "name": "Mk-82AIR*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "2 LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + }, + { + "name": "LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + } + ], + "enabled": true, + "code": "Zuni*12", + "name": "Zuni*12", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "2 LAU-10 - 4 ZUNI MK 71", + "quantity": 3 + }, + { + "name": "LAU-10 - 4 ZUNI MK 71", + "quantity": 1 + } + ], + "enabled": true, + "code": "Zuni*28", + "name": "Zuni*28", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "2 SUU-25 * 8 LUU-2", + "quantity": 1 + }, + { + "name": "SUU-25 * 8 LUU-2", + "quantity": 1 + } + ], + "enabled": true, + "code": "LUU-2*24", + "name": "LUU-2*24", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 1 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*1", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*1", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-20", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "GBU-12", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-7M*1, AIM-9M*2, XT*2, GBU-12*2, LANTIRN", + "name": "AIM-7M*1, AIM-9M*2, XT*2, GBU-12*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "GBU-24", + "quantity": 1 + }, + { + "name": "AIM-7M", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-7M*1, AIM-9M*2, XT*2, GBU-24*1, LANTIRN", + "name": "AIM-7M*1, AIM-9M*2, XT*2, GBU-24*1, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-82", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2, LANTIRN", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-82*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-138 AIM-9M", + "quantity": 2 + }, + { + "name": "LANTIRN Targeting Pod", + "quantity": 1 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 2 + }, + { + "name": "Mk-20", + "quantity": 2 + }, + { + "name": "AIM-7M", + "quantity": 1 + }, + { + "name": "AIM-54A-Mk60", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2, LANTIRN", + "name": "AIM-54A-MK60*1, AIM-7M*1, AIM-9M*2, XT*2, Mk-20*2, LANTIRN", + "roles": [ + "Strike", + "CAS", + "Runway Attack", + "Strike" + ] + } + ], + "filename": "f-14.png", + "enabled": true, + "liveries": { + "vf-103 sluggers 206 (1995)": { + "name": "VF-103 Sluggers 206 (1995)", + "countries": "All" + }, + "vf-143 pukin dogs low vis": { + "name": "VF-143 Pukin Dogs Low Vis (1998)", + "countries": "All" + }, + "rogue nation(top gun - maverick)": { + "name": "Top Gun: Maverick - Rogue Nation", + "countries": "All" + }, + "vf-31 tomcatters nk101 (2004)": { + "name": "VF-31 Tomcatters NK101 (2004)", + "countries": "All" + }, + "vf-32 fighting swordsmen 103": { + "name": "VF-32 Fighting Swordsmen 103 (1998)", + "countries": "All" + }, + "vf-103 jolly rogers hi viz": { + "name": "VF-103 Jolly Rogers Hi Viz", + "countries": "All" + }, + "vf-101 dark": { + "name": "VF-101 Dark", + "countries": "All" + }, + "vf-102 diamondbacks": { + "name": "01 - VF-102 Diamondbacks 1996", + "countries": "All" + }, + "vf-143 pukin dogs low vis (1995)": { + "name": "VF-143 Pukin Dogs Low Vis (1995)", + "countries": "All" + }, + "vx-4 xf-51 1988": { + "name": "VX-4 XF-51 1988", + "countries": "All" + }, + "top gun 114 hb weather": { + "name": "Top Gun 114 Maverick and Goose", + "countries": "All" + }, + "vf-24 renegades": { + "name": "VF-24 Renegades Low-Viz", + "countries": "All" + }, + "vf-11 red rippers (1997)": { + "name": "VF-11 Red Rippers (1997)", + "countries": "All" + }, + "vf-32 fighting swordsmen 100 (2000)": { + "name": "VF-32 Fighting Swordsmen 100 (2000)", + "countries": [ + "USA" + ] + }, + "vf-74 bedevilers 1991": { + "name": "VF-74 Be-Devilers 1991", + "countries": "All" + }, + "santa": { + "name": "Fictional Christmas Livery", + "countries": "All" + }, + "vf-103 sluggers 207 (1991)": { + "name": "VF-103 Sluggers 207 (1991)", + "countries": "All" + }, + "vf-32 fighting swordsmen 101": { + "name": "VF-32 Fighting Swordsmen 101 (1998)", + "countries": "All" + }, + "vf-103 last ride": { + "name": "VF-103 Last Ride", + "countries": "All" + }, + "vf-143 pukin dogs cag": { + "name": "VF-143 Pukin' Dogs CAG", + "countries": "All" + }, + "vx-9 vampires xf240 white whale": { + "name": "VX-9 Vampires XF240 White Whale", + "countries": "All" + }, + "vf-74 adversary": { + "name": "VF-74 Adversary", + "countries": "All" + }, + "vx-9 vandy 41 (1995)": { + "name": "VX-9 Vandy 41 (1995)", + "countries": "All" + }, + "vf-142 ghostriders": { + "name": "VF-142 Ghostriders", + "countries": "All" + }, + "vf-211 fighting checkmates": { + "name": "VF-211 Fighting Checkmates", + "countries": "All" + }, + "vf-101 grim reapers low vis": { + "name": "VF-101 Grim Reapers Low Vis", + "countries": "All" + }, + "chromecat": { + "name": "Fictional Chrome Cat ", + "countries": "All" + }, + "vf-32 fighting swordsmen 102": { + "name": "VF-32 Fighting Swordsmen 102 (1998)", + "countries": "All" + }, + "vf-102 diamondbacks 102": { + "name": "VF-102 Diamondbacks 102 (2000)", + "countries": "All" + }, + "vf-101 red": { + "name": "VF-101 Red", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swing wing, 2 crew. Tomcat", + "abilities": "Drogue AAR, Carrier", + "canTargetPoint": true, + "canRearm": false, + "length": 62 + }, + "F-15C": { + "name": "F-15C", + "coalition": "blue", + "category": "aircraft", + "label": "F-15C Eagle", + "era": "Late Cold War", + "shortLabel": "15C", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-120B*4, AIM-7M*2, AIM-9M*2, Fuel*3", + "name": "AIM-120B*4, AIM-7M*2, AIM-9M*2, Fuel*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9*2,AIM-120*6,Fuel", + "name": "AIM-9*2,AIM-120*6,Fuel", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-120*4,Fuel*3", + "name": "AIM-9*4,AIM-120*4,Fuel*3", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-120*4,Fuel", + "name": "AIM-9*4,AIM-120*4,Fuel", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*2,AIM-120*2,AIM-7*4,Fuel*3", + "name": "AIM-9*2,AIM-120*2,AIM-7*4,Fuel*3", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*2,AIM-120*6,Fuel*3", + "name": "AIM-9*2,AIM-120*6,Fuel*3", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-7*4,Fuel", + "name": "AIM-9*4,AIM-7*4,Fuel", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120*8,Fuel", + "name": "AIM-120*8,Fuel", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-7*4,Fuel*3", + "name": "AIM-9*4,AIM-7*4,Fuel*3", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 3 + }, + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-120*8,Fuel*3", + "name": "AIM-120*8,Fuel*3", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9*2,AIM-120*2,AIM-7*4,Fuel", + "name": "AIM-9*2,AIM-120*2,AIM-7*4,Fuel", + "roles": [ + "CAP" + ] + } + ], + "filename": "f-15.png", + "enabled": true, + "liveries": { + "106th sqn (8th airbase)": { + "name": "106th SQN (8th Airbase)", + "countries": [ + "ISR" + ] + }, + "433rd weapons sqn (wa)": { + "name": "433rd Weapons SQN (WA)", + "countries": [ + "USA" + ] + }, + "493rd fighter sqn (ln)": { + "name": "493rd Fighter SQN (LN)", + "countries": [ + "USA" + ] + }, + "12th fighter sqn (ak)": { + "name": "12th Fighter SQN (AK)", + "countries": [ + "USA" + ] + }, + "390th fighter sqn": { + "name": "390th Fighter SQN", + "countries": [ + "USA" + ] + }, + "65th aggressor sqn (wa) flanker": { + "name": "65th Aggressor SQN (WA) Flanker", + "countries": [ + "USA", + "AUSAF" + ] + }, + "65th aggressor sqn (wa) super_flanker": { + "name": "65th Aggressor SQN (WA) SUPER_Flanker", + "countries": [ + "USA", + "AUSAF" + ] + }, + "65th aggressor sqn (wa) mig": { + "name": "65th Aggressor SQN (WA) MiG", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ferris scheme": { + "name": "Ferris Scheme", + "countries": [ + "USA" + ] + }, + "58th fighter sqn (eg)": { + "name": "58th Fighter SQN (EG)", + "countries": [ + "USA" + ] + }, + "haf aegean ghost": { + "name": "Hellenic Airforece - Aegean Ghost (Fictional)", + "countries": [ + "GRC" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, 2 crew, all weather fighter. Eagle.", + "abilities": "Boom AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 63 + }, + "F-16C_50": { + "name": "F-16C_50", + "coalition": "blue", + "category": "aircraft", + "label": "F-16C Viper", + "era": "Late Cold War", + "shortLabel": "16C", + "loadouts": [ + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120*2, AIM-9X*2, MK-82SE*4, FUEL*2, ECM, TGP", + "name": "AIM-120*2, AIM-9X*2, MK-82SE*4, FUEL*2, ECM, TGP", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 3 x Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120*2, AIM-9X*2, MK-82SE*6, FUEL*2, ECM, TGP", + "name": "AIM-120*2, AIM-9X*2, MK-82SE*6, FUEL*2, ECM, TGP", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120B*2, AIM-9M*4, FUEL*3", + "name": "AIM-120B*2, AIM-9M*4, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120B*4, AIM-9M*2, FUEL*3", + "name": "AIM-120B*4, AIM-9M*2, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120B AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120B*6, FUEL*3", + "name": "AIM-120B*6, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65D*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65D*2, FUEL*2, ECM, TGP", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65D*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65D*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 1 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65G, AGM-65K, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65G, AGM-65K, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65G - Maverick G (IIR ASM - Lg Whd)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65G*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65G*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65H*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65H*2, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65H - Maverick H (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65H*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65H*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-65K*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, AGM-65K*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-88C*2, FUEL*2, ECM, TGP, HTS", + "name": "AIM-120C*2, AIM-9X*2, AGM-88C*2, FUEL*2, ECM, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-88C*2, FUEL*3, TGP, HTS", + "name": "AIM-120C*2, AIM-9X*2, AGM-88C*2, FUEL*3, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 4 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, AGM-88C*4, ECM, TGP, HTS", + "name": "AIM-120C*2, AIM-9X*2, AGM-88C*4, ECM, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BRU-57 with 2 x CBU-103 - 202 x CEM, CBU with WCMD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, CBU-103*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, CBU-103*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BRU-57 with 2 x CBU-105 - 10 x SFW, CBU with WCMD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, CBU-105*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, CBU-105*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, CBU-87*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, CBU-87*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x CBU-97 - 10 x SFW Cluster Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, CBU-97*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, CBU-97*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-10*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-10*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-12*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-12*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-12*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-12*4, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-24 Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-24*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-24*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-31(V)1/B - JDAM, 2000lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-31-1B*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-31-1B*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-31(V)3/B - JDAM, 2000lb GPS Guided Penetrator Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-31-3B*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-31-3B*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-38*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-38*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BRU-57 with 2 x GBU-38 - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, GBU-38*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, GBU-38*4, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" Hydra, UnGd Rkts Mk61, Practice", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-61*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-61*2, FUEL*2, ECM, TGP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-82*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-82*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 3 x Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-82*6, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-82*6, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-82HD*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-82HD*4, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 3 x Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-82HD*6, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-82HD*6, FUEL*2, ECM, TGP", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "TER-9A with 2 x Mk-82 AIR Ballute - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-82P*4, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-82P*4, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*2, MK-84*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*2, AIM-9X*2, MK-84*2, FUEL*2, ECM, TGP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*2, AIM-9X*4, FUEL*2", + "name": "AIM-120C*2, AIM-9X*4, FUEL*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AGM-88C*2, FUEL*2, ECM, TGP, HTS", + "name": "AIM-120C*4, AGM-88C*2, FUEL*2, ECM, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AGM-88C*2, FUEL*3, TGP, HTS", + "name": "AIM-120C*4, AGM-88C*2, FUEL*3, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 4 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/ASQ-213 HTS - HARM Targeting System", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AGM-88C*4, ECM, TGP, HTS", + "name": "AIM-120C*4, AGM-88C*4, ECM, TGP, HTS", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AIM-9X*2, FUEL*2", + "name": "AIM-120C*4, AIM-9X*2, FUEL*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AIM-9X*2, FUEL*2, ECM", + "name": "AIM-120C*4, AIM-9X*2, FUEL*2, ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AIM-9X*2, FUEL*2, ECM, TGP", + "name": "AIM-120C*4, AIM-9X*2, FUEL*2, ECM, TGP", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AIM-9X*2, FUEL*3", + "name": "AIM-120C*4, AIM-9X*2, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*4, AIM-9X*2, FUEL*3, TGP", + "name": "AIM-120C*4, AIM-9X*2, FUEL*3, TGP", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*6, FUEL*2", + "name": "AIM-120C*6, FUEL*2", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*6, FUEL*2, ECM", + "name": "AIM-120C*6, FUEL*2, ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "ALQ-184 Long - ECM Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*6, FUEL*2, ECM, TGP", + "name": "AIM-120C*6, FUEL*2, ECM, TGP", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*6, FUEL*3", + "name": "AIM-120C*6, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 6 + }, + { + "name": "Fuel tank 370 gal", + "quantity": 2 + }, + { + "name": "Fuel tank 300 gal", + "quantity": 1 + }, + { + "name": "AN/AAQ-28 LITENING - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C*6, FUEL*3, TGP", + "name": "AIM-120C*6, FUEL*3, TGP", + "roles": [ + "Escort" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + } + ], + "filename": "f-16c.png", + "enabled": true, + "liveries": { + "haf_347_perseus": { + "name": "HAF 347S Perseus Squadron", + "countries": [ + "GRC" + ] + }, + "ami, 5 stormo 23 gruppo": { + "name": "Italian Air Force, 5° Stormo, 23 Gruppo", + "countries": [ + "ITA" + ] + }, + "haf_337_ghost": { + "name": "HAF 337 Ghost Squadron", + "countries": [ + "GRC" + ] + }, + "haf_ 330_thunder": { + "name": "HAF 330 Thunder Squadron", + "countries": [ + "GRC" + ] + }, + "haf_336_olympus": { + "name": "HAF 336 Olympus Squadron", + "countries": [ + "GRC" + ] + }, + "iaf_117th_squadron": { + "name": "IAF 117th squadron", + "countries": [ + "ISR" + ] + }, + "jasdf 8th tfs": { + "name": "JASDF 8th TFS", + "countries": [ + "JPN" + ] + }, + "haf_340_fox": { + "name": "HAF 340 Fox Squadron", + "countries": [ + "GRC" + ] + }, + "haf_346_jason": { + "name": "HAF 346 Jason Squadron", + "countries": [ + "GRC" + ] + }, + "paf_no.9_griffins_1": { + "name": "PAF No.9 Griffins (TRIBUTE TO WC NAUMAN)", + "countries": [ + "PAK" + ] + }, + "522nd_fighter_squadron": { + "name": "522nd Fighter Squadron 'Fireballs'", + "countries": [ + "USA" + ] + }, + "default": { + "name": "default livery", + "countries": [ + "USA" + ] + }, + "18th agrs arctic splinter": { + "name": "18th AGRS Arсtic Splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "iaf_115th_aggressors_squadron": { + "name": "IAF 115th aggressors squadron", + "countries": [ + "ISR" + ] + }, + "chile air force 732": { + "name": "Chile Air Force 732", + "countries": [ + "CHL" + ] + }, + "iaf_110th_squadron": { + "name": "IAF 110th squadron", + "countries": [ + "ISR" + ] + }, + "paf_no.29_aggressors": { + "name": "PAF No.29 Aggressor", + "countries": [ + "PAK" + ] + }, + "79th_fighter_squadron": { + "name": "79th Fighter Squadron 'Tigers'", + "countries": [ + "USA" + ] + }, + "paf_no.5_falcons": { + "name": "PAF No.5 Falcons", + "countries": [ + "PAK" + ] + }, + "18th agrs splinter": { + "name": "18th AGRS Blue Splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "dark_viper": { + "name": "F-16C Dark Viper", + "countries": [ + "USA" + ] + }, + "jasdf 6th tfs": { + "name": "JASDF 6th TFS", + "countries": [ + "JPN" + ] + }, + "23rd_fighter_squadron": { + "name": "23rd Fighter Squadron 'Fighting Hawks'", + "countries": [ + "USA" + ] + }, + "polish af standard": { + "name": "Polish AF standard", + "countries": [ + "POL" + ] + }, + "480th_fighter_squadron": { + "name": "480th Fighter Squadron 'Warhawks'", + "countries": [ + "USA" + ] + }, + "18th agrs bdu splinter": { + "name": "18th AGRS BDU Splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "174th_fighter_squadron": { + "name": "174th Fighter Squadron ANG,Iowa AFB", + "countries": [ + "USA" + ] + }, + "thk_191_filo": { + "name": "Türk Hava Kuvvetleri, 191 Filo", + "countries": [ + "TUR" + ] + }, + "chile air force 746": { + "name": "Chile Air Force 746", + "countries": [ + "CHL" + ] + }, + "haf_335_tiger": { + "name": "HAF 335 Tiger Squadron", + "countries": [ + "GRC" + ] + }, + "77th_fighter_squadron": { + "name": "77th Fighter Squadron 'Gamblers' ", + "countries": [ + "USA" + ] + }, + "132nd_wing _iowa_ang": { + "name": "132nd Wing Iowa ANG, Des Moines AFB", + "countries": [ + "USA" + ] + }, + "usaf 64th aggressor sqn-splinter": { + "name": "USAF 64th Aggressor SQN-Splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "14th_fighter_squadron": { + "name": "14th Fighter Squadron 'Samurais'", + "countries": [ + "USA" + ] + }, + "152nd_fighter_squadron": { + "name": "152nd Fighter Squadron 'Las Vaqueros'", + "countries": [ + "USA" + ] + }, + "179th_fighter_squadron": { + "name": "179th Fighter Squadron 'Bulldogs'", + "countries": [ + "USA" + ] + }, + "paf_no.19_sherdils": { + "name": "PAF No.19 Sherdils", + "countries": [ + "PAK" + ] + }, + "64th_aggressor_squadron_ghost": { + "name": "64th Aggressor Squadron “Ghost", + "countries": [ + "USA", + "AUSAF" + ] + }, + "paf_no.9 griffins_2": { + "name": "PAF No.9 Griffins", + "countries": [ + "PAK" + ] + }, + "paf_no.11_arrows": { + "name": "PAF No.11 Arrows", + "countries": [ + "PAK" + ] + }, + "haf_343_star": { + "name": "HAF 343 Star Squadron", + "countries": [ + "GRC" + ] + }, + "80th_fighter_squadron": { + "name": "80th Fighter Squadron, Kunsan AFB", + "countries": [ + "USA" + ] + }, + "36th_fighter_squadron": { + "name": "36th Fighter Squadron Osan Air Base", + "countries": [ + "USA" + ] + }, + "22nd_fighter_squadron": { + "name": "22nd Fighter Squadron 'Stingers'", + "countries": [ + "USA" + ] + }, + "55th_fighter_squadron": { + "name": "55th Fighter Squadron 'Fifty Fifth'", + "countries": [ + "USA" + ] + }, + "iaf_101st_squadron": { + "name": "IAF 101st squadron", + "countries": [ + "ISR" + ] + }, + "polish_af_31blt6th_tactical_sqn": { + "name": "Polish AF 31.Blt 6th Tactical Sqn (Poznań-Krzesiny AB) - Tiger Meet", + "countries": [ + "POL" + ] + }, + "13th_fighter_squadron": { + "name": "13th Fighter Squadron 'Panthers'", + "countries": [ + "USA" + ] + }, + "haf_341_arrow": { + "name": "HAF 341 Arrow Squadron", + "countries": [ + "GRC" + ] + }, + "usaf 64th aggressor sqn - shark": { + "name": "USAF 64th Aggressor SQN - Shark", + "countries": [ + "USA", + "AUSAF" + ] + }, + "chile air force 851": { + "name": "Chile Air Force 851", + "countries": [ + "CHL" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew, all weather fighter and strike. Viper.", + "abilities": "Boom AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 49 + }, + "F-4E": { + "name": "F-4E", + "coalition": "blue", + "category": "aircraft", + "label": "F-4E Phantom II", + "era": "Mid Cold War", + "shortLabel": "4", + "loadouts": [ + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "LAU-118a with AGM-45B Shrike ARM (Imp)", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-45*2,AIM-7*2,Fuel*2,ECM", + "name": "AGM-45*2,AIM-7*2,Fuel*2,ECM", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "LAU-118a with AGM-45B Shrike ARM (Imp)", + "quantity": 4 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-45*4,AIM-7*2,ECM", + "name": "AGM-45*4,AIM-7*2,ECM", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-65K*4,AIM-7*2,Fuel*2,ECM", + "name": "AGM-65K*4,AIM-7*2,Fuel*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65K - Maverick K (CCD Imp ASM)", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "F-4 Fuel tank-C", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-65K*4,AIM-7M*4,Fuel*3", + "name": "AGM-65K*4,AIM-7M*4,Fuel*3", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "LAU-118a with AGM-45B Shrike ARM (Imp)", + "quantity": 2 + }, + { + "name": "LAU-88 with 2 x AGM-65D - Maverick D (IIR ASM)", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM45*2_AGM-65D*4_AIM7*2_ECM", + "name": "AGM45*2_AGM-65D*4_AIM7*2_ECM", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "LAU-7 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-7*4", + "name": "AIM-9*4,AIM-7*4", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "LAU-7 with 2 x AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-9*4,AIM-7*4,Fuel*2", + "name": "AIM-9*4,AIM-7*4,Fuel*2", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "F-4 Fuel tank-C", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel*3", + "name": "Fuel*3", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-10*2,AIM-7*2,Fuel*2,ECM", + "name": "GBU-10*2,AIM-7*2,Fuel*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-12*2,AIM-7*2,Fuel*2,ECM", + "name": "GBU-12*2,AIM-7*2,Fuel*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MER6 with 6 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-82*18,AIM-7*2,ECM", + "name": "Mk-82*18,AIM-7*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-82 - 500lb GP Bombs LD", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-82*6,AIM-7*2,Fuel*2,ECM", + "name": "Mk-82*6,AIM-7*2,Fuel*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk-84*2,AIM-7*2,ECM", + "name": "Mk-84*2,AIM-7*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BRU-42 with 3 x Mk-20 Rockeye - 490lbs CBUs, 247 x HEAT Bomblets", + "quantity": 4 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk20*12,AIM-7*2,ECM", + "name": "Mk20*12,AIM-7*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "F-4 Fuel tank-W", + "quantity": 2 + }, + { + "name": "BRU-42 with 3 x Mk-20 Rockeye - 490lbs CBUs, 247 x HEAT Bomblets", + "quantity": 2 + }, + { + "name": "ALQ-131 - ECM Pod", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mk20*6,AIM-7*2,Fuel*2,ECM", + "name": "Mk20*6,AIM-7*2,Fuel*2,ECM", + "roles": [ + "CAS" + ] + } + ], + "filename": "f-4.png", + "enabled": false, + "liveries": { + "haf aegean ghost": { + "name": "Hellenic Airforce - Aegean Ghost", + "countries": [ + "GRC" + ] + }, + "iriaf asia minor": { + "name": "IRIAF Asia Minor", + "countries": [ + "IRN" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "GER" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, 2 crew. Phantom", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 63 + }, + "F-5E-3": { + "name": "F-5E-3", + "coalition": "blue", + "category": "aircraft", + "label": "F-5E Tiger", + "era": "Mid Cold War", + "shortLabel": "5", + "loadouts": [ + { + "items": [ + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9B*2", + "name": "AIM-9B*2", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9B*2, Fuel 150", + "name": "AIM-9B*2, Fuel 150", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9B*2, Fuel 150*3", + "name": "AIM-9B*2, Fuel 150*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9B*2, Fuel 275", + "name": "AIM-9B*2, Fuel 275", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9B*2, Fuel 275*3", + "name": "AIM-9B*2, Fuel 275*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9P*2", + "name": "AIM-9P*2", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9P*2, Fuel 150", + "name": "AIM-9P*2, Fuel 150", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9P*2, Fuel 150*3", + "name": "AIM-9P*2, Fuel 150*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9P*2, Fuel 275", + "name": "AIM-9P*2, Fuel 275", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9P*2, Fuel 275*3", + "name": "AIM-9P*2, Fuel 275*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9P5*2", + "name": "AIM-9P5*2", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9P5*2, Fuel 150", + "name": "AIM-9P5*2, Fuel 150", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9P5*2, Fuel 150*3", + "name": "AIM-9P5*2, Fuel 150*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9P5*2, Fuel 275", + "name": "AIM-9P5*2, Fuel 275", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9P5*2, Fuel 275*3", + "name": "AIM-9P5*2, Fuel 275*3", + "roles": [ + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AN/ASQ-T50 TCTS Pod - ACMI Pod", + "quantity": 1 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 1 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AN/ASQ-T50, AIM-9P, Fuel 150", + "name": "AN/ASQ-T50, AIM-9P, Fuel 150", + "roles": [] + }, + { + "items": [ + { + "name": "AIM-9P5 Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "F-5 150Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Antiship Mk82", + "name": "Antiship Mk82", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "CBU-52B - 220 x HE/Frag bomblets", + "quantity": 4 + } + ], + "enabled": true, + "code": "CBU-52B*4,AIM-9P*2,Fuel 275", + "name": "CBU-52B*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "CBU-52B - 220 x HE/Frag bomblets", + "quantity": 5 + } + ], + "enabled": true, + "code": "CBU-52B*5,AIM-9*2", + "name": "CBU-52B*5,AIM-9*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-12*4,AIM-9P*2,Fuel 275", + "name": "GBU-12*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 1 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 2 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "LAU-3 HE*2,Mk-82LD,AIM-9P*2,Fuel 275*2", + "name": "LAU-3 HE*2,Mk-82LD,AIM-9P*2,Fuel 275*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "LAU-3 HE*4,AIM-9P*2,Fuel 275", + "name": "LAU-3 HE*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 4 + } + ], + "enabled": true, + "code": "LAU-3 HEAT*4,AIM-9P*2,Fuel 275", + "name": "LAU-3 HEAT*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 1 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 2 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "LAU-68 HE*2,Mk-82LD,AIM-9P*2,Fuel 275*2", + "name": "LAU-68 HE*2,Mk-82LD,AIM-9P*2,Fuel 275*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "LAU-68 HE*4,AIM-9P*2,Fuel 275", + "name": "LAU-68 HE*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 4 + } + ], + "enabled": true, + "code": "LAU-68 HEAT*4,AIM-9P*2,Fuel 275", + "name": "LAU-68 HEAT*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + }, + { + "name": "M117 - 750lb GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "M-117*4,AIM-9P*2,Fuel 275", + "name": "M-117*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "M117 - 750lb GP Bomb LD", + "quantity": 5 + } + ], + "enabled": true, + "code": "M-117*5,AIM-9*2", + "name": "M-117*5,AIM-9*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82LD*4,AIM-9P*2,Fuel 275", + "name": "Mk-82LD*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 5 + } + ], + "enabled": true, + "code": "Mk-82LD*5,AIM-9*2", + "name": "Mk-82LD*5,AIM-9*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 2 + }, + { + "name": "5 x Mk-82 - 500lb GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82LD*7,AIM-9P*2, Fuel 275*2", + "name": "Mk-82LD*7,AIM-9P*2, Fuel 275*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 4 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82SE*4,AIM-9P*2,Fuel 275", + "name": "Mk-82SE*4,AIM-9P*2,Fuel 275", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 5 + } + ], + "enabled": true, + "code": "Mk-82SE*5,AIM-9*2", + "name": "Mk-82SE*5,AIM-9*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 2 + }, + { + "name": "F-5 275Gal Fuel tank", + "quantity": 2 + }, + { + "name": "5 x Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mk-82SE*7,AIM-9P*2, Fuel 275*2", + "name": "Mk-82SE*7,AIM-9P*2, Fuel 275*2", + "roles": [ + "CAS", + "Strike" + ] + } + ], + "liveryID": [ + "ir iriaf 43rd tfs" + ], + "filename": "f-5.png", + "enabled": true, + "liveries": { + "us aggressor vfc-13 40": { + "name": "Aggressor VFC-13 40", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch swiss generic": { + "name": "Swiss Generic two-tone skin", + "countries": [ + "SUI" + ] + }, + "tw ngrc 5315": { + "name": "NGRC 5thFG 5315", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3079": { + "name": "J-3079", + "countries": [ + "SUI" + ] + }, + "sa royal saudi air force": { + "name": "Royal Saudi Air Force", + "countries": [ + "SAU" + ] + }, + "no 336 sq": { + "name": "336 Skvadron", + "countries": [ + "NOR" + ] + }, + "tw rocaf 7thfg(m)": { + "name": "ROCAF 7thFG(LV)", + "countries": [ + "USA", + "AUSAF" + ] + }, + "us aggressor vfc-111 105 wwii b": { + "name": "Sundowners VFC-111 105 WWII B", + "countries": [ + "USA", + "AUSAF" + ] + }, + "br fab 4828": { + "name": "2/1 GAvCa - FAB 4828", + "countries": [ + "BRA" + ] + }, + "usaf 'southeast asia'": { + "name": "USAF 'Southeast Asia'", + "countries": [ + "USA", + "AUSAF" + ] + }, + "br fab 4846": { + "name": "FAB 4846", + "countries": [ + "BRA" + ] + }, + "aggressor vfc-13 21": { + "name": "Aggressor VFC-13 21", + "countries": [ + "USA", + "AUSAF" + ] + }, + "no 334 sqn 373": { + "name": "RNoAF 334 sqn 373", + "countries": [ + "NOR" + ] + }, + "rocaf 7th fighter group": { + "name": "ROCAF 7th Fighter Group", + "countries": [ + "AUSAF" + ] + }, + "ch j-3036 2017": { + "name": "J-3036 Sion 2017", + "countries": [ + "SUI" + ] + }, + "us aggressor vfc-111 116": { + "name": "Sundowners VFC-116", + "countries": [ + "USA", + "AUSAF" + ] + }, + "black 'mig-28'": { + "name": "black 'Mig-28'", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3073 2017": { + "name": "J-3073_2017", + "countries": [ + "SUI" + ] + }, + "fi 11th fs lapland air command": { + "name": "FiAF 11th FS Lapland Air Command", + "countries": [ + "FIN" + ] + }, + "ir iriaf azarakhsh": { + "name": "HESA Azarakhsh", + "countries": [ + "IRN" + ] + }, + "ch j-3098": { + "name": "J-3098", + "countries": [ + "SUI" + ] + }, + "ir iriaf 43rd tfs": { + "name": "IRIAF - 43rd TFS", + "countries": [ + "IRN" + ] + }, + "no 338 sqn 215": { + "name": "RNoAF 338 sqn 215", + "countries": [ + "NOR" + ] + }, + "us usaf grape 31": { + "name": "USAF Grape 31", + "countries": [ + "USA", + "AUSAF" + ] + }, + "no 332 sqn ah-p": { + "name": "RNoAF 332 sqn AH-P", + "countries": [ + "NOR" + ] + }, + "ch j-3001 variante 1996": { + "name": "J-3001 GRD Emmen 1996", + "countries": [ + "SUI" + ] + }, + "us aggressor vfc-111 01": { + "name": "Sundowners VFC-111 01", + "countries": [ + "USA", + "AUSAF" + ] + }, + "3rd main jet base group command, turkey": { + "name": "133 squadron, 3rd Main Jet Base Group Command, Turkey", + "countries": [ + "TUR" + ] + }, + "kr rokaf 10th fighter wing": { + "name": "ROKAF 10th FW KF-5E 10-584", + "countries": [ + "KOR" + ] + }, + "sp spanish air force 21-51": { + "name": "Ejercito del Aire Camo 21-51", + "countries": [ + "SPN" + ] + }, + "aggressor vfc-13 11": { + "name": "Aggressor VFC-13 11", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3001 variante 1986": { + "name": "J-3001 GRD Emmen 1986", + "countries": [ + "SUI" + ] + }, + "usa standard": { + "name": "Standard Gray", + "countries": [ + "BRA", + "MYS", + "AUS", + "ABH", + "RUS", + "SPN", + "ISR", + "USA", + "BHR", + "BLR", + "HRV", + "RSO", + "SVK", + "IRN", + "UKR", + "TUR", + "JPN", + "PRK", + "SRB", + "KAZ", + "BGR", + "BEL", + "INS", + "THA", + "AUSAF", + "PAK", + "JOR", + "FIN", + "MEX", + "NOR", + "IRQ", + "SYR", + "ITA", + "GRC", + "POL", + "NETH", + "GER", + "SUI", + "CHN", + "SAU", + "SWE", + "ROU", + "FRA", + "KOR", + "HUN", + "AUT", + "GRG", + "DEN", + "TUN", + "EGY", + "IND", + "CZE", + "CAN", + "SDN", + "UK" + ] + }, + "5th fs merzifon air base, turkey": { + "name": "5th fs Merzifon air base, Turkish air force", + "countries": [ + "TUR" + ] + }, + "ch j-3001 variante 2000": { + "name": "J-3001 FlSt 08 2000", + "countries": [ + "SUI" + ] + }, + "ir iriaf camo": { + "name": "IRIAF F-5E Standard", + "countries": [ + "IRN" + ] + }, + "it aereonautica militare italiana": { + "name": "Aereonautica Militare Italiana", + "countries": [ + "ITA" + ] + }, + "ch j-3038": { + "name": "J-3038", + "countries": [ + "SUI" + ] + }, + "ch j-3033_2017": { + "name": "J-3033_2017", + "countries": [ + "SUI" + ] + }, + "us aggressor vfc-13 28 fict splinter": { + "name": "Aggressor VFC-13 28 Fictional Splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3025": { + "name": "J-3025 FlSt 11/18 January 2006", + "countries": [ + "SUI" + ] + }, + "us aggressor vfc-13 01": { + "name": "Aggressor VFC-13 01", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch patrouille suisse j-3088": { + "name": "Patrouille Suisse J-3088", + "countries": [ + "SUI" + ] + }, + "us aggressor vfc-13 25": { + "name": "Aggressor VFC-13 25", + "countries": [ + "USA", + "AUSAF" + ] + }, + "no 334 sqn ri-h": { + "name": "RNoAF 334 sqn RI-H", + "countries": [ + "NOR" + ] + }, + "br fab 4841": { + "name": "FAB 4841 60th an", + "countries": [ + "BRA" + ] + }, + "aggressor marine scheme": { + "name": "Aggressor Marine Scheme", + "countries": [ + "USA", + "AUSAF" + ] + }, + "sp spanish air force 464-48": { + "name": "Ejercito del Aire 464-48", + "countries": [ + "SPN" + ] + }, + "gr haf f-5e grey": { + "name": "HAF F-5E Grey", + "countries": [ + "GRC" + ] + }, + "tr turkish stars": { + "name": "Turkish Stars", + "countries": [ + "TUR" + ] + }, + "gb no.29 squadron raf": { + "name": "No.29 Squadron RAF (Fictional)", + "countries": [ + "UK" + ] + }, + "br fab 4834": { + "name": "1/1 GAvCa - FAB 4834", + "countries": [ + "BRA" + ] + }, + "ch j-3026": { + "name": "J-3026 FlSt 11 approx. 1989", + "countries": [ + "SUI" + ] + }, + "aggressor snake scheme": { + "name": "Aggressor Snake Scheme", + "countries": [ + "USA", + "AUSAF" + ] + }, + "us aggressor vfc-111 115": { + "name": "Sundowners VFC-115", + "countries": [ + "USA", + "AUSAF" + ] + }, + "us aggressor vmft-401 02 2011": { + "name": "Aggressor VMFT-401 02 2011", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3008": { + "name": "J-3008 FlSt 08/19 February 2005", + "countries": [ + "SUI" + ] + }, + "aggressor desert scheme": { + "name": "Aggressor Desert Scheme", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ch j-3074": { + "name": "J-3074", + "countries": [ + "SUI" + ] + }, + "ch j-3036": { + "name": "J-3036 FlSt 01 1985", + "countries": [ + "SUI" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, single crew. Tiger", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 47 + }, + "F-86F Sabre": { + "name": "F-86F Sabre", + "coalition": "blue", + "category": "aircraft", + "label": "F-86F Sabre", + "era": "Early Cold War", + "shortLabel": "86", + "loadouts": [ + { + "items": [ + { + "name": "Fuel Tank 120 gallons", + "quantity": 2 + } + ], + "enabled": true, + "code": "120gal Fuel*2", + "name": "120gal Fuel*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 200 gallons", + "quantity": 2 + }, + { + "name": "Fuel Tank 120 gallons", + "quantity": 2 + } + ], + "enabled": true, + "code": "120gal Fuel*2, 200gal Fuel*2", + "name": "120gal Fuel*2, 200gal Fuel*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 120 gallons", + "quantity": 2 + }, + { + "name": "LAU-7 with AIM-9B Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "120gal Fuel*2, GAR-8*2", + "name": "120gal Fuel*2, GAR-8*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 200 gallons", + "quantity": 2 + } + ], + "enabled": true, + "code": "200gal Fuel*2", + "name": "200gal Fuel*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 200 gallons", + "quantity": 2 + }, + { + "name": "AN-M64 - 500lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "200gal Fuel*2, AN-M64*2", + "name": "200gal Fuel*2, AN-M64*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 200 gallons", + "quantity": 2 + }, + { + "name": "2 x HVAR, UnGd Rkts", + "quantity": 4 + } + ], + "enabled": true, + "code": "200gal Fuel*2, HVARx2*4", + "name": "200gal Fuel*2, HVARx2*4", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AN-M64 - 500lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AN-M64*2", + "name": "AN-M64*2", + "roles": [ + "CAS", + "Strike", + "Antiship Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-7 with AIM-9B Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "GAR-8*2", + "name": "GAR-8*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "2 x HVAR, UnGd Rkts", + "quantity": 8 + } + ], + "enabled": true, + "code": "HVAR*16", + "name": "HVAR*16", + "roles": [ + "Strike", + "CAS", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "M117 - 750lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "M117*2", + "name": "M117*2", + "roles": [ + "CAS", + "Strike", + "Antiship Strike" + ] + } + ], + "filename": "f-86.png", + "enabled": true, + "liveries": { + "us air force (skyblazers)": { + "name": "US Air Force Jet Team Skyblazer", + "countries": [ + "USA" + ] + }, + "canada air force": { + "name": "Canada Air Force", + "countries": [ + "CAN" + ] + }, + "us air force (squadron 39)": { + "name": "US Air Force (Squadron 39)", + "countries": [ + "USA" + ] + }, + "iiaf bare metall": { + "name": "IIAF Bare Metal Weathered", + "countries": [ + "IRN" + ] + }, + "us air force (green)": { + "name": "US Air Force (Green)", + "countries": [ + "USA" + ] + }, + "us air force (ex-usaf f-86a sabre)": { + "name": "US Air Force ex-USAF F-86A Sabre", + "countries": [ + "USA" + ] + }, + "default livery": { + "name": "default livery", + "countries": [ + "BRA", + "CUB", + "MYS", + "ARE", + "AUS", + "ABH", + "RUS", + "PHL", + "SPN", + "ISR", + "SUN", + "USA", + "BHR", + "MAR", + "BLR", + "HRV", + "DZA", + "OMN", + "RSO", + "SVK", + "HND", + "IRN", + "UKR", + "TUR", + "JPN", + "PRK", + "SRB", + "IDN", + "KAZ", + "BGR", + "BEL", + "INS", + "THA", + "LBY", + "AUSAF", + "VEN", + "PAK", + "JOR", + "RSA", + "FIN", + "MEX", + "KWT", + "NOR", + "IRQ", + "SYR", + "ITA", + "NZG", + "GRC", + "POL", + "NETH", + "GER", + "SUI", + "CHN", + "SAU", + "SWE", + "YEM", + "VNM", + "ROU", + "RSI", + "FRA", + "CHL", + "KOR", + "HUN", + "AUT", + "GRG", + "DEN", + "TUN", + "EGY", + "IND", + "CZE", + "ETH", + "CAN", + "SDN", + "QAT", + "UK", + "YUG" + ] + }, + "royal saudi air force": { + "name": "RSAF", + "countries": [ + "SAU" + ] + }, + "us air force": { + "name": "US Air Force", + "countries": [ + "USA" + ] + }, + "haf 342sqn": { + "name": "Hellenic Airforce 342sqn", + "countries": [ + "GRC" + ] + }, + "japan air force": { + "name": "Japan Air Force", + "countries": [ + "JPN" + ] + }, + "haf 341sqn": { + "name": "Hellenic Airforce 341sqn", + "countries": [ + "GRC" + ] + }, + "us air force (code fu-178)": { + "name": "US Air Force FU-178", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "Single engine, swept wing, 1 crew. Sabre", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 37 + }, + "FA-18C_hornet": { + "name": "FA-18C_hornet", + "coalition": "blue", + "era": "Late Cold War", + "category": "aircraft", + "label": "F/A-18C", + "shortLabel": "18", + "loadouts": [ + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-84D Harpoon AShM", + "quantity": 4 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M*2, AIM-120C-5*1, AGM-84D*4, ATFLIR, FUEL", + "name": "AIM-9M*2, AIM-120C-5*1, AGM-84D*4, ATFLIR, FUEL", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, AIM-7M*2, FUEL*1", + "name": "AIM-9M*2, AIM-7M*2, FUEL*1", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, AIM-7M*2, FUEL*2", + "name": "AIM-9M*2, AIM-7M*2, FUEL*2", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-115C with AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9M*2, AIM-7M*4, FUEL*3", + "name": "AIM-9M*2, AIM-7M*4, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M*2, ATFLIR, FUEL", + "name": "AIM-9M*2, ATFLIR, FUEL", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M*2, ATFLIR, FUEL*2", + "name": "AIM-9M*2, ATFLIR, FUEL*2", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x CBU-99 - 490lbs, 247 x HEAT Bomblets", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, CBU-99*4, FUEL*2", + "name": "AIM-9M*2, CBU-99*4, FUEL*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, LAU-61*4, FUEL*2", + "name": "AIM-9M*2, LAU-61*4, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x LAU-68 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, LAU-68*4, FUEL*2", + "name": "AIM-9M*2, LAU-68*4, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-20*4, FUEL*2", + "name": "AIM-9M*2, MK-20*4, FUEL*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-82*4, FUEL*2", + "name": "AIM-9M*2, MK-82*4, FUEL*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-82SE*4, FUEL*2", + "name": "AIM-9M*2, MK-82SE*4, FUEL*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-83*2, FUEL*2", + "name": "AIM-9M*2, MK-83*2, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-83*4, FUEL*2", + "name": "AIM-9M*2, MK-83*4, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, MK-84*2, FUEL*2", + "name": "AIM-9M*2, MK-84*2, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x LAU-10 pod - 4 x 127mm ZUNI, UnGd Rkts Mk71, HE/FRAG", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*2, ZUNI*4, FUEL*2", + "name": "AIM-9M*2, ZUNI*4, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-115 with 2 x LAU-127 AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M*6, AIM-7M*2, FUEL*2", + "name": "AIM-9M*6, AIM-7M*2, FUEL*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-7M Sparrow Semi-Active Radar", + "quantity": 2 + }, + { + "name": "LAU-115 with 2 x LAU-127 AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9M*6, AIM-7M*2, FUEL*3", + "name": "AIM-9M*6, AIM-7M*2, FUEL*3", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM Active Rdr AAM", + "quantity": 6 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*6, FUEL*2", + "name": "AIM-9X*2, AIM-120C-5*6, FUEL*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM Active Rdr AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*2, FUEL*1", + "name": "AIM-9X*2, AIM-120C-5*2, FUEL*1", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "LAU-117 with AGM-65F - Maverick F (IIR ASM)", + "quantity": 4 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*1, AGM-65D*4, ATFLIR, FUEL", + "name": "AIM-9X*2, AIM-120C-5*1, AGM-65D*4, ATFLIR, FUEL", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-84H SLAM-ER (Expanded Response)", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 2 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + }, + { + "name": "AWW-13 DATALINK POD", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*1, AGM-84E*2, DATALINK, ATFLIR, FUEL*2", + "name": "AIM-9X*2, AIM-120C-5*1, AGM-84E*2, DATALINK, ATFLIR, FUEL*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-31(V)4/B - JDAM, 2000lb GPS Guided Penetrator Bomb", + "quantity": 4 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*1, GBU-31*4, ATFLIR, FUEL", + "name": "AIM-9X*2, AIM-120C-5*1, GBU-31*4, ATFLIR, FUEL", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BRU-55 with 2 x GBU-38 - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + }, + { + "name": "BRU-33 with 2 x GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AN/ASQ-228 ATFLIR - Targeting Pod", + "quantity": 1 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*1, GBU-38*4, GBU-12*4, ATFLIR, FUEL", + "name": "AIM-9X*2, AIM-120C-5*1, GBU-38*4, GBU-12*4, ATFLIR, FUEL", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 4 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*2, AGM-88C*2, FUEL", + "name": "AIM-9X*2, AIM-120C-5*2, AGM-88C*2, FUEL", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "AIM-9X Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "LAU-115 with 2 x LAU-127 AIM-120C AMRAAM - Active Radar AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 3 + } + ], + "enabled": true, + "code": "AIM-9X*2, AIM-120C-5*6, FUEL*3", + "name": "AIM-9X*2, AIM-120C-5*6, FUEL*3", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "FPU-8A Fuel Tank 330 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "Carrier Landing", + "name": "Carrier Landing", + "roles": [] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + } + ], + "filename": "fa-18c.png", + "enabled": true, + "liveries": { + "vfa-192": { + "name": "VFA-192", + "countries": [ + "USA" + ] + }, + "nsawc brown splinter": { + "name": "NSAWC brown splinter", + "countries": [ + "USA", + "AUSAF" + ] + }, + "vfa-34": { + "name": "VFA-34", + "countries": [ + "USA" + ] + }, + "vmfa-232": { + "name": "VMFA-232", + "countries": [ + "USA" + ] + }, + "vmfat-101": { + "name": "VMFAT-101", + "countries": [ + "USA" + ] + }, + "vmfa-232 high visibility": { + "name": "VMFA-232 high visibility", + "countries": [ + "USA" + ] + }, + "vmfat-101 high visibility": { + "name": "VMFAT-101 high visibility", + "countries": [ + "USA" + ] + }, + "vfa-37": { + "name": "VFA-37", + "countries": [ + "USA" + ] + }, + "fictional russia air force": { + "name": "Fictional Russia Air Force", + "countries": [ + "AUSAF", + "RUS" + ] + }, + "canada 150 demo jet": { + "name": "Canada 150 Demo Jet", + "countries": [ + "CAN" + ] + }, + "fictional uk air force": { + "name": "Fictional UK Air Force", + "countries": [ + "UK" + ] + }, + "vfa-131": { + "name": "VFA-131", + "countries": [ + "USA" + ] + }, + "vmfa-122 high visibility": { + "name": "VMFA-122 high visibility", + "countries": [ + "USA" + ] + }, + "spain 462th escuadron c.15-79": { + "name": "Spain 462th Escuadron C.15-79", + "countries": [ + "SPN" + ] + }, + "vmfat-101 high visibility 2005": { + "name": "VMFAT-101 high visibility 2005", + "countries": [ + "USA" + ] + }, + "vmfa-323": { + "name": "VMFA-323", + "countries": [ + "USA" + ] + }, + "vx-31 cona": { + "name": "VX-31 CoNA", + "countries": [ + "USA" + ] + }, + "fictional turkey 162nd sq": { + "name": "162nd Sqn Harpoon", + "countries": [ + "TUR" + ] + }, + "nawdc brown": { + "name": "NAWDC brown", + "countries": [ + "USA", + "AUSAF" + ] + }, + "spain 151th escuadron c.15-14": { + "name": "Spain 151_14 Escuadron C.15-14", + "countries": [ + "SPN" + ] + }, + "spain 151th escuadron c.15-24": { + "name": "Spain 151_24 Escuadron C.15-24", + "countries": [ + "SPN" + ] + }, + "vfa-106": { + "name": "VFA-106", + "countries": [ + "USA" + ] + }, + "spain 121th escuadron c.15-45": { + "name": "Spain 121 Escuadron C.15-45", + "countries": [ + "SPN" + ] + }, + "vfa-97": { + "name": "VFA-97", + "countries": [ + "USA" + ] + }, + "vx-9": { + "name": "VX-9", + "countries": [ + "USA" + ] + }, + "spain 111th escuadron c.15-73": { + "name": "Spain 111 Escuadron C.15-73", + "countries": [ + "SPN" + ] + }, + "switzerland": { + "name": "Switzerland", + "countries": [ + "SUI" + ] + }, + "vx-23": { + "name": "VX-23", + "countries": [ + "USA" + ] + }, + "vfa-83": { + "name": "VFA-83", + "countries": [ + "USA" + ] + }, + "australian 75th squadron": { + "name": "Australian sqn 75", + "countries": [ + "AUS" + ] + }, + "canada 425th squadron": { + "name": "Canada 425th Squadron", + "countries": [ + "CAN" + ] + }, + "spain 151th escuadron c.15-18": { + "name": "Spain 151_18 Escuadron C.15-18", + "countries": [ + "SPN" + ] + }, + "nsawc gray": { + "name": "NSAWC gray", + "countries": [ + "USA" + ] + }, + "vfa-87": { + "name": "VFA-87", + "countries": [ + "USA" + ] + }, + "nawdc blue": { + "name": "NAWDC blue", + "countries": [ + "USA", + "AUSAF" + ] + }, + "australian 77th squadron": { + "name": "Australian sqn 77", + "countries": [ + "AUS" + ] + }, + "vmfa-251 high visibility": { + "name": "VMFA-251 high visibility", + "countries": [ + "USA" + ] + }, + "vmfa-531": { + "name": "VMFA-531", + "countries": [ + "USA" + ] + }, + "viper": { + "name": "Viper", + "countries": [ + "USA" + ] + }, + "iceman": { + "name": "Iceman", + "countries": [ + "USA", + "AUSAF" + ] + }, + "spain 121th escuadron c.15-60": { + "name": "Spain 121 Escuadron C.15-60", + "countries": [ + "SPN" + ] + }, + "nsawc blue": { + "name": "NSAWC blue", + "countries": [ + "USA", + "AUSAF" + ] + }, + "blue angels jet team": { + "name": "Blue Angels Jet Team", + "countries": [ + "USA" + ] + }, + "fictional israel air force": { + "name": "Fictional Israel Air Force", + "countries": [ + "ISR" + ] + }, + "spain 462th escuadron c.15-90": { + "name": "Spain 462th Escuadron C.15-90", + "countries": [ + "SPN" + ] + }, + "vmfa-323 high visibility": { + "name": "VMFA-323_high visibility", + "countries": [ + "USA" + ] + }, + "maverick": { + "name": "Maverick", + "countries": [ + "USA" + ] + }, + "nawdc black": { + "name": "NAWDC black", + "countries": [ + "USA", + "AUSAF" + ] + }, + "kuwait 9th squadron": { + "name": "9th Squadron", + "countries": [ + "KWT" + ] + }, + "vmfa-251": { + "name": "VMFA-251", + "countries": [ + "USA" + ] + }, + "vmfa-314": { + "name": "VMFA-314", + "countries": [ + "USA" + ] + }, + "fictional ukraine air force": { + "name": "Fictional Ukraine Air Force", + "countries": [ + "UKR" + ] + }, + "canada 409th squadron": { + "name": "Canada 409th Squadron", + "countries": [ + "CAN" + ] + }, + "canada norad 60 demo jet": { + "name": "Canada NORAD 60 Demo Jet", + "countries": [ + "CAN" + ] + }, + "spain 111th escuadron c.15-88": { + "name": "Spain 111 Escuadron C.15-88", + "countries": [ + "SPN" + ] + }, + "spain 211th escuadron c.15-76": { + "name": "Spain 211th Escuadron C.15-76", + "countries": [ + "SPN" + ] + }, + "finland 31": { + "name": "Finland", + "countries": [ + "FIN" + ] + }, + "spain 151th escuadron c.15-23": { + "name": "Spain 151_23 Escuadron C.15-23", + "countries": [ + "SPN" + ] + }, + "vfa-122": { + "name": "VFA-122", + "countries": [ + "USA" + ] + }, + "spain 151th escuadron c.15-14 tiger meet": { + "name": "Spain 151th Escuadron C.15-14 Tiger Meet", + "countries": [ + "SPN" + ] + }, + "vfc-12": { + "name": "VFC-12", + "countries": [ + "USA", + "AUSAF" + ] + }, + "spain 211th escuadron c.15-77": { + "name": "Spain 211th Escuadron C.15-77", + "countries": [ + "SPN" + ] + }, + "spain 121th escuadron c.15-34 50th anniversary": { + "name": "Spain 121th Escuadron C.15-34 34th Anniversary", + "countries": [ + "SPN" + ] + }, + "default livery": { + "name": "default livery", + "countries": [ + "BRA", + "CUB", + "MYS", + "ARE", + "AUS", + "ABH", + "RUS", + "PHL", + "SPN", + "ISR", + "SUN", + "USA", + "BHR", + "MAR", + "BLR", + "HRV", + "DZA", + "OMN", + "RSO", + "SVK", + "HND", + "IRN", + "UKR", + "TUR", + "JPN", + "PRK", + "SRB", + "IDN", + "KAZ", + "BGR", + "BEL", + "INS", + "THA", + "LBY", + "AUSAF", + "VEN", + "PAK", + "JOR", + "RSA", + "FIN", + "MEX", + "KWT", + "NOR", + "IRQ", + "SYR", + "ITA", + "NZG", + "GRC", + "POL", + "NETH", + "GER", + "SUI", + "CHN", + "SAU", + "SWE", + "YEM", + "VNM", + "ROU", + "RSI", + "FRA", + "CHL", + "KOR", + "HUN", + "AUT", + "GRG", + "DEN", + "TUN", + "EGY", + "IND", + "CZE", + "ETH", + "CAN", + "SDN", + "QAT", + "UK", + "YUG" + ] + }, + "spain 121th escuadron c.15-50": { + "name": "Spain 121 Escuadron C.15-50", + "countries": [ + "SPN" + ] + }, + "vfa-113": { + "name": "VFA-113", + "countries": [ + "USA" + ] + }, + "vmfa-312": { + "name": "VMFA-312", + "countries": [ + "USA" + ] + }, + "kuwait 25th squadron": { + "name": "9th Squadron", + "countries": [ + "KWT" + ] + }, + "vmfa-312 high visibility": { + "name": "VMFA-312 high visibility", + "countries": [ + "USA" + ] + }, + "vmfa-122": { + "name": "VMFA-122", + "countries": [ + "USA" + ] + }, + "vfa-106 high visibility": { + "name": "VFA-106 high visibility", + "countries": [ + "USA" + ] + }, + "finland 21": { + "name": "Finland", + "countries": [ + "FIN" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, 1 crew, fighter and strike. Hornet", + "abilities": "Drogue AAR, Carrier", + "canTargetPoint": true, + "canRearm": false, + "length": 56 + }, + "FW-190A8": { + "name": "FW-190A8", + "coalition": "red", + "category": "aircraft", + "label": "FW-190A8 Würger", + "era": "WW2", + "shortLabel": "190", + "loadouts": [ + { + "items": [ + { + "name": "AB 250-2 - 17 x SD-10A, 250kg CBU with 10kg Frag/HE submunitions", + "quantity": 1 + } + ], + "enabled": true, + "code": "AB 250 (w/ SD 10A)", + "name": "AB 250 (w/ SD 10A)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AB 250-2 - 144 x SD-2, 250kg CBU with HE submunitions", + "quantity": 1 + } + ], + "enabled": true, + "code": "AB 250 (w/ SD 2)", + "name": "AB 250 (w/ SD 2)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AB 500-1 - 34 x SD-10A, 500kg CBU with 10kg Frag/HE submunitions", + "quantity": 1 + } + ], + "enabled": true, + "code": "AB 500 (w/ SD 10A)", + "name": "AB 500 (w/ SD 10A)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Werfer-Granate 21 - 21 cm UnGd air-to-air rocket", + "quantity": 2 + } + ], + "enabled": true, + "code": "BR 21", + "name": "BR 21", + "roles": [] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "300 liter Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank 300 liters", + "name": "Fuel Tank 300 liters", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SC 250 Type 3 J - 250kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC 250 J", + "name": "SC 250 J", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SC 250 Type 1 L2 - 250kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC 250 L2", + "name": "SC 250 L2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "4 x SC 50 - 50kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC 50 * 4", + "name": "SC 50 * 4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SC 500 J - 500kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC 500 J", + "name": "SC 500 J", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SC 500 L2 - 500kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC 500 L2", + "name": "SC 500 L2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SD 250 Stg - 250kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SD 250 Stg", + "name": "SD 250 Stg", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "SD 500 A - 500kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SD 500 A", + "name": "SD 500 A", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "Without pylon", + "name": "Without pylon", + "roles": [] + } + ], + "filename": "fw190.png", + "enabled": true, + "liveries": { + "fw190_fuselage_d_jg301": { + "name": "JG 301", + "countries": [ + "GER", + "NZG" + ] + }, + "captured_ra": { + "name": "Captured_RA", + "countries": [ + "SUN" + ] + }, + "fictional ijn carrier akagi ai-103": { + "name": "Fictional IJN Carrier Akagi AI-103", + "countries": [ + "JPN" + ] + }, + "fictional ijn otu tsukuba tsu-102": { + "name": "Fictional IJN OTU Tsukuba Tsu-102", + "countries": [ + "JPN" + ] + }, + "fw-190a8 yellow 4": { + "name": "FW190A8 Yellow 4", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190a8 rhaf": { + "name": "Fw 190 A8 RHAF", + "countries": [ + "HUN" + ] + }, + "jg3 white nose wulf": { + "name": "Fw190A8 'White nose Wulf'", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190a8_2.jg 54": { + "name": "2.JG 54", + "countries": [ + "GER", + "NZG" + ] + }, + "fictional ijn carrier soryu bi-112": { + "name": "Fictional IJN Carrier Soryu BI-112", + "countries": [ + "JPN" + ] + }, + "black 13 schwarze katze from jg1": { + "name": "Fw190_JG1_Gen._'Schwarze Katze'_Win.", + "countries": [ + "GER", + "NZG" + ] + }, + "turkish air force, 5th fr (1942)": { + "name": "Turkish Air Force, 5th FR (1942)", + "countries": [ + "AUSAF", + "TUR" + ] + }, + "fw-190a8 jg26 priller": { + "name": "Fw 190 A8 JG26 Priller", + "countries": [ + "GER", + "HUN", + "NZG" + ] + }, + "inspired by jg2 skin of early fw 190a": { + "name": "Fw190A8 JG2 Generic", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190a8": { + "name": "FW190A8", + "countries": "All" + }, + "fw190_alfred_bindseil": { + "name": "6.JG 1_Alfred Bindseil", + "countries": [ + "GER", + "NZG" + ] + }, + "fictional ijn 256th kokutai rai-153": { + "name": "Fictional IJN 256th Kokutai Rai-153", + "countries": [ + "JPN" + ] + }, + "fictional ijn carrier akagi ai-151": { + "name": "Fictional IJN Carrier Akagi AI-151", + "countries": [ + "JPN" + ] + }, + "fw-190a8_raf": { + "name": "FW190A8/R-2 PE882, No. 1426 Flight RAF - Late", + "countries": [ + "UK" + ] + }, + "factory skin": { + "name": "FW190A8 Luftwaffe", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190a8_2.jg 54_hans dortenmann": { + "name": "2.JG 54_Hans Dortenmann", + "countries": [ + "GER", + "NZG" + ] + }, + "fw 190 a-8 czech avia s.90": { + "name": "Fw 190 A-8 Czech Avia S.90", + "countries": [ + "CZE" + ] + }, + "fw190_ewald_preisz": { + "name": "6.JG 300_Ewald Preisz", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190a8 jg3 maximowitz": { + "name": "Fw 190 A8 JG3 Maximowitz", + "countries": [ + "GER", + "HUN", + "NZG" + ] + }, + "roaf-grupul7": { + "name": "RoAF-Grupul7", + "countries": [ + "ROU" + ] + } + }, + "type": "Aircraft", + "description": "Single propellor, straight wing, 1 crew. Würger ", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 29 + }, + "FW-190D9": { + "name": "FW-190D9", + "coalition": "red", + "category": "aircraft", + "label": "FW-190D9 Dora", + "era": "WW2", + "shortLabel": "190", + "loadouts": [ + { + "items": [ + { + "name": "Werfer-Granate 21 - 21 cm UnGd air-to-air rocket", + "quantity": 2 + } + ], + "enabled": true, + "code": "BR 21", + "name": "BR 21", + "roles": [ + "CAP", + "CAP", + "Strike", + "CAS" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "300 liter Fuel Tank Type E2", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank", + "name": "Fuel Tank", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "13 R4M 3.2kg UnGd air-to-air rocket", + "quantity": 2 + } + ], + "enabled": true, + "code": "R4M", + "name": "R4M", + "roles": [ + "CAP", + "CAP", + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "SC 500 J - 500kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "SC500", + "name": "SC500", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + } + ], + "filename": "fw190.png", + "enabled": true, + "liveries": { + "fw-190d9_5jg301": { + "name": "FW-190_5JG301.1945", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_iv.jg 26_hans dortenmann": { + "name": " Oblt. Hans Dortenmann, IV./JG 26, 1945", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_red": { + "name": "FW_190D9_Red.1945", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_13.jg 51_heinz marquardt": { + "name": " Heinz-Marquardt, 13./JG 51, 1945", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_jg54": { + "name": "FW-190D9_JG54.1945", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_black 4 of stab iijg 6": { + "name": "FW-190D9_Black <4 of Stab II/JG 6", + "countries": [ + "GER", + "NZG" + ] + }, + "fw-190d9_usa": { + "name": "FW-190_USA_Standard.1943", + "countries": [ + "USA" + ] + }, + "fw-190d9_gb": { + "name": "FW-190_GB_Standart.1943", + "countries": [ + "UK" + ] + }, + "fw-190d9_ussr": { + "name": "FW-190 WNr 210251 USSR (Captured. 1943)", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "Single propellor, straight wing, 1 crew. Dora", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 33 + }, + "H-6J": { + "name": "H-6J", + "coalition": "red", + "category": "aircraft", + "label": "H-6 J Badger", + "era": "Mid Cold War", + "shortLabel": "H6", + "loadouts": [ + { + "items": [ + { + "name": "12 x 250-2 - 250kg GP Bombs HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "250-2 HD Bomb x 12 in Bay", + "name": "250-2 HD Bomb x 12 in Bay", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "24 x 250-2 - 250kg GP Bombs HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "250-2 HD Bomb x 24 in Bay", + "name": "250-2 HD Bomb x 24 in Bay", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MER6 - 6 x 250-3 - 250kg GP Bombs LD", + "quantity": 6 + } + ], + "enabled": true, + "code": "250-3 LD Bomb x 36", + "name": "250-3 LD Bomb x 36", + "roles": [ + "Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "KD-20", + "quantity": 4 + } + ], + "enabled": true, + "code": "KD-20 x 4", + "name": "KD-20 x 4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KD-20", + "quantity": 6 + } + ], + "enabled": true, + "code": "KD-20 x 6", + "name": "KD-20 x 6", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KD-63", + "quantity": 2 + }, + { + "name": "DATA-LINK POD", + "quantity": 1 + }, + { + "name": "KD-20", + "quantity": 2 + } + ], + "enabled": true, + "code": "KD-63 x 2, KD-20 x 2", + "name": "KD-63 x 2, KD-20 x 2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KD-63", + "quantity": 2 + }, + { + "name": "DATA-LINK POD", + "quantity": 1 + }, + { + "name": "KD-20", + "quantity": 4 + } + ], + "enabled": true, + "code": "KD-63 x 2, KD-20 x 4", + "name": "KD-63 x 2, KD-20 x 4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KD-63", + "quantity": 4 + }, + { + "name": "DATA-LINK POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "KD-63 x 4", + "name": "KD-63 x 4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "YJ-12", + "quantity": 2 + } + ], + "enabled": true, + "code": "YJ-12 x 2", + "name": "YJ-12 x 2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "YJ-12", + "quantity": 4 + } + ], + "enabled": true, + "code": "YJ-12 x 4", + "name": "YJ-12 x 4", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "YJ-83K", + "quantity": 6 + } + ], + "enabled": true, + "code": "YJ-83K x 6", + "name": "YJ-83K x 6", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "h-6.png", + "enabled": true, + "liveries": { + "planaf standard": { + "name": "PLANAF Standard", + "countries": [ + "CHN" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 4 crew bomber. Badger", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 114 + }, + "I-16": { + "name": "I-16", + "coalition": "red", + "category": "aircraft", + "label": "I-16", + "era": "WW2", + "shortLabel": "I16", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "RS-82", + "quantity": 6 + } + ], + "enabled": true, + "code": "6xRS-82", + "name": "6xRS-82", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100SV", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-100", + "name": "2xFAB-100", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "RS-82", + "quantity": 6 + }, + { + "name": "FAB-100SV", + "quantity": 2 + } + ], + "enabled": true, + "code": "6xRS-82, 2xFAB-100", + "name": "6xRS-82, 2xFAB-100", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "RS-82", + "quantity": 6 + }, + { + "name": "I-16 External Fuel Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "6xRS-82, 2xDropTank-93L", + "name": "6xRS-82, 2xDropTank-93L", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "I-16 External Fuel Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xDropTank-93L", + "name": "2xDropTank-93L", + "roles": [ + "CAP", + "Reconnaissance", + "Escort" + ] + } + ], + "filename": "i-16.png", + "enabled": true, + "liveries": { + "silver-black demo": { + "name": "Silver-black paint scheme", + "countries": [ + "SUN", + "RUS" + ] + }, + "red army camo": { + "name": "Red Army Air Force Camouflage", + "countries": [ + "SUN", + "RUS" + ] + }, + "spain nationalists": { + "name": "Spain (Nationalists)", + "countries": [ + "SPN", + "NZG" + ] + }, + "japan": { + "name": "Japan (Captured), Manchuria 1939", + "countries": [ + "NZG", + "JPN" + ] + }, + "finnish af": { + "name": "Finland, AFB Rompotti 1943", + "countries": [ + "FIN", + "NZG" + ] + }, + "red army standard": { + "name": "1 Red Army Air Force Standard", + "countries": [ + "SUN", + "RUS" + ] + }, + "spain republicans": { + "name": "Spain (Republicans)", + "countries": [ + "SUN", + "SPN" + ] + }, + "red five demo": { + "name": "RED FIVE Aerobatic Team", + "countries": [ + "SUN", + "RUS" + ] + }, + "clear": { + "name": "Green unmarked", + "countries": "All" + }, + "silver demo": { + "name": "Silver paint scheme", + "countries": [ + "SUN", + "RUS" + ] + }, + "red army winter": { + "name": "Red Army Air Force winter", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "Single propellor, straight wing, 1 crew. Ishak", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 20 + }, + "IL-76MD": { + "name": "IL-76MD", + "coalition": "red", + "category": "aircraft", + "label": "IL-76MD Candid", + "era": "Mid Cold War", + "shortLabel": "76", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "il-76.png", + "enabled": true, + "liveries": { + "ukrainian af aeroflot": { + "name": "Ukrainian AF aeroflot", + "countries": [ + "UKR" + ] + }, + "algerian af il-76md": { + "name": "Algerian AF IL-76MD", + "countries": [ + "DZA" + ] + }, + "china air force old": { + "name": "China Air Force Old", + "countries": [ + "CHN" + ] + }, + "ukrainian af": { + "name": "Ukrainian AF", + "countries": [ + "UKR" + ] + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "RUS" + ] + }, + "china air force new": { + "name": "China Air Force New", + "countries": [ + "CHN" + ] + }, + "mvd aeroflot": { + "name": "MVD aeroflot", + "countries": [ + "RUS" + ] + }, + "fsb aeroflot": { + "name": "FSB aeroflot", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 5 crew. Cargo and passenger aircraft. NATO reporting name: Candid", + "abilities": "AEW", + "canTargetPoint": false, + "canRearm": false, + "length": 152 + }, + "IL-78M": { + "name": "IL-78M", + "coalition": "red", + "category": "aircraft", + "label": "IL-78M Midas", + "era": "Late Cold War", + "shortLabel": "78", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Tanker" + ] + } + ], + "filename": "il-76.png", + "enabled": true, + "liveries": { + "rf air force aeroflot": { + "name": "RF Air Force aeroflot", + "countries": [ + "SUN", + "RUS" + ] + }, + "rf air force new": { + "name": "RF Air Force new", + "countries": [ + "RUS" + ] + }, + "algerian af il-78m": { + "name": "Algerian AF IL-78M", + "countries": [ + "DZA" + ] + }, + "china air force": { + "name": "China Air Force", + "countries": [ + "CHN" + ] + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 6 crew. Tanker aircraft. NATO reporting name: Midas", + "abilities": "Tanker, Drogue AAR", + "canTargetPoint": false, + "canRearm": false, + "length": 152 + }, + "J-11A": { + "name": "J-11A", + "coalition": "red", + "category": "aircraft", + "label": "J-11A Flaming Dragon", + "era": "Modern", + "shortLabel": "J11", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 6 + } + ], + "enabled": true, + "code": "FAB-100x36,R-73x2,ECM", + "name": "FAB-100x36,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x FAB-250", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250x8,R-73x2,ECM", + "name": "FAB-250x8,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x FAB-500", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500x8,R-73x2,ECM", + "name": "FAB-500x8,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-8M1 - 20 S-8KOM", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-8KOMx80,FAB-250x4,R-73x2,ECM", + "name": "S-8KOMx80,FAB-250x4,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-13L - 5 S-13 OF", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-13x20,FAB-250x4,R-73x2,ECM", + "name": "S-13x20,FAB-250x4,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x S-25", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-25x4,FAB-500x4,R-73x2,ECM", + "name": "S-25x4,FAB-500x4,R-73x2,ECM", + "roles": [ + "Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-27ERx4,R-27ETx2,R-73x2,ECM", + "name": "R-27ERx4,R-27ETx2,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 6 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-77x6,R-73x2,ECM", + "name": "R-77x6,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-27ERx6,R-73x2,ECM", + "name": "R-27ERx6,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-77x4,R-27ETx2,R-73x2,ECM", + "name": "R-77x4,R-27ETx2,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-77x4,R-27ERx2,R-73x2,ECM", + "name": "R-77x4,R-27ERx2,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500ShP - 500kg Concrete Piercing HD w booster Bomb", + "quantity": 6 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500ShPx6,R-73x2,ECM", + "name": "BetAB-500ShPx6,R-73x2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73x4,ECM", + "name": "R-73x4,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-77x2,R-27ETx2,R-73x2,ECM", + "name": "R-77x2,R-27ETx2,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-77x6,R-73x4", + "name": "R-77x6,R-73x4", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-77x2,R-27ETx2,R-27ERx2,R-73x2,ECM", + "name": "R-77x2,R-27ETx2,R-27ERx2,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-27ETx2,R-27ERx4,R-73x2,ECM", + "name": "R-27ETx2,R-27ERx4,R-73x2,ECM", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-8M1 - 20 S-8TsM", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-8TsMx80,FAB-250x4,R-73x2,ECM", + "name": "S-8TsMx80,FAB-250x4,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-8M1 - 20 S-8OFP2", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-8OFP2x80,FAB-250x4,R-73x2,ECM", + "name": "S-8OFP2x80,FAB-250x4,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-250 - 250kg GP Bombs LD", + "quantity": 3 + } + ], + "enabled": true, + "code": "FAB-250x18,R-73x2,ECM", + "name": "FAB-250x18,R-73x2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-8M1 - 20 S-8KOM", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*S8-KOMx2, R-73x2, ECM", + "name": "2*S8-KOMx2, R-73x2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RKL609 ECM Pod (Right)", + "quantity": 1 + }, + { + "name": "RKL609 ECM Pod (Left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x B-8M1 - 20 S-8OFP2", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*S8-OFP2x2, R-73x2, ECM", + "name": "2*S8-OFP2x2, R-73x2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "2 x FAB-500", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250x4, 2*FAB-500x2, R-73x2", + "name": "FAB-250x4, 2*FAB-500x2, R-73x2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "2 x FAB-250", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250x4, 2*FAB-250x2, R-73x2", + "name": "FAB-250x4, 2*FAB-250x2, R-73x2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + }, + { + "name": "RBK-250-275 - 150 x AO-1SCh, 250kg CBU HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-250 HEAT/APx2, RBK-250 HE/Fragx2, R-73x2", + "name": "RBK-250 HEAT/APx2, RBK-250 HE/Fragx2, R-73x2", + "roles": [ + "CAS" + ] + } + ], + "filename": "su-27.png", + "enabled": true, + "liveries": { + "plaaf 19th ad": { + "name": "PLAAF 19th AD", + "countries": [ + "CHN" + ] + }, + "plaaf 17th ab": { + "name": "PLAAF 17th AB", + "countries": [ + "CHN" + ] + }, + "plaaf 18th ad 'thunderclap wing' (fictional)": { + "name": "PLAAF 18th AD 'Thunderclap Wing' (Fictional)", + "countries": [ + "CHN" + ] + }, + "usn aggressor vfc-13 'ferris' (fictional)": { + "name": "Aggressor VFC-13 'Ferris' (Fictional)", + "countries": [ + "AUSAF" + ] + }, + "plaaf 19th ad (reworked)": { + "name": "PLAAF 19th AD (Reworked)", + "countries": [ + "CHN" + ] + }, + "plaaf 14th ad": { + "name": "PLAAF 14th AD", + "countries": [ + "CHN" + ] + }, + "plaaf 6th ad": { + "name": "PLAAF 6th AD", + "countries": [ + "CHN" + ] + }, + "plaaf 14th ad (reworked)": { + "name": "PLAAF 14th AD (Reworked)", + "countries": [ + "CHN" + ] + }, + "plaaf opfor 'desert' (fictional)": { + "name": "PLAAF OPFOR 'Desert' (Fictional)", + "countries": [ + "CHN" + ] + }, + "plaaf 7th ad (reworked)": { + "name": "PLAAF 7th AD (Reworked)", + "countries": [ + "CHN" + ] + }, + "usaf 65th aggressor sqn 'desert' (fictional)": { + "name": "65th Aggressor SQN 'Desert' (Fictional)", + "countries": [ + "AUSAF" + ] + }, + "sky hunter": { + "name": "Sky Hunter", + "countries": [ + "CHN" + ] + }, + "plaaf 2nd ad (parade)": { + "name": "PLAAF 2nd AD (Parade)", + "countries": [ + "CHN" + ] + }, + "plaaf opfor 'jungle' (fictional)": { + "name": "PLAAF OPFOR 'Jungle' (Fictional) ", + "countries": [ + "CHN" + ] + }, + "plaaf 33th ad (reworked)": { + "name": "PLAAF 33th AD (Reworked)", + "countries": [ + "CHN" + ] + }, + "plaaf 33th ad": { + "name": "PLAAF 33th AD", + "countries": [ + "CHN" + ] + }, + "usaf 65th aggressor sqn 'gray' (fictional)": { + "name": "65th Aggressor SQN 'Gray' (Fictional)", + "countries": [ + "AUSAF" + ] + }, + "plaaf 2nd ad": { + "name": "PLAAF 2nd AD", + "countries": [ + "CHN" + ] + }, + "plaaf 7th ad": { + "name": "PLAAF 7th AD", + "countries": [ + "CHN" + ] + }, + "plaaf ghost gray (fictional)": { + "name": "PLAAF Ghost Gray (Fictional)", + "countries": [ + "CHN" + ] + }, + "plaaf 2nd ad (reworked)": { + "name": "PLAAF 2nd AD (Reworked)", + "countries": [ + "CHN" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, 1 crew, fighter and strike. NATO reporting name: Flanker", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 71 + }, + "JF-17": { + "name": "JF-17", + "coalition": "red", + "category": "aircraft", + "label": "JF-17 Thunder", + "era": "Modern", + "shortLabel": "J17", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "C802AK (DIS)", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C802AKx2, 800L Tank", + "name": "PL-5Ex2, C802AKx2, 800L Tank", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, 1100L Tank, 800L Tank", + "name": "PL-5Ex2, C-701 IRx2, 1100L Tank, 800L Tank", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, SD-10x2, 1100L Tankx2, WMD7", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, LD-10x2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, LD-10x2, 1100L Tankx2, WMD7", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 800L Tank, WMD7", + "name": "PL-5Ex2, 800L Tank, WMD7", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GBU-10", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, GBU-10x2, WMD7", + "name": "PL-5Ex2, GBU-10x2, WMD7", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "GDJ-II19 - 2 x GBU-12", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*GBU-12x2, 800L Tank, WMD7", + "name": "PL-5Ex2, 2*GBU-12x2, 800L Tank, WMD7", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "GDJ-II19 - 2 x Mk-82 SnakeEye", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*Mk-82x2, Mk-83x2, 800L Tank", + "name": "PL-5Ex2, 2*Mk-82x2, Mk-83x2, 800L Tank", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 1100L Tankx2, 800L Tank", + "name": "PL-5Ex2, 1100L Tankx2, 800L Tank", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "CM802AKG (DIS)", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "DATA-LINK POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, WMD7, CM802AKGx2, 800L Tank, DL", + "name": "PL-5Ex2, WMD7, CM802AKGx2, 800L Tank, DL", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, 1100L Tank, 800L Tank", + "name": "PL-5Ex2, C-701 CCDx2, 1100L Tank, 800L Tank", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "GBU-12", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, GBU-12x2, 1100L Tank, WMD7", + "name": "PL-5Ex2, GBU-12x2, 1100L Tank, WMD7", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GBU-16", + "quantity": 2 + }, + { + "name": "GDJ-II19 - 2 x GBU-12", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*GBU-12x2, GBU-16x2, WMD7", + "name": "PL-5Ex2, 2*GBU-12x2, GBU-16x2, WMD7", + "roles": [ + "CAS", + "Strike", + "FAC-A" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, 1100L Tankx2, WMD7", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "LD-10 x 2", + "quantity": 1 + }, + { + "name": "KG-600", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, WMD7, 800L Tankx2, SPJ, 2*LD-10", + "name": "PL-5Ex2, WMD7, 800L Tankx2, SPJ, 2*LD-10", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LS-6-500", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, LS-6x2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, LS-6x2, 1100L Tankx2, WMD7", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, C-701 IRx2, 1100L Tankx2, WMD7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "GBU-12", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, GBU-12x2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, GBU-12x2, 1100L Tankx2, WMD7", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LD-10x2, 1100L Tankx2, SPJ", + "name": "PL-5Ex2, 2*LD-10x2, 1100L Tankx2, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, LD-10x2, 1100L Tankx2, SPJ", + "name": "PL-5Ex2, LD-10x2, 1100L Tankx2, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "LS-6-500", + "quantity": 2 + }, + { + "name": "LD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LD-10x2, LS-6x2, SPJ", + "name": "PL-5Ex2, 2*LD-10x2, LS-6x2, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "GB-6-HE", + "quantity": 2 + }, + { + "name": "LD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LD-10x2, GB-6-HEx2, SPJ", + "name": "PL-5Ex2, 2*LD-10x2, GB-6-HEx2, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, 800L Tankx2, WMD7", + "name": "PL-5Ex2, C-701 IRx2, 800L Tankx2, WMD7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, C-701 CCDx2, 1100L Tankx2, WMD7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, 800L Tankx2, WMD7", + "name": "PL-5Ex2, C-701 CCDx2, 800L Tankx2, WMD7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "GDJ-II19 - 2 x GBU-12", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*GBU-12x2, 1100L Tank, WMD7", + "name": "PL-5Ex2, 2*GBU-12x2, 1100L Tank, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, 1100L Tank, WMD7", + "name": "PL-5Ex2, C-701 IRx2, 1100L Tank, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, 800L Tank, WMD7", + "name": "PL-5Ex2, C-701 IRx2, 800L Tank, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, 1100L Tank, WMD7", + "name": "PL-5Ex2, C-701 CCDx2, 1100L Tank, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, 800L Tank, WMD7", + "name": "PL-5Ex2, C-701 CCDx2, 800L Tank, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 1 + }, + { + "name": "C-701T", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "LS-6-500", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IRx2, LS-6x2, 800L Tank", + "name": "PL-5Ex2, C-701 IRx2, LS-6x2, 800L Tank", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 1 + }, + { + "name": "C-701T", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "GB-6-HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IR/CCD, GB-6-HEx2, 800L Tank", + "name": "PL-5Ex2, C-701 IR/CCD, GB-6-HEx2, 800L Tank", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701IR", + "quantity": 1 + }, + { + "name": "C-701T", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "GB-6-SFW", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 IR/CCD, GB-6-SFWx2, 800L Tank", + "name": "PL-5Ex2, C-701 IR/CCD, GB-6-SFWx2, 800L Tank", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GB-6-SFW", + "quantity": 2 + }, + { + "name": "BRM-1_90MM", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, WMD7, GB-6-SFWx2, 800L Tank, BRM1", + "name": "PL-5Ex2, WMD7, GB-6-SFWx2, 800L Tank, BRM1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GB-6-SFW", + "quantity": 2 + }, + { + "name": "GBU-12", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, WMD7, GB-6-SFWx2, 800L Tank, GBU-12", + "name": "PL-5Ex2, WMD7, GB-6-SFWx2, 800L Tank, GBU-12", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 3 + }, + { + "name": "GDJ-II19 - 2 x Mk-82 SnakeEye", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*Mk-82SEx2, Mk-83x3", + "name": "PL-5Ex2, 2*Mk-82SEx2, Mk-83x3", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 3 + } + ], + "enabled": true, + "code": "PL-5Ex2, Mk-84x3", + "name": "PL-5Ex2, Mk-84x3", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "GDJ-II19 - 2 x LAU68 MK5", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*Mk5x2, 800L Tank", + "name": "PL-5Ex2, 2*Mk5x2, 800L Tank", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "UG_90MM", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, Unguided 90mmx2, 800L Tank", + "name": "PL-5Ex2, Unguided 90mmx2, 800L Tank", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 3 + }, + { + "name": "GDJ-II19 - 2 x LAU68 MK5", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*Mk5x2, Mk-83x3", + "name": "PL-5Ex2, 2*Mk5x2, Mk-83x3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "BRM-1_90MM", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, BRM1x2, 1100L Tank, WMD7", + "name": "PL-5Ex2, BRM1x2, 1100L Tank, WMD7", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2x1100L Tank", + "name": "PL-5Ex2, 2x1100L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, 2x1100L Tank", + "name": "PL-5Ex2, SD-10x2, 2x1100L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*SD-10x2, 2x1100L Tank", + "name": "PL-5Ex2, 2*SD-10x2, 2x1100L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, 800L Tank", + "name": "PL-5Ex2, 800L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, 800L Tank", + "name": "PL-5Ex2, SD-10x2, 800L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "SD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*SD-10x2, 800L Tank", + "name": "PL-5Ex2, 2*SD-10x2, 800L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, SPJ", + "name": "PL-5Ex2, SD-10x2, SPJ", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, SPJ", + "name": "PL-5Ex2, SPJ", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "SD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*SD-10x2, SPJ", + "name": "PL-5Ex2, 2*SD-10x2, SPJ", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2", + "name": "PL-5Ex2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2", + "name": "PL-5Ex2, SD-10x2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*SD-10", + "name": "PL-5Ex2, 2*SD-10", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, SPJ, 1100L Tankx2", + "name": "PL-5Ex2, SD-10x2, SPJ, 1100L Tankx2", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10 x 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*SD-10x2, 1100L Tankx2, 800L Tank", + "name": "PL-5Ex2, 2*SD-10x2, 1100L Tankx2, 800L Tank", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "SD-10", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, SD-10x2, 1100L Tankx2, 800L Tank", + "name": "PL-5Ex2, SD-10x2, 1100L Tankx2, 800L Tank", + "roles": [ + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "BRM-1_90MM", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "GBU-16", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, GBU-16x2, BRM1x2, WMD7", + "name": "PL-5Ex2, GBU-16x2, BRM1x2, WMD7", + "roles": [ + "FAC-A", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "PL-5EII", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, WMD7", + "name": "PL-5Ex2, WMD7", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "LD-10 x 2", + "quantity": 1 + }, + { + "name": "SD-10 x 2", + "quantity": 1 + }, + { + "name": "GB-6", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LD-10, GB-6x2, 2*SD-10, SPJ", + "name": "PL-5Ex2, 2*LD-10, GB-6x2, 2*SD-10, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "C-701T", + "quantity": 2 + }, + { + "name": "KG-600", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, C-701 CCDx2, SPJ", + "name": "PL-5Ex2, C-701 CCDx2, SPJ", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "LD-10 x 2", + "quantity": 1 + }, + { + "name": "SD-10 x 2", + "quantity": 1 + }, + { + "name": "CM802AKG (DIS)", + "quantity": 2 + }, + { + "name": "DATA-LINK POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LD-10, CM802AKGx2, 2*SD-10, DL", + "name": "PL-5Ex2, 2*LD-10, CM802AKGx2, 2*SD-10, DL", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 1 + }, + { + "name": "GDJ-II19 - 2 x Mk-82", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*MK-82x2, MK-83x2, MK-84", + "name": "PL-5Ex2, 2*MK-82x2, MK-83x2, MK-84", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "LS-6-500", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "GB-6", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, LS-6x2, GB-6x2, 800L Tank", + "name": "PL-5Ex2, LS-6x2, GB-6x2, 800L Tank", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GDJ-II19 - 2 x GBU-12", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "LS-6-500", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*GBU-12x2, LS-6x2, WMD7", + "name": "PL-5Ex2, 2*GBU-12x2, LS-6x2, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "GDJ-II19 - 2 x GBU-12", + "quantity": 2 + }, + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "GB-6", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*GBU-12x2, GB-6x2, WMD7", + "name": "PL-5Ex2, 2*GBU-12x2, GB-6x2, WMD7", + "roles": [] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "TYPE-200A Dual", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*Type-200Ax2", + "name": "PL-5Ex2, 2*Type-200Ax2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "TYPE-200A", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, Type-200Ax2", + "name": "PL-5Ex2, Type-200Ax2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "LS-6-250 Dual", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LS6-250x2, 800L Tankx2, WMD7", + "name": "PL-5Ex2, 2*LS6-250x2, 800L Tankx2, WMD7", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "800L Tank", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LS-6-250 Dual", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LS6-250x2, 800L Tank, 1100L Tankx2", + "name": "PL-5Ex2, 2*LS6-250x2, 800L Tank, 1100L Tankx2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "1100L Tank", + "quantity": 2 + }, + { + "name": "LS-6-100 Dual", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LS6-100x2, 1100L Tankx2, WMD7", + "name": "PL-5Ex2, 2*LS6-100x2, 1100L Tankx2, WMD7", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PL-5EII", + "quantity": 2 + }, + { + "name": "WMD7 POD", + "quantity": 1 + }, + { + "name": "800L Tank", + "quantity": 2 + }, + { + "name": "LS-6-100 Dual", + "quantity": 2 + } + ], + "enabled": true, + "code": "PL-5Ex2, 2*LS6-100x2, 800L Tankx2, WMD7", + "name": "PL-5Ex2, 2*LS6-100x2, 800L Tankx2, WMD7", + "roles": [ + "CAS" + ] + } + ], + "filename": "jf-17.png", + "enabled": true, + "liveries": { + "paf black panthers 07-101": { + "name": "Pakistan Air Force No.16 Sqn Black Panthers 07-101", + "countries": [ + "PAK" + ] + }, + "paf phoenixes": { + "name": "Pakistan Air Force No.28 Sqn Phoenixes", + "countries": [ + "PAK" + ] + }, + "paf black spiders 07-101 (fictional)": { + "name": "Pakistan Air Force No.26 Sqn Black Spiders 07-101 (Fictional)", + "countries": [ + "PAK" + ] + }, + "paf 07-101 (overhauled)": { + "name": "Pakistan Air Force 07-101 (Overhauled)", + "countries": [ + "PAK" + ] + }, + "paf black panthers (b2v2)": { + "name": "Pakistan Air Force No.16 Sqn Black Panthers (Block2 Camo2)", + "countries": [ + "PAK" + ] + }, + "plaaf 125th ab (fictional)": { + "name": "PLAAF 125th AB (Fictional)", + "countries": [ + "CHN" + ] + }, + "naf 722": { + "name": "Nigerian Air Force 722", + "countries": [ + "NGA" + ] + }, + "paf dark camo": { + "name": "Pakistan Air Force Dark Camo", + "countries": [ + "PAK" + ] + }, + "'splinter' camo for blue side (fictional)": { + "name": "\"Splinter\" Camo for Blue Side (Fictional)", + "countries": "All" + }, + "paf black spiders (web camo)": { + "name": "Pakistan Air Force No.26 Sqn Black Spiders (Web Camo)", + "countries": [ + "PAK" + ] + }, + "plaaf 111th ab (fictional)": { + "name": "PLAAF 111th AB (Fictional)", + "countries": [ + "CHN" + ] + }, + "paf black panthers": { + "name": "Pakistan Air Force No.16 Sqn Black Panthers", + "countries": [ + "PAK" + ] + }, + "paf black spiders (default)": { + "name": "Pakistan Air Force No.26 Sqn Black Spiders", + "countries": [ + "PAK" + ] + }, + "paf ccs fierce fragons": { + "name": "Pakistan Air Force CCS Sqn Fierce Dragons", + "countries": [ + "PAK" + ] + }, + "plaaf ghost gray camo (fictional)": { + "name": "PLAAF \"Ghost Gray\" Camo (Fictional)", + "countries": [ + "CHN" + ] + }, + "'chips' camo for blue side (fictional)": { + "name": "USAF \"Chips\" Camo (Fictional)", + "countries": [ + "USA" + ] + }, + "paf black panthers (reworked)": { + "name": "Pakistan Air Force No.16 Sqn Black Panthers (Reworked)", + "countries": [ + "PAK" + ] + }, + "maf blue sea camo": { + "name": "Myanmar Air Force Blue Sea Camo", + "countries": "All" + }, + "proto 06": { + "name": "FC-1 Prototype 06", + "countries": [ + "CHN" + ] + }, + "paf minhasians": { + "name": "Pakistan Air Force No.2 Sqn Minhasians", + "countries": [ + "PAK" + ] + }, + "paf sharp shooters": { + "name": "Pakistan Air Force No.18 Sqn Sharp Shooters", + "countries": [ + "PAK" + ] + }, + "paf tail choppers": { + "name": "Pakistan Air Force No.14 Sqn Tail Choppers", + "countries": [ + "PAK" + ] + }, + "paf black panthers (b2v1)": { + "name": "Pakistan Air Force No.16 Sqn Black Panthers (Block2 Camo1)", + "countries": [ + "PAK" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew, fighter and strike. Geoff", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 49 + }, + "KC-135": { + "name": "KC-135", + "coalition": "blue", + "category": "aircraft", + "label": "KC-135 Stratotanker", + "era": "Early Cold War", + "shortLabel": "135", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Tanker" + ] + } + ], + "filename": "kc-135.png", + "enabled": true, + "liveries": { + "standard usaf": { + "name": "USAF Standard", + "countries": [ + "USA" + ] + }, + "turaf standard": { + "name": "Turkish Air Force", + "countries": [ + "TUR" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 3 crew. Tanker aircraft. Stratotanker", + "abilities": "Tanker, Boom AAR", + "canTargetPoint": false, + "canRearm": false, + "cost": null, + "length": 136 + }, + "KC135MPRS": { + "name": "KC135MPRS", + "coalition": "blue", + "category": "aircraft", + "label": "KC-135 MPRS Stratotanker", + "era": "Early Cold War", + "shortLabel": "135M", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Tanker" + ] + } + ], + "filename": "kc-135.png", + "enabled": true, + "liveries": { + "100th arw": { + "name": "100th ARW", + "countries": [ + "USA" + ] + }, + "22nd arw": { + "name": "22nd ARW", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swept wing, 3 crew. Tanker aircraft. Stratotanker", + "abilities": "Tanker, Drogue AAR, MPRS", + "canTargetPoint": false, + "canRearm": false, + "length": 136 + }, + "L-39ZA": { + "name": "L-39ZA", + "coalition": "red", + "category": "aircraft", + "label": "L-39ZA", + "era": "Mid Cold War", + "shortLabel": "L39", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100x2", + "name": "FAB-100x2", + "roles": [ + "Antiship Strike", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel Tank 150 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100x2, PTB-150x2", + "name": "FAB-100x2, PTB-150x2", + "roles": [ + "Antiship Strike", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel Tank 350 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100x2, PTB-350x2", + "name": "FAB-100x2, PTB-350x2", + "roles": [ + "Antiship Strike", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "FAB-100x4", + "name": "FAB-100x4", + "roles": [ + "Antiship Strike", + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "2 x OFAB-100 Jupiter - 100kg GP Bombs HD", + "quantity": 2 + }, + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "OFAB-100 Jupiter x4, FAB-100x2", + "name": "OFAB-100 Jupiter x4, FAB-100x2", + "roles": [ + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "2 x OFAB-100 Jupiter - 100kg GP Bombs HD", + "quantity": 4 + } + ], + "enabled": true, + "code": "OFAB-100 Jupiter x8", + "name": "OFAB-100 Jupiter x8", + "roles": [ + "CAS", + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "PK-3 - 7.62mm GPMG", + "quantity": 2 + }, + { + "name": "Fuel Tank 150 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "PK-3x2, PTB-150x2", + "name": "PK-3x2, PTB-150x2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "PK-3 - 7.62mm GPMG", + "quantity": 4 + } + ], + "enabled": true, + "code": "PK-3x4", + "name": "PK-3x4", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-3Sx2", + "name": "R-3Sx2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + }, + { + "name": "PK-3 - 7.62mm GPMG", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-3Sx2, PK-3x2", + "name": "R-3Sx2, PK-3x2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60Mx2", + "name": "R-60Mx2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "PK-3 - 7.62mm GPMG", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60Mx2, PK-3x2", + "name": "R-60Mx2, PK-3x2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "UB-16UM pod - 16 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-5KOx32", + "name": "S-5KOx32", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-16UM pod - 16 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-5KOx32, FAB-100x2", + "name": "S-5KOx32, FAB-100x2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-16UM pod - 16 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel Tank 150 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-5KOx32, PTB-150x2", + "name": "S-5KOx32, PTB-150x2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-16UM pod - 16 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel Tank 350 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-5KOx32, PTB-350x2", + "name": "S-5KOx32, PTB-350x2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-16UM pod - 16 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-5KOx64", + "name": "S-5KOx64", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "SAB-100MN - 100 kg Illumination Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "SAB-100x4", + "name": "SAB-100x4", + "roles": [ + "FAC-A" + ] + } + ], + "filename": "l-39.png", + "enabled": true, + "liveries": { + "splinter camo woodland": { + "name": "Splinter camo woodland", + "countries": "All" + }, + "algerian af tiger nl-36": { + "name": "Algerian AF Tiger NL-36", + "countries": [ + "DZA" + ] + }, + "czech air force": { + "name": "Czech Air Force", + "countries": [ + "CZE" + ] + }, + "algerian af nl-44": { + "name": "Algerian AF NL-44", + "countries": [ + "DZA" + ] + }, + "splinter camo desert": { + "name": "Splinter camo desert", + "countries": "All" + }, + "slovak air force": { + "name": "2nd SQN AFB Sliac", + "countries": [ + "SVK" + ] + }, + "russian air force": { + "name": "1 Russian Air Force", + "countries": [ + "RUS" + ] + }, + "czechoslovakia air force": { + "name": "Czechoslovakia_Air Force", + "countries": [ + "CZE" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 40 + }, + "M-2000C": { + "name": "M-2000C", + "coalition": "blue", + "category": "aircraft", + "label": "M-2000C Mirage", + "era": "Late Cold War", + "shortLabel": "2k", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fox", + "name": "Fox", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fox / Magic (QRA)", + "name": "Fox / Magic (QRA)", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Super 530D", + "quantity": 2 + } + ], + "enabled": true, + "code": "Alpha / S530D", + "name": "Alpha / S530D", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "Matra Super 530D", + "quantity": 2 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fox / S530D / Magic", + "name": "Fox / S530D / Magic", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "Matra Super 530D", + "quantity": 2 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + }, + { + "name": "Eclair 16 flares 16 chaffs", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fox / S530D / Magic / Eclair", + "name": "Fox / S530D / Magic / Eclair", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + } + ], + "enabled": true, + "code": "Bravo", + "name": "Bravo", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + } + ], + "enabled": true, + "code": "Bravo / Magic", + "name": "Bravo / Magic", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kilo", + "name": "Kilo", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kilo / Magic", + "name": "Kilo / Magic", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "Bravo / 4xMk-82 / Magic", + "name": "Bravo / 4xMk-82 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + } + ], + "enabled": true, + "code": "Bravo / GBU-12 / Magic", + "name": "Bravo / GBU-12 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "AUF2 GBU-12 x 2", + "quantity": 1 + } + ], + "enabled": true, + "code": "Bravo / 2xGBU-12 / Magic", + "name": "Bravo / 2xGBU-12 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "GBU-16 - 1000lb Laser Guided Bomb", + "quantity": 1 + } + ], + "enabled": true, + "code": "Bravo / GBU-16 / Magic", + "name": "Bravo / GBU-16 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "GBU-24 Paveway III - 2000lb Laser Guided Bomb", + "quantity": 1 + } + ], + "enabled": true, + "code": "Bravo / GBU-24 / Magic", + "name": "Bravo / GBU-24 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "BAP-100 x 18", + "quantity": 1 + } + ], + "enabled": true, + "code": "Bravo / BAP-100 / Magic", + "name": "Bravo / BAP-100 / Magic", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 4 + } + ], + "enabled": true, + "code": "Bravo / 4xSnakeEye / Magic", + "name": "Bravo / 4xSnakeEye / Magic", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fox / 4xMk-82 / Magic", + "name": "Fox / 4xMk-82 / Magic", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Matra Magic II", + "quantity": 2 + }, + { + "name": "RPL 541 2000 liters Fuel Tank ", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + }, + { + "name": "RPL 522 1300 liters Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kilo / 4xMk-82 / Magic", + "name": "Kilo / 4xMk-82 / Magic", + "roles": [ + "Strike" + ] + } + ], + "filename": "m2000.png", + "enabled": true, + "liveries": { + "ada alsace lf-2": { + "name": "Ada Alsace LF-2", + "countries": [ + "FRA" + ] + }, + "peru052": { + "name": "Fuerza Aerea Peruana 052", + "countries": [ + "FRA", + "PER" + ] + }, + "mission accomplie": { + "name": "2022 MISSION ACCOMPLIE by MALBAK", + "countries": "All" + }, + "cambresis": { + "name": "AdA Cambresis", + "countries": [ + "FRA" + ] + }, + "greek air force": { + "name": "Polemikh Aeroporia (Greek Air Force)", + "countries": [ + "FRA", + "GRC" + ] + }, + "brasilian air force": { + "name": "Forca Aerea Brasileira (Brazilian Air Force)", + "countries": [ + "BRA", + "FRA" + ] + }, + "2003 tigermeet": { + "name": "NATO Tigermeet 2003", + "countries": [ + "FRA" + ] + }, + "peru064": { + "name": "Fuerza Aerea Peruana 064", + "countries": [ + "FRA", + "PER" + ] + }, + "2010 tigermeet": { + "name": "NATO Tigermeet 2010", + "countries": [ + "FRA" + ] + }, + "uae air force": { + "name": "UAE Air Defense Air Force", + "countries": [ + "FRA", + "ARE" + ] + }, + "2004 tigermeet": { + "name": "NATO Tigermeet 2004", + "countries": [ + "FRA" + ] + }, + "ada chasse 2-5": { + "name": "AdA Chasse 2/5", + "countries": [ + "FRA" + ] + }, + "iaf silver 59": { + "name": "Israeli Air Force 101 Sqn 1967 scheme", + "countries": [ + "ABH", + "RUS", + "SPN", + "ISR", + "USA", + "RSO", + "UKR", + "TUR", + "BEL", + "NOR", + "ITA", + "POL", + "NETH", + "GER", + "FRA", + "GRG", + "DEN", + "CZE", + "CAN", + "UK" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew, fighter and strike.", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 47 + }, + "MB-339A": { + "name": "MB-339A", + "coalition": "blue", + "category": "aircraft", + "label": "MB-339A", + "era": "Mid Cold War", + "shortLabel": "339", + "loadouts": [ + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "", + "quantity": 6 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks [Clean]", + "name": "A - 2*320L TipTanks [Clean]", + "roles": [ + "Transport" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "Fuel Tank 330lt", + "quantity": 2 + }, + { + "name": "", + "quantity": 3 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks + 2*330L Tanks [Ferry Medium Range]", + "name": "A - 2*320L TipTanks + 2*330L Tanks [Ferry Medium Range]", + "roles": [ + "Transport" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "LR-25 - 25 x UnGd Rkts, 50 mm ARF-8/M3 HEI Heavy", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD + 2*LR-25 (HEI Rockets)", + "name": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD + 2*LR-25 (HEI Rockets)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "LR-25 - 25 x UnGd Rkts, 50 mm ARF-8/M3 API", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD Bombs + 2*LR-25(API Rockets)", + "name": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD Bombs + 2*LR-25(API Rockets)", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "Mk-83 - 1000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Mk-81 - 250lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.83 + 2*Mk.81 ", + "name": "A - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*Mk.83 + 2*Mk.81 ", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 6 + } + ], + "enabled": true, + "code": "A - 2*320L TipTanks + 6*Mk.82LD", + "name": "A - 2*320L TipTanks + 6*Mk.82LD", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 330lt", + "quantity": 2 + }, + { + "name": "", + "quantity": 3 + }, + { + "name": "Cylindrical Tip Tank 500lt", + "quantity": 2 + }, + { + "name": "Luggage Container", + "quantity": 1 + } + ], + "enabled": true, + "code": "A - 2*500L TipTanks + 2*330L Tanks + Luggage Container [Ferry Long Range]", + "name": "A - 2*500L TipTanks + 2*330L Tanks + Luggage Container [Ferry Long Range]", + "roles": [ + "No task", + "Transport" + ] + }, + { + "items": [ + { + "name": "Cylindrical Tip Tank 500lt", + "quantity": 2 + }, + { + "name": "Matra Type 155 Rocket Pod", + "quantity": 2 + }, + { + "name": "BLG-66-AC Belouga", + "quantity": 2 + }, + { + "name": "AN/M3 Gunpod Right", + "quantity": 1 + }, + { + "name": "AN/M3 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "A - 2*500L TipTanks + 2*AN/M3 GunPods + 2*Matra 155 + 2* Belouga", + "name": "A - 2*500L TipTanks + 2*AN/M3 GunPods + 2*Matra 155 + 2* Belouga", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + }, + { + "name": "LR-25 - 25 x UnGd Rkts, 50 mm ARF-8/M3 API", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Cylindrical Tip Tank 500lt", + "quantity": 2 + } + ], + "enabled": true, + "code": "A - 2*500L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD + 2*LR-25 (API Rockets)", + "name": "A - 2*500L TipTanks + 2*DEFA-553 GunPods + 2*Mk.82LD + 2*LR-25 (API Rockets)", + "roles": [] + }, + { + "items": [ + { + "name": "Cylindrical Tip Tank 500lt", + "quantity": 2 + }, + { + "name": "LR-25 - 25 x UnGd Rkts, 50 mm ARF-8/M3 API", + "quantity": 2 + }, + { + "name": "Mk-82 Snakeye - 500lb GP Bomb HD", + "quantity": 4 + } + ], + "enabled": true, + "code": "A - 2*500L TipTanks + 4*Mk.82HD + 2*LR-25 (API Rockets)", + "name": "A - 2*500L TipTanks + 4*Mk.82HD + 2*LR-25 (API Rockets)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "LAU-10 pod - 4 x 127mm ZUNI, UnGd Rkts Mk71, HE/FRAG", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "AA - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*LAU-10(Zuni Rockets) [ARMADA]", + "name": "AA - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*LAU-10(Zuni Rockets) [ARMADA]", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + }, + { + "name": "Fuel Tank 330lt", + "quantity": 2 + }, + { + "name": "AN/M3 Gunpod Right", + "quantity": 1 + }, + { + "name": "AN/M3 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "AM - 2*320L TipTanks + 2*AN/M3 GunPods + 2*330L Tanks + 2*LAU-3 (Hydra rockets)", + "name": "AM - 2*320L TipTanks + 2*AN/M3 GunPods + 2*330L Tanks + 2*LAU-3 (Hydra rockets)", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "14-3-M2 - 6 x BAT-120 ABL - 34kg HE/Frag Chute Retarded Bomb HD", + "quantity": 6 + } + ], + "enabled": true, + "code": "Anti - Light Armoured Vehicle (36*BAT-120 ABL)", + "name": "Anti - Light Armoured Vehicle (36*BAT-120 ABL)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "Matra Type 155 Rocket Pod", + "quantity": 2 + }, + { + "name": "Fuel Tank 330lt", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "AP - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*330L Tanks + 2*Matra 155 (SNEB rockets)", + "name": "AP - 2*320L TipTanks + 2*DEFA-553 GunPods + 2*330L Tanks + 2*Matra 155 (SNEB rockets)", + "roles": [ + "CAS" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "AN/M3 Gunpod Right", + "quantity": 1 + }, + { + "name": "Photo-Recon Pod (4*70mm Vinten Cameras)", + "quantity": 1 + }, + { + "name": "Fuel Tank 330lt", + "quantity": 2 + }, + { + "name": "", + "quantity": 2 + } + ], + "enabled": true, + "code": "Recon", + "name": "Recon", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster", + "quantity": 4 + }, + { + "name": "Matra Type 155 Rocket Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "Runway Interdiction", + "name": "Runway Interdiction", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Elliptic Tip Tank 320lt", + "quantity": 2 + }, + { + "name": "14-3-M2 - 6 x BAP-100 - 32kg Concrete Piercing Chute Retarded Bomb w/Booster", + "quantity": 6 + } + ], + "enabled": true, + "code": "Runway Interdiction (36*BAP-100)", + "name": "Runway Interdiction (36*BAP-100)", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Cylindrical Tip Tank 500lt", + "quantity": 2 + }, + { + "name": "BRD-4-250 - 4 x Mk 76 - 25lb Practice Bomb LD", + "quantity": 1 + }, + { + "name": "", + "quantity": 2 + }, + { + "name": "DEFA553 Gunpod Right", + "quantity": 1 + }, + { + "name": "DEFA553 Gunpod Left", + "quantity": 1 + } + ], + "enabled": true, + "code": "Training", + "name": "Training", + "roles": [] + } + ], + "filename": "mb-339.png", + "enabled": true, + "liveries": { + "mb339an 'nigeria'": { + "name": "Nigerian Air Force | Camo (Low-Vis)", + "countries": [ + "NGA" + ] + }, + "mb339a italian camo - late": { + "name": "Italian Camo - Late", + "countries": [ + "ITA" + ] + }, + "mb339a italian factory": { + "name": "Italian Orange/White", + "countries": [ + "ITA" + ] + }, + "mb339am 'malaysia'": { + "name": "Royal Malaysian Air Force | Camo (Low-Vis)", + "countries": [ + "MYS" + ] + }, + "mb339aa 'armada' - yellow band": { + "name": "ARMADA Argentina | Camo (Yellow Band)", + "countries": [ + "ARG" + ] + }, + "mb339ag 'ghana'": { + "name": "Ghana Air Force | Camo (Low-Vis)", + "countries": [ + "GHA" + ] + }, + "mb339a italian gray": { + "name": "Italian Gray", + "countries": [ + "ITA" + ] + }, + "mb339a italian camo - early": { + "name": "Italian Camo - Early", + "countries": [ + "ITA" + ] + }, + "mb339 'factory'": { + "name": "Aermacchi Factory Scheme | S-001 I-NEUF", + "countries": "All" + }, + "mb339ad 'uae'": { + "name": "UAE Air Force", + "countries": [ + "ARE" + ] + }, + "mb339aa 'armada' - crippa": { + "name": "ARMADA Argentina | Camo (Lt. Crippa's killmark)", + "countries": [ + "ARG" + ] + }, + "mb339ap 'peru'": { + "name": "Peruvian Air Force | Camo (Late)", + "countries": [ + "PER" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 36 + }, + "MQ-9 Reaper": { + "name": "MQ-9 Reaper", + "coalition": "blue", + "category": "aircraft", + "label": "MQ-9 Reaper", + "era": "Modern", + "shortLabel": "MQ9", + "loadouts": [ + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "AGM-114K * 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-114K*12", + "name": "AGM-114K*12", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "AGM-114K*8,GBU-38*2", + "name": "AGM-114K*8,GBU-38*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-12*4", + "name": "GBU-12*4", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "GBU-38(V)1/B - JDAM, 500lb GPS Guided Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "GBU-38*4", + "name": "GBU-38*4", + "roles": [ + "CAS", + "Strike" + ] + } + ], + "filename": "rq-1.png", + "enabled": true, + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + }, + "standard uk": { + "name": "standard UK", + "countries": [ + "UK" + ] + }, + "standard italy": { + "name": "standard Italy", + "countries": [ + "ITA" + ] + }, + "standard france": { + "name": "standard France", + "countries": [ + "FRA" + ] + }, + "'camo' scheme": { + "name": "'camo' scheme", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "Single turboprop, straight wing, attack aircraft. Reaper", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 36 + }, + "MiG-15bis": { + "name": "MiG-15bis", + "coalition": "red", + "category": "aircraft", + "label": "MiG-15 Fagot", + "era": "Early Cold War", + "shortLabel": "M15", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "FAB-50 - 50kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*FAB-50", + "name": "2*FAB-50", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100M - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*FAB-100M", + "name": "2*FAB-100M", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 300 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*300L", + "name": "2*300L", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 400 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*400L", + "name": "2*400L", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 600 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "2*600L", + "name": "2*600L", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 300 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "Fuel tank 300", + "name": "Fuel tank 300", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 400 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "Fuel tank 400", + "name": "Fuel tank 400", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + } + ], + "filename": "mig-15.png", + "enabled": true, + "liveries": { + "china_air force": { + "name": "People's Liberation Army Air Force", + "countries": [ + "CHN" + ] + }, + "china volunteer air force": { + "name": "People's Volunteer Army Air Force", + "countries": [ + "CHN" + ] + }, + "ussr_red": { + "name": "USSR Red", + "countries": [ + "SUN", + "RUS" + ] + }, + "algerian af 1962": { + "name": "Algerian AF 1962", + "countries": [ + "DZA" + ] + }, + "north_korea_air force_major_ arkady_ boitsow": { + "name": "North Korea - Major Arkady Boitsow", + "countries": [ + "RUS", + "PRK" + ] + }, + "gdr_air force": { + "name": "Air Forces of the National People's Army", + "countries": [ + "GER" + ] + }, + "default livery": { + "name": "default livery", + "countries": [ + "BRA", + "CUB", + "MYS", + "ARE", + "AUS", + "ABH", + "RUS", + "PHL", + "SPN", + "ISR", + "SUN", + "USA", + "BHR", + "MAR", + "BLR", + "HRV", + "DZA", + "OMN", + "RSO", + "SVK", + "HND", + "IRN", + "UKR", + "TUR", + "JPN", + "PRK", + "SRB", + "IDN", + "KAZ", + "BGR", + "BEL", + "INS", + "THA", + "LBY", + "AUSAF", + "VEN", + "PAK", + "JOR", + "RSA", + "FIN", + "MEX", + "KWT", + "NOR", + "IRQ", + "SYR", + "ITA", + "NZG", + "GRC", + "POL", + "NETH", + "GER", + "SUI", + "CHN", + "SAU", + "SWE", + "YEM", + "VNM", + "ROU", + "RSI", + "FRA", + "CHL", + "KOR", + "HUN", + "AUT", + "GRG", + "DEN", + "TUN", + "EGY", + "IND", + "CZE", + "ETH", + "CAN", + "SDN", + "QAT", + "UK", + "YUG" + ] + }, + "haf fictional": { + "name": "Hellenic Airforce - Fictional", + "countries": [ + "GRC" + ] + }, + "ussr_air forces": { + "name": "Air Forces of Soviet Union", + "countries": [ + "SUN", + "RUS" + ] + }, + "north_korea_air force": { + "name": "Korean People's Air Force", + "countries": [ + "PRK" + ] + }, + "polish_air force": { + "name": "Polish Air Force", + "countries": [ + "POL" + ] + }, + "ussr_air forces old": { + "name": "USSR Old", + "countries": [ + "SUN", + "RUS" + ] + }, + "czechoslovakia_air force": { + "name": "Czechoslovak Air Force", + "countries": [ + "CZE" + ] + }, + "ussr_pepelyaev": { + "name": "USSR Pepelyaev", + "countries": [ + "SUN", + "RUS", + "PRK" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew. Fagot", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 33 + }, + "MiG-19P": { + "name": "MiG-19P", + "coalition": "red", + "category": "aircraft", + "label": "MiG-19 Farmer", + "era": "Early Cold War", + "shortLabel": "M19", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 760 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "PTB-760 x 2", + "name": "PTB-760 x 2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "K-13A", + "quantity": 2 + }, + { + "name": "Fuel Tank 760 liters", + "quantity": 2 + } + ], + "enabled": true, + "code": "K-13A x 2, PTB-760 x 2", + "name": "K-13A x 2, PTB-760 x 2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "K-13A", + "quantity": 2 + } + ], + "enabled": true, + "code": "K-13A x 2", + "name": "K-13A x 2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "K-13A", + "quantity": 2 + }, + { + "name": "Fuel Tank 760 liters", + "quantity": 2 + }, + { + "name": "ORO-57K - S-5M x 8", + "quantity": 2 + } + ], + "enabled": true, + "code": "K-13A x 2, ORO-57K x 2, PTB-760 x 2", + "name": "K-13A x 2, ORO-57K x 2, PTB-760 x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 760 liters", + "quantity": 2 + }, + { + "name": "ORO-57K - S-5M x 8", + "quantity": 2 + } + ], + "enabled": true, + "code": "ORO-57K x 2, PTB-760 x 2", + "name": "ORO-57K x 2, PTB-760 x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "ORO-57K - S-5M x 8", + "quantity": 4 + } + ], + "enabled": true, + "code": "ORO-57K x 4", + "name": "ORO-57K x 4", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "ORO-57K - S-5M x 8", + "quantity": 2 + } + ], + "enabled": true, + "code": "ORO-57K x 2", + "name": "ORO-57K x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100M - 100kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "ORO-57K - S-5M x 8", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100M x 2, ORO-57K x 2", + "name": "FAB-100M x 2, ORO-57K x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "ORO-57K - S-5M x 8", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250 x 2, ORO-57K x 2", + "name": "FAB-250 x 2, ORO-57K x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100M - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100M x 2", + "name": "FAB-100M x 2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250 x 2", + "name": "FAB-250 x 2", + "roles": [ + "CAS", + "Strike" + ] + } + ], + "filename": "mig-19.png", + "enabled": true, + "liveries": { + "ussr_2": { + "name": "764th Fighter Aviation Regiment", + "countries": [ + "SUN", + "RUS" + ] + }, + "plaaf camo": { + "name": "PLAAF Snow Camo", + "countries": [ + "CHN" + ] + }, + "cuba": { + "name": " 211 Escuadron de Caza", + "countries": [ + "CUB" + ] + }, + "iap": { + "name": "234 Fighter Regiment (234 IAP)", + "countries": "All" + }, + "ddr - fictional": { + "name": "Germany DDR camouflage (Fictional)", + "countries": "All" + }, + "snow - fictional": { + "name": "Snow Camouflage Fictional", + "countries": "All" + }, + "plaaf": { + "name": "112th Air Regiment", + "countries": [ + "CHN" + ] + }, + "romania - 66th fighter division": { + "name": "91st Fighter Regiment", + "countries": [ + "ROU" + ] + }, + "poland 39 plm": { + "name": "39 PLM Squadron", + "countries": [ + "POL" + ] + }, + "poland 62 plm": { + "name": "62 PLM Squadron", + "countries": [ + "POL" + ] + }, + "default": { + "name": "default", + "countries": "All" + }, + "czechoslovakia": { + "name": "2nd Fighter-Bomber Regiment", + "countries": [ + "CZE" + ] + }, + "bulgaria": { + "name": "1st Squadron, 18th Fighter Regiment", + "countries": [ + "BGR" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew. Farmer", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 41 + }, + "MiG-21Bis": { + "name": "MiG-21Bis", + "coalition": "red", + "category": "aircraft", + "label": "MiG-21 Fishbed", + "era": "Mid Cold War", + "shortLabel": "M21", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Patrol, long range", + "name": "Patrol, long range", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "R-60 x 2", + "quantity": 2 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Patrol, medium range", + "name": "Patrol, medium range", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 490 L Central (21)", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "R-60 x 2", + "quantity": 2 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Patrol, short range", + "name": "Patrol, short range", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "Hard targets, BOMBS", + "name": "Hard targets, BOMBS", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "UB-32M - 32 S-5M", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "Unknown or mixed targets, BOMBS + ROCKETS", + "name": "Unknown or mixed targets, BOMBS + ROCKETS", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "UB-32M - 32 S-5M", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "Soft targets, CLUSTERS + ROCKETS", + "name": "Soft targets, CLUSTERS + ROCKETS", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "BL-755 CBU - 450kg, 147 Frag/Pen bomblets", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "Soft targets, CLUSTERS", + "name": "Soft targets, CLUSTERS", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "UPK-23-250 - gun pod", + "quantity": 2 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "Soft targets, scattered", + "name": "Soft targets, scattered", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Kh-66 Grom (21) - AGM, radar guided APU-68", + "quantity": 2 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Few big targets, GROM + BOMBS", + "name": "Few big targets, GROM + BOMBS", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 2 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "Very hard target, PENETRATION", + "name": "Very hard target, PENETRATION", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Aerial attack, hard targets, CLUSTERS", + "name": "Aerial attack, hard targets, CLUSTERS", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "S-24A (21) - 180 kg, cumulative unguided rocket", + "quantity": 4 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Hard targets, ROCKETS, PENETRATION", + "name": "Hard targets, ROCKETS, PENETRATION", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "S-24B (21) - 180 kg, fragmented unguided rocket", + "quantity": 4 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Soft targets, ROCKETS, BLAST-FRAGMENTS", + "name": "Soft targets, ROCKETS, BLAST-FRAGMENTS", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 490 L Central (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Long range, MIX", + "name": "Long range, MIX", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 490 L Central (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Long range, RADAR GUIDED MISSILES", + "name": "Long range, RADAR GUIDED MISSILES", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 490 L Central (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Long range, INFRA RED MISSILES", + "name": "Long range, INFRA RED MISSILES", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "Escort", + "name": "Escort", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "SPS-141-100 (21) - jamming and countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Escort, JAMMER", + "name": "Escort, JAMMER", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "SAB-100MN - 100 kg Illumination Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "Night, ILLUMINATOR", + "name": "Night, ILLUMINATOR", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "SPS-141-100 (21) - jamming and countermeasures pod", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Long range, JAMMER", + "name": "Long range, JAMMER", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "UPK-23-250 - gun pod", + "quantity": 2 + }, + { + "name": "UB-16UM - 16 S-5M", + "quantity": 2 + } + ], + "enabled": true, + "code": "Soft targets, UPK + ROCKETS", + "name": "Soft targets, UPK + ROCKETS", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + }, + { + "name": "UPK-23-250 - gun pod", + "quantity": 2 + }, + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Soft targets, UPK + CLUSTERS", + "name": "Soft targets, UPK + CLUSTERS", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "SPS-141-100 (21) - jamming and countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + } + ], + "enabled": true, + "code": "Patrol, JAMMER", + "name": "Patrol, JAMMER", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "RN-24 - 470kg, nuclear bomb, free fall", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + } + ], + "enabled": true, + "code": "NUCLEAR A", + "name": "NUCLEAR A", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RN-28 - 260 kg, nuclear bomb, free fall", + "quantity": 1 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + }, + { + "name": "Fuel Tank 490 L (21)", + "quantity": 2 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 1 + } + ], + "enabled": true, + "code": "NUCLEAR B", + "name": "NUCLEAR B", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel Tank 800 L (21)", + "quantity": 1 + }, + { + "name": "R-3R - AAM, radar guided", + "quantity": 2 + }, + { + "name": "R-3S - AAM, IR guided", + "quantity": 2 + }, + { + "name": "ASO-2 - countermeasures pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Short range", + "name": "Short range", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Smoke - white - 21", + "quantity": 1 + } + ], + "enabled": true, + "code": "AEROBATIC", + "name": "AEROBATIC", + "roles": [] + } + ], + "filename": "mig-21.png", + "enabled": true, + "liveries": { + "afghanistan (1)": { + "name": "Afghanistan (1)", + "countries": "All" + }, + "bulgaria - 1-3 iae (3)": { + "name": "Bulgaria - 1/3 IAE (3)", + "countries": "All" + }, + "germany east - jg-8": { + "name": "East Germany - JG-8", + "countries": "All" + }, + "plaaf - white": { + "name": "PLAAF - White", + "countries": "All" + }, + "croatia - 21st fs": { + "name": "Croatia - 21st Fighter Squadron (Zagreb AB)", + "countries": "All" + }, + "plaaf - sky blue": { + "name": "PLAAF - Sky Blue", + "countries": "All" + }, + "iraq - 17th sqn (2)": { + "name": "Iraq - 17th Sqn (2)", + "countries": "All" + }, + "vvs - amt-11 grey": { + "name": "VVS - AMT-11 Grey", + "countries": "All" + }, + "vvs - 234 gviap": { + "name": "VVS - 234 GvIAP", + "countries": "All" + }, + "bare metal": { + "name": "Bare Metal", + "countries": "All" + }, + "bulgaria - 1-3 iae (2)": { + "name": "Bulgaria - 1/3 IAE (2)", + "countries": "All" + }, + "plaaf - splinter": { + "name": "PLAAF - Splinter", + "countries": "All" + }, + "argentina (2)": { + "name": "Argentina (2)", + "countries": "All" + }, + "vvs - demonstrator": { + "name": "VVS Demonstrator", + "countries": "All" + }, + "vvs - 115 gviap": { + "name": "VVS - 115 GvIAP (Kokaydy AB)", + "countries": "All" + }, + "romania - lancer a": { + "name": "Romania - Lancer A", + "countries": "All" + }, + "sweden - 16th air wing": { + "name": "Sweden - 16th Air Wing", + "countries": "All" + }, + "syria (1)": { + "name": "Syria (1)", + "countries": "All" + }, + "egypt - grey 1982": { + "name": "Egypt - Grey 1982", + "countries": "All" + }, + "finland - hävllv 31": { + "name": "Finland - HavLLv 31", + "countries": "All" + }, + "huaf 47th ab - 6115 (griff sqn)": { + "name": "HunAF Griff Sqn. (47th AB) 6115", + "countries": "All" + }, + "libya - 2017": { + "name": "Lybia - 2017", + "countries": "All" + }, + "huaf 47th ab (griff sqn)": { + "name": "HunAF Griff Sqn. (47th AB)", + "countries": "All" + }, + "cuba - 1990s": { + "name": "Cuba - 1990s", + "countries": "All" + }, + "serbia - 101st lae": { + "name": "Serbia - 101st LAE", + "countries": "All" + }, + "slovakia - 1998": { + "name": "Slovakia - 1998", + "countries": "All" + }, + "iran - 51st sqn": { + "name": "Iran - 51st Sqn (Umidiyeh AB)", + "countries": "All" + }, + "vvs - 116 cbp": { + "name": "VVS - 116 CBP", + "countries": "All" + }, + "georgia (2)": { + "name": "Georgia (2)", + "countries": "All" + }, + "huaf metal": { + "name": "HuAF Metal", + "countries": "All" + }, + "bulgaria - 1-3 iae": { + "name": "Bulgaria - 1/3 IAE", + "countries": "All" + }, + "india - 101st sqn (1)": { + "name": "India - 101st Sqn Falcons", + "countries": "All" + }, + "ukraine (2)": { + "name": "Ukraine 02", + "countries": "All" + }, + "vpaf - 927th fighter regiment metal": { + "name": "VPAF - 927th Fighter Regiment Metal", + "countries": "All" + }, + "iran - standard": { + "name": "Iran - Standard", + "countries": "All" + }, + "romania - lancer c": { + "name": "Romania - Lancer C", + "countries": "All" + }, + "angola - c41": { + "name": "Angola - C41", + "countries": "All" + }, + "poland - 1 dlmw": { + "name": "Poland - 1 DLMW", + "countries": "All" + }, + "yugoslavia - gray": { + "name": "Yugoslavia - Grey", + "countries": "All" + }, + "angola - c314": { + "name": "Angola - C314", + "countries": "All" + }, + "argentina (1)": { + "name": "Argentina (1)", + "countries": "All" + }, + "romania - gray": { + "name": "Romania - Gray", + "countries": "All" + }, + "dprk - 2016 - 42": { + "name": "DPRK - 2016 Nr.42", + "countries": "All" + }, + "libya - early": { + "name": "Lybia - Early", + "countries": "All" + }, + "poland - metal": { + "name": "Poland - Lacquer Metal", + "countries": "All" + }, + "syria (2)": { + "name": "Syria (2)", + "countries": "All" + }, + "india - 15th sqn": { + "name": "India - 15 Sqn War Games", + "countries": "All" + }, + "cuba - um 5010 is": { + "name": "Cuba - UM 5010 IS", + "countries": "All" + }, + "afghanistan (2)": { + "name": "Afghanistan (2)", + "countries": "All" + }, + "iraq - 9th sqn": { + "name": "Iraq - 9th Sqn", + "countries": "All" + }, + "vpaf - 927th lam son - 6122": { + "name": "VPAF - 927th Lam Son", + "countries": "All" + }, + "yugoslavia - camo": { + "name": "Yugoslavia - Camo", + "countries": "All" + }, + "egypt - tan 1982": { + "name": "Egypt - Tan 1982", + "countries": "All" + }, + "croatia - 1st fs 1992": { + "name": "Croatia - 1st FS 1992", + "countries": "All" + }, + "southeria": { + "name": "Southeria", + "countries": "All" + }, + "ukraine (1)": { + "name": "Ukraine 01", + "countries": "All" + }, + "georgia (1)": { + "name": "Georgia (1)", + "countries": "All" + }, + "northeria - 32nd fs": { + "name": "Northeria - 32nd FG", + "countries": "All" + }, + "cuba - metal": { + "name": "Cuba - Metal", + "countries": "All" + }, + "huaf 47th ab - early": { + "name": "HunAF Griff Sqn. (47th AB) - Early ", + "countries": "All" + }, + "jasdf": { + "name": "JASDF", + "countries": "All" + }, + "raf - 111th sqn": { + "name": "RAF - 111th Sqn", + "countries": "All" + }, + "sweden - m90": { + "name": "Sweden - M90", + "countries": "All" + }, + "algeria": { + "name": "Algeria FD-43", + "countries": "All" + }, + "india - 101st sqn (2)": { + "name": "India - 101st Sqn Falcons (2)", + "countries": "All" + }, + "draken international": { + "name": "Draken International", + "countries": "All" + }, + "raf - 11th sqn": { + "name": "RAF - 11th Sqn", + "countries": "All" + }, + "vpaf - 921st sao do - 5040": { + "name": "VPAF - 921st Sao Do", + "countries": "All" + }, + "vvs - metal": { + "name": "VVS Metal", + "countries": "All" + }, + "iraq - 17th sqn (1)": { + "name": "Iraq - 17th Sqn (1)", + "countries": "All" + }, + "vvs - 185th gviap": { + "name": "VVS 185th GvIAP", + "countries": "All" + }, + "poland - 10 elt": { + "name": "Poland - 10 ELT", + "countries": "All" + }, + "dprk - 2014 - 34": { + "name": "DPRK - 2014 Nr.34", + "countries": "All" + }, + "huaf grey": { + "name": "HuAF Grey", + "countries": "All" + }, + "huaf 31st ab (turul sqn)": { + "name": "HunAF 1904 Capeti (51th AB)", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew. Fishbed", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 51 + }, + "MiG-23MLD": { + "name": "MiG-23MLD", + "coalition": "red", + "category": "aircraft", + "label": "MiG-23 Flogger", + "era": "Mid Cold War", + "shortLabel": "23", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60M*4", + "name": "R-60M*4", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*2,R-60M*2,Fuel-800", + "name": "B-8*2,R-60M*2,Fuel-800", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "UB-32*2,R-60M*2,Fuel-800", + "name": "UB-32*2,R-60M*2,Fuel-800", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-24R (AA-7 Apex SA) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-24R*2,R-60M*4,Fuel-800", + "name": "R-24R*2,R-60M*4,Fuel-800", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-24T (AA-7 Apex IR) - Infra Red", + "quantity": 1 + }, + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + }, + { + "name": "R-24R (AA-7 Apex SA) - Semi-Act Rdr", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-24R,R-24T,R-60M*4,Fuel-800", + "name": "R-24R,R-24T,R-60M*4,Fuel-800", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-60M*4,Fuel-800", + "name": "R-60M*4,Fuel-800", + "roles": [ + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*2,R-60M*2,Fuel-800", + "name": "FAB-500*2,R-60M*2,Fuel-800", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-24R (AA-7 Apex SA) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-24R*2,R-60M*4", + "name": "R-24R*2,R-60M*4", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*2,R-60M*2,Fuel-800", + "name": "FAB-250*2,R-60M*2,Fuel-800", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250*2,R-60M*2,Fuel-800", + "name": "RBK-250*2,R-60M*2,Fuel-800", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500*2,R-60M*2,Fuel-800", + "name": "RBK-500*2,R-60M*2,Fuel-800", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-24T (AA-7 Apex IR) - Infra Red", + "quantity": 1 + }, + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-24R (AA-7 Apex SA) - Semi-Act Rdr", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-24R,R-24T,R-60M*4", + "name": "R-24R,R-24T,R-60M*4", + "roles": [ + "CAP" + ] + } + ], + "filename": "mig-23.png", + "enabled": true, + "liveries": { + "af standard-2": { + "name": "af standard-2", + "countries": [ + "SUN", + "RUS" + ] + }, + "af standard-3 (worn-out)": { + "name": "af standard-3 (worn-out)", + "countries": [ + "SUN", + "RUS" + ] + }, + "algerian air force": { + "name": "Algerian Air Force", + "countries": [ + "DZA" + ] + }, + "af standard-1": { + "name": "af standard-1", + "countries": [ + "SUN", + "RUS" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swing wing, 1 crew. Flogger", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 54 + }, + "MiG-25PD": { + "name": "MiG-25PD", + "coalition": "red", + "category": "aircraft", + "label": "MiG-25PD Foxbat", + "era": "Mid Cold War", + "shortLabel": "25P", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-40TD (AA-6 Acrid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-40RD (AA-6 Acrid) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-40R*2,R-40T*2", + "name": "R-40R*2,R-40T*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-40RD (AA-6 Acrid) - Semi-Act Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-40R*4", + "name": "R-40R*4", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-40RD (AA-6 Acrid) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-40R*2,R-60M*2", + "name": "R-40R*2,R-60M*2", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + } + ], + "filename": "mig-25.png", + "enabled": true, + "liveries": { + "algerian air force": { + "name": "Algeria Air Force standard", + "countries": [ + "DZA" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Foxbat", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 64 + }, + "MiG-25RBT": { + "name": "MiG-25RBT", + "coalition": "red", + "category": "aircraft", + "label": "MiG-25RBT Foxbat", + "era": "Mid Cold War", + "shortLabel": "25R", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-500x2_60x2", + "name": "FAB-500x2_60x2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60M*2", + "name": "R-60M*2", + "roles": [ + "Reconnaissance" + ] + } + ], + "filename": "mig-25.png", + "enabled": true, + "liveries": { + "algerian air force": { + "name": "Algeria Air Force standard", + "countries": [ + "DZA" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Foxbat", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 64 + }, + "MiG-27K": { + "name": "MiG-27K", + "coalition": "red", + "category": "aircraft", + "label": "MiG-27K Flogger-D", + "era": "Mid Cold War", + "shortLabel": "M27", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "MBD3-U6-68 with 2 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*6,R-60M*2,Fuel", + "name": "FAB-250*6,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BetAB-500ShP - 500kg Concrete Piercing HD w booster Bomb", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "BetAB-500ShP*2,FAB-250*2,R-60*2", + "name": "BetAB-500ShP*2,FAB-250*2,R-60*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Kh-25MR (AS-10 Karen) - 300kg, ASM, 10km, RC Guided", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-25MR*2,R-60M*2,Fuel", + "name": "Kh-25MR*2,R-60M*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-60M*2,Fuel", + "name": "Kh-29L*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "B-8*4", + "name": "B-8*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "BetAB-500*2,FAB-500*2,R-60*2", + "name": "BetAB-500*2,FAB-500*2,R-60*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Kh-25MPU (Updated AS-12 Kegler) - 320kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-25MPU*2,R-60M*2,Fuel", + "name": "Kh-25MPU*2,R-60M*2,Fuel", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29T*2,R-60M*2,Fuel", + "name": "Kh-29T*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*2,FAB-250*2,R-60M*2,Fuel", + "name": "FAB-500*2,FAB-250*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-25ML*2,R-60M*2,Fuel", + "name": "Kh-25ML*2,R-60M*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "KAB-500LG - 500kg Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-500*2,R-60M*2,Fuel", + "name": "KAB-500*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*2,RBK-250*2,R-60M*2", + "name": "RBK-500AO*2,RBK-250*2,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "UB-32*4", + "name": "UB-32*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-60*2,Fuel", + "name": "Kh-29L*2,R-60*2,Fuel", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "mig-23.png", + "enabled": true, + "liveries": { + "algerian air force": { + "name": "Algerian Air Force", + "countries": [ + "DZA" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swing wing, 1 crew. Flogger", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 56 + }, + "MiG-29A": { + "name": "MiG-29A", + "coalition": "red", + "category": "aircraft", + "label": "MiG-29A Fulcrum", + "era": "Late Cold War", + "shortLabel": "M29", + "loadouts": [ + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*4,R-73*2,Fuel", + "name": "B-8*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500*4,R-73*2,Fuel", + "name": "BetAB-500*4,R-73*2,Fuel", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*4,R-73*2,Fuel", + "name": "FAB-250*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*4,R-73*2,Fuel", + "name": "FAB-500*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank 1150L MiG-29", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel-1150*2,Fuel-1500", + "name": "Fuel-1150*2,Fuel-1500", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60M*4,R-27R*2", + "name": "R-60M*4,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-60M*4,R-27R*2,Fuel-1500", + "name": "R-60M*4,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-60M*6", + "name": "R-60M*6", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 6 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-60M*6,Fuel-1500", + "name": "R-60M*6,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*2,R-60M*2,R-27R*2", + "name": "R-73*2,R-60M*2,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-60M*2,R-27R*2,Fuel-1500", + "name": "R-73*2,R-60M*2,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2", + "name": "R-73*4,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2,Fuel-1500", + "name": "R-73*4,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*6", + "name": "R-73*6", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 6 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*6,Fuel-1500", + "name": "R-73*6,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250*4,R-73*2,Fuel", + "name": "RBK-250*4,R-73*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500AO*4,R-73*2,Fuel", + "name": "RBK-500AO*4,R-73*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-24*2,FAB-500*2,R-73*2,Fuel", + "name": "S-24*2,FAB-500*2,R-73*2,Fuel", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-24*4,R-73*2,Fuel", + "name": "S-24*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + } + ], + "filename": "mig-29.png", + "enabled": true, + "liveries": { + "air force ukraine standard": { + "name": "Air Force (Standard)", + "countries": [ + "UKR" + ] + }, + "air force standard": { + "name": "Air Force (Standard)", + "countries": [ + "SUN", + "RUS" + ] + }, + "strizhi": { + "name": "Strizhi 1992", + "countries": [ + "RUS" + ] + }, + "domna 120th ar": { + "name": "Domna - 120th Aviation Regiment", + "countries": [ + "RUS" + ] + }, + "mary-1 agressors": { + "name": "Soviet Air Forces, a/b 1521 (Mary-1)", + "countries": [ + "RUS" + ] + }, + "polish 41st sqn standard1": { + "name": "41st Sqn Standard 1", + "countries": [ + "POL" + ] + }, + "iriaf sand-blue": { + "name": "IRIAF sand-blue", + "countries": [ + "IRN" + ] + }, + "strizhi (w)": { + "name": "Strizhi 1992(W)", + "countries": [ + "RUS" + ] + }, + "polish 41st sqn standard2": { + "name": "41st Sqn Standard 2", + "countries": [ + "POL" + ] + }, + "vasylkiv 40th brta": { + "name": "Vasylkiv - 40th Brigade of Tactical Aviation", + "countries": [ + "UKR" + ] + }, + "kazakhstan air defense forces": { + "name": "KazAADF 600th Airbase 2015", + "countries": [ + "KAZ" + ] + }, + "kazakhstan kazaadf 2008": { + "name": "KazAADF 600th Airbase 2008", + "countries": [ + "KAZ" + ] + }, + "iriaf blue-grey": { + "name": "IRIAF blue-grey", + "countries": [ + "IRN" + ] + }, + "syaaf": { + "name": "Syrian Arab Air Force", + "countries": [ + "SYR" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Flanker", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 56 + }, + "MiG-29S": { + "name": "MiG-29S", + "coalition": "red", + "category": "aircraft", + "label": "MiG-29S Fulcrum", + "era": "Late Cold War", + "shortLabel": "M29", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*2,R-60M*2,R-27R*2", + "name": "R-73*2,R-60M*2,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2,Fuel-1500", + "name": "R-73*4,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 6 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*6,Fuel-1500", + "name": "R-73*6,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 6 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-60M*6,Fuel-1500", + "name": "R-60M*6,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-24*4,R-73*2,Fuel", + "name": "S-24*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*4,R-73*2,Fuel", + "name": "FAB-500*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500*4,R-73*2,Fuel", + "name": "BetAB-500*4,R-73*2,Fuel", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500AO*4,R-73*2,Fuel", + "name": "RBK-500AO*4,R-73*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-60M*2,R-27R*2,Fuel-1500", + "name": "R-73*2,R-60M*2,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1150L MiG-29", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-77*2,R-73*2,Fuel-1500,Fuel-1150*2", + "name": "R-77*2,R-73*2,Fuel-1500,Fuel-1150*2", + "roles": [ + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*4,R-73*2,Fuel", + "name": "B-8*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250*4,R-73*2,Fuel", + "name": "RBK-250*4,R-73*2,Fuel", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*6", + "name": "R-73*6", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Fuel tank 1150L MiG-29", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel-1150*2,Fuel-1500", + "name": "Fuel-1150*2,Fuel-1500", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-60M*6", + "name": "R-60M*6", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-60M*4,R-27R*2", + "name": "R-60M*4,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2", + "name": "R-73*4,R-27R*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-77*4,R-73*2", + "name": "R-77*4,R-73*2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*4,R-73*2,Fuel", + "name": "FAB-250*4,R-73*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-60M*4,R-27R*2,Fuel-1500", + "name": "R-60M*4,R-27R*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-77*4,R-73*2,Fuel-1500", + "name": "R-77*4,R-73*2,Fuel-1500", + "roles": [ + "CAP", + "CAP", + "Escort" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank 1400L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-24*2,FAB-500*2,R-73*2,Fuel", + "name": "S-24*2,FAB-500*2,R-73*2,Fuel", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "mig-29.png", + "enabled": true, + "liveries": { + "algerian af fc-16": { + "name": "Algerian AF FC-16", + "countries": [ + "DZA" + ] + }, + "air force ukraine standard": { + "name": "Air Force (Standard)", + "countries": [ + "UKR" + ] + }, + "air force standard": { + "name": "Air Force (Standard)", + "countries": [ + "RUS" + ] + }, + "kazaadf new faded (fictional)": { + "name": "KazAADF new faded (fictional)", + "countries": [ + "KAZ" + ] + }, + "strizhi": { + "name": "Strizhi 2003", + "countries": [ + "RUS" + ] + }, + "115 gviap_termez": { + "name": "Termez AFB, 115th Guards Aviation Regiment", + "countries": [ + "RUS" + ] + }, + "1521th air base_mary-1": { + "name": "Mary-1 AFB, 1521st Air Force Base", + "countries": [ + "RUS" + ] + }, + "kazaadf old (fictional)": { + "name": "KazAADF old (fictional)", + "countries": [ + "KAZ" + ] + }, + "swifts": { + "name": "Swifts (Aerobatic team)", + "countries": [ + "RUS" + ] + }, + "773 iap_damgarten": { + "name": "Damgarten AFB, 773rd Aviation Regiment", + "countries": [ + "RUS" + ] + }, + "426th air group_erebuni": { + "name": "Erebuni AFB, 426th Air Group", + "countries": [ + "RUS" + ] + }, + "31 gviap_zernograd": { + "name": "Zernograd AFB, 31st Guards Aviation Regiment", + "countries": [ + "RUS" + ] + }, + "28 gviap_andreapol": { + "name": "Andreapol AFB, 28th Guards Aviation Regiment", + "countries": [ + "RUS" + ] + }, + "belarusian air force": { + "name": "Belarusian Air Force 61 FAB Baranavichy (2017)", + "countries": [ + "BLR" + ] + }, + "kazaadf new (fictional)": { + "name": "KazAADF new (fictional)", + "countries": [ + "KAZ" + ] + }, + "falcons of russia": { + "name": "Lipetsk, aerobatic group Falcons of Russia", + "countries": [ + "RUS" + ] + }, + "kazaadf new (fictional digital)": { + "name": "KazAADF new digital (fictional digital)", + "countries": [ + "KAZ" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Flanker", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 56 + }, + "MiG-31": { + "name": "MiG-31", + "coalition": "red", + "category": "aircraft", + "label": "MiG-31 Foxhound", + "era": "Late Cold War", + "shortLabel": "M31", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-40TD (AA-6 Acrid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-33 (AA-9 Amos) - Semi-Act Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-40T*2,R-33*4", + "name": "R-40T*2,R-33*4", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-40RD (AA-6 Acrid) - Semi-Act Rdr", + "quantity": 1 + }, + { + "name": "R-33 (AA-9 Amos) - Semi-Act Rdr", + "quantity": 4 + }, + { + "name": "R-40TD (AA-6 Acrid) - Infra Red", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-40T,R-33*4,R-40R", + "name": "R-40T,R-33*4,R-40R", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-40RD (AA-6 Acrid) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "R-33 (AA-9 Amos) - Semi-Act Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-40R*2,R-33*4", + "name": "R-40R*2,R-33*4", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "APU-60-2M with 2 x R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-33 (AA-9 Amos) - Semi-Act Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-60M*4,R-33*4", + "name": "R-60M*4,R-33*4", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + } + ], + "filename": "mig-23.png", + "enabled": true, + "liveries": { + "174 gviap_boris safonov": { + "name": "174 GvIAP Boris Safonov", + "countries": [ + "RUS" + ] + }, + "903_white": { + "name": "Demo 903 White", + "countries": [ + "RUS" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 2 crew. Foxhound", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 74 + }, + "Mirage-F1EE": { + "name": "Mirage-F1EE", + "coalition": "blue", + "category": "aircraft", + "label": "Mirage-F1EE", + "era": "Mid Cold War", + "shortLabel": "MF1", + "loadouts": [ + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 2 + }, + { + "name": "CLB 4 - 4 x SAMP-400 - 400 kg GP Chute Retarded Bomb HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9J, 2*Fuel Tank, 4*SAMP 400 HD", + "name": "2*AIM-9J, 2*Fuel Tank, 4*SAMP 400 HD", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 2 + }, + { + "name": "CLB 4 - 4 x SAMP-400 - 400 kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9J, 2*Fuel Tank, 4*SAMP 400 LD", + "name": "2*AIM-9J, 2*Fuel Tank, 4*SAMP 400 LD", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster", + "quantity": 4 + }, + { + "name": "CLB 4 - 4 x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9JULI, 8*BLU107 Durandal", + "name": "2*AIM-9JULI, 8*BLU107 Durandal", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "SAMP-250 - 250 kg GP Chute Retarded Bomb HD", + "quantity": 4 + }, + { + "name": "CLB 4 - 4 x SAMP-250 - 250 kg GP Chute Retarded Bomb HD", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9JULI, 8*SAMP 250 HD", + "name": "2*AIM-9JULI, 8*SAMP 250 HD", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "SAMP-400 - 400 kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "CLB 4 - 4 x SAMP-400 - 400 kg GP Bomb LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM-9JULI, 8*SAMP 400 LD", + "name": "2*AIM-9JULI, 8*SAMP 400 LD", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "MATRA F4 - 18 x UnGd Rkts, 68 mm SNEB Type 251 F1B HE", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-J, 2*MATRA F4 SNEB251 (HE), 2*R530IR, 1*Fuel Tank", + "name": "2*AIM9-J, 2*MATRA F4 SNEB251 (HE), 2*R530IR, 1*Fuel Tank", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "R530F EM", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-JULI, 1*R530EM", + "name": "2*AIM9-JULI, 1*R530EM", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-JULI, 1*R530IR, 2*Fuel Tank", + "name": "2*AIM9-JULI, 1*R530IR, 2*Fuel Tank", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "R530F EM", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-JULI, 2*R530EM, 1*Fuel Tank", + "name": "2*AIM9-JULI, 2*R530EM, 1*Fuel Tank", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-JULI, 2*R530IR, 1*Fuel Tank", + "name": "2*AIM9-JULI, 2*R530IR, 1*Fuel Tank", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "S530F", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*AIM9-JULI, 2*S530F, 1*Fuel Tank", + "name": "2*AIM9-JULI, 2*S530F, 1*Fuel Tank", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 1*R530IR", + "name": "2*R550 Magic I, 1*R530IR", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 1*R530IR, 2*Fuel Tank", + "name": "2*R550 Magic I, 1*R530IR, 2*Fuel Tank", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "R530F IR", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 2*R530IR, 1*Fuel Tank", + "name": "2*R550 Magic I, 2*R530IR, 1*Fuel Tank", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "S530F", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 2*S530F, 1*Fuel Tank", + "name": "2*R550 Magic I, 2*S530F, 1*Fuel Tank", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "S530F", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + }, + { + "name": "BARAX - ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 2*S530F, 1*Fuel Tank, 1*BARAX ECM Pod", + "name": "2*R550 Magic I, 2*S530F, 1*Fuel Tank, 1*BARAX ECM Pod", + "roles": [ + "CAP", + "CAP", + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "SAMP-250 - 250 kg GP Chute Retarded Bomb HD", + "quantity": 2 + }, + { + "name": "MATRA F1 - 36 x UnGd Rkts, 68 mm SNEB Type 256 F1B HE/Frag", + "quantity": 2 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 2*SAMP 250 HD, 2 MATRA F1 SNEB256 (AP), 1*Fuel Tank", + "name": "2*R550 Magic I, 2*SAMP 250 HD, 2 MATRA F1 SNEB256 (AP), 1*Fuel Tank", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "MATRA F1 - 36 x UnGd Rkts, 68 mm SNEB Type 253 F1B HEAT", + "quantity": 4 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 4*MATRA F1 SNEB253 (Shaped Charge), 1*Fuel Tank", + "name": "2*R550 Magic I, 4*MATRA F1 SNEB253 (Shaped Charge), 1*Fuel Tank", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "MATRA F1 - 36 x UnGd Rkts, 68 mm SNEB Type 256 F1B HE/Frag", + "quantity": 4 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 4*MATRA F1 SNEB256 (AP), 1*Fuel Tank", + "name": "2*R550 Magic I, 4*MATRA F1 SNEB256 (AP), 1*Fuel Tank", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "MATRA F4 - 18 x UnGd Rkts, 68 mm SNEB Type 253 F1B HEAT", + "quantity": 4 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 4*MATRA F4 SNEB253 (Shaped Charge), 1*Fuel Tank", + "name": "2*R550 Magic I, 4*MATRA F4 SNEB253 (Shaped Charge), 1*Fuel Tank", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R550 Magic 1 IR AAM", + "quantity": 2 + }, + { + "name": "MATRA F4 - 18 x UnGd Rkts, 68 mm SNEB Type 256 F1B HE/Frag", + "quantity": 4 + }, + { + "name": "RP35 Pylon Fuel Tank (1137 l usable)", + "quantity": 1 + } + ], + "enabled": true, + "code": "2*R550 Magic I, 4*MATRA F4 SNEB256 (AP), 1*Fuel Tank", + "name": "2*R550 Magic I, 4*MATRA F4 SNEB256 (AP), 1*Fuel Tank", + "roles": [ + "CAS" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + } + ], + "filename": "f-1.png", + "enabled": true, + "liveries": { + "ec 330 lorraine": { + "name": "EC 330 Lorraine", + "countries": [ + "FRA" + ] + }, + "ec 5 330 cote d'argent (fictional ct)": { + "name": "EC 5/330 Cote d'Argent (FICTIONAL CT)", + "countries": [ + "FRA" + ] + }, + "er 2 33 savoie 100 ans de reco (fictional cr)": { + "name": "ER 233 Savoie 100 ans de reco (FICTIONAL CR)", + "countries": [ + "FRA" + ] + }, + "iriaf 3-6210 _ 2017 blue (eq variant)": { + "name": "IRIAF 3-6210 _ 2017 Blue (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "iriaf 3-6209 _ 2010s blue_gray (eq variant)": { + "name": "IRIAF 3-6209 _ 2010s Blue_Gray (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "er 233 savoie ba 118 mont de marsan (fictional cr)": { + "name": "ER 2/33 Savoie BA 118 Mont de Marsan (FICTIONAL CR)", + "countries": [ + "FRA" + ] + }, + "ala 14 blue skin (ee) albacete": { + "name": "ALA 14 Blue Skin (EE) Albacete", + "countries": [ + "SPN" + ] + }, + "usa company skin (m-ee)": { + "name": "USA Company Skin EE", + "countries": [ + "USA", + "AUSAF" + ] + }, + "ala 14 nato skin 1 (ee)": { + "name": "ALA 14 NATO Skin 1 (EE)", + "countries": [ + "SPN" + ] + }, + "iriaf 3-6210 _ 2013 gray (eq variant)": { + "name": "IRIAF 3-6210 _ 2013 Gray (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "usa company skin 2 (m-ee)": { + "name": "USA Company Skin 2 EE", + "countries": [ + "USA", + "AUSAF" + ] + }, + "iriaf 3-6214 _ 2021 blue (eq variant)": { + "name": "IRIAF 3-6214 _ 2021 Blue (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "aerges nato grey": { + "name": "AERGES NATO GREY", + "countries": [ + "CUB", + "AUS", + "PRT", + "SUN", + "USA", + "BLR", + "HRV", + "LBN", + "SVK", + "TUR", + "ARG", + "BEL", + "FIN", + "SAU", + "RSI", + "CHL", + "AUT", + "EGY", + "ECU", + "CAN", + "QAT", + "YUG", + "ISR", + "PER", + "BHR", + "NGA", + "IDN", + "KAZ", + "INS", + "AUSAF", + "PAK", + "SVN", + "ROU", + "DEN", + "TUN", + "IND", + "CZE", + "MYS", + "GHA", + "OMN", + "RSO", + "IRN", + "UKR", + "JPN", + "THA", + "JOR", + "RSA", + "MEX", + "NOR", + "ITA", + "NETH", + "SUI", + "VNM", + "KOR", + "GRG", + "SDN", + "UK", + "BRA", + "ARE", + "ABH", + "BOL", + "RUS", + "PHL", + "SPN", + "MAR", + "DZA", + "GDR", + "HND", + "PRK", + "SRB", + "BGR", + "LBY", + "VEN", + "IRQ", + "SYR", + "NZG", + "GRC", + "POL", + "SWE", + "GER", + "CHN", + "YEM", + "FRA", + "HUN", + "ETH", + "KWT" + ] + }, + "ec 3 33 lorraine ba 112 reims - champagne ardennes": { + "name": "EC 333 Lorraine BA 112 Reims - Champagne Ardennes", + "countries": [ + "FRA" + ] + }, + "ec 1 12 cambresis": { + "name": "EC 112 BA 103 Cambrai-Épinoy", + "countries": [ + "FRA" + ] + }, + "ala 46 blue skin (ee) gando": { + "name": "ALA 46 Blue Skin (EE) Gando", + "countries": [ + "SPN" + ] + }, + "aerges blue": { + "name": "AERGES BLUE", + "countries": [ + "CUB", + "AUS", + "PRT", + "SUN", + "USA", + "BLR", + "HRV", + "LBN", + "SVK", + "TUR", + "ARG", + "BEL", + "FIN", + "SAU", + "RSI", + "CHL", + "AUT", + "EGY", + "ECU", + "CAN", + "QAT", + "YUG", + "ISR", + "PER", + "BHR", + "NGA", + "IDN", + "KAZ", + "INS", + "AUSAF", + "PAK", + "SVN", + "ROU", + "DEN", + "TUN", + "IND", + "CZE", + "MYS", + "GHA", + "OMN", + "RSO", + "IRN", + "UKR", + "JPN", + "THA", + "JOR", + "RSA", + "MEX", + "NOR", + "ITA", + "NETH", + "SUI", + "VNM", + "KOR", + "GRG", + "SDN", + "UK", + "BRA", + "ARE", + "ABH", + "BOL", + "RUS", + "PHL", + "SPN", + "MAR", + "DZA", + "GDR", + "HND", + "PRK", + "SRB", + "BGR", + "LBY", + "VEN", + "IRQ", + "SYR", + "NZG", + "GRC", + "POL", + "SWE", + "GER", + "CHN", + "YEM", + "FRA", + "HUN", + "ETH", + "KWT" + ] + }, + "ec 212 picardie": { + "name": "EC 212 Picardie", + "countries": [ + "FRA" + ] + }, + "iriaf 3-6212 _ col. naghdibake (eq variant)": { + "name": "IRIAF 3-6212 _ Col. Naghdibake (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "iriaf 3-6211 _ 2010s blue_gray (eq variant)": { + "name": "IRIAF 3-6211 _ 2010s Blue_Gray (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "ec 1 5 vendee ba orange-cariat": { + "name": "EC 1/5 Vendee BA 115 Orange-Cariat", + "countries": [ + "FRA" + ] + }, + "er 233 savoie ba 118 mont de marsan dessert camu (fictional cr)": { + "name": "ER 233 Savoie BA 118 Mont de Marsan Dessert Camu (FICTIONAL CR)", + "countries": [ + "FRA" + ] + }, + "iriaf 3-6215 _ 2021 blue (eq variant)": { + "name": "IRIAF 3-6215 _ 2021 Blue (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "iriaf 3-6210 _ 2021 blue (eq variant)": { + "name": "IRIAF 3-6210 _ 2021 Blue (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "ala 46 sq 462 blue skin (ee) gando": { + "name": "ALA 46 SQ 462 Blue Skin (EE) Gando", + "countries": [ + "SPN" + ] + }, + "ec 2 30 normandie niemen (fictional ct)": { + "name": "EC 2/30 Normandie Niemen (FICTIONAL CT)", + "countries": [ + "FRA" + ] + }, + "iriaf 3-6215 _ 1990-2010s desert (eq variant)": { + "name": "IRIAF 3-6215 _ 1990-2010s Desert (EQ Variant)", + "countries": [ + "IRN", + "INS" + ] + }, + "aerges camo": { + "name": "AERGES CAMO", + "countries": [ + "CUB", + "AUS", + "PRT", + "SUN", + "USA", + "BLR", + "HRV", + "LBN", + "SVK", + "TUR", + "ARG", + "BEL", + "FIN", + "SAU", + "RSI", + "CHL", + "AUT", + "EGY", + "ECU", + "CAN", + "QAT", + "YUG", + "ISR", + "PER", + "BHR", + "NGA", + "IDN", + "KAZ", + "INS", + "AUSAF", + "PAK", + "SVN", + "ROU", + "DEN", + "TUN", + "IND", + "CZE", + "MYS", + "GHA", + "OMN", + "RSO", + "IRN", + "UKR", + "JPN", + "THA", + "JOR", + "RSA", + "MEX", + "NOR", + "ITA", + "NETH", + "SUI", + "VNM", + "KOR", + "GRG", + "SDN", + "UK", + "BRA", + "ARE", + "ABH", + "BOL", + "RUS", + "PHL", + "SPN", + "MAR", + "DZA", + "GDR", + "HND", + "PRK", + "SRB", + "BGR", + "LBY", + "VEN", + "IRQ", + "SYR", + "NZG", + "GRC", + "POL", + "SWE", + "GER", + "CHN", + "YEM", + "FRA", + "HUN", + "ETH", + "KWT" + ] + }, + "usa company grey (m-ee)": { + "name": "USA Company Grey EE", + "countries": [ + "USA", + "AUSAF" + ] + } + }, + "type": "Aircraft", + "description": "Single Jet engine, swept wing, 1 crew.", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 49 + }, + "MosquitoFBMkVI": { + "name": "MosquitoFBMkVI", + "coalition": "blue", + "category": "aircraft", + "label": "Mosquito FB MkVI", + "era": "WW2", + "shortLabel": "Mos", + "loadouts": [ + { + "items": [ + { + "name": "100 gal. Drop Tank", + "quantity": 2 + }, + { + "name": "500 lb MC Short tail", + "quantity": 2 + } + ], + "enabled": true, + "code": "100 gal Drop tank*2, 500 lb MC Short tail*2", + "name": "100 gal Drop tank*2, 500 lb MC Short tail*2", + "roles": [ + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x RP-3 60lb F No1 Mk.I", + "quantity": 2 + }, + { + "name": "100 gal. Drop Tank", + "quantity": 2 + }, + { + "name": "250 lb MC Mk.II", + "quantity": 2 + } + ], + "enabled": true, + "code": "100 gal. Drop tank*2, 250 lb MC Mk.II, RP-3 60lb F No1 Mk.I*4", + "name": "100 gal. Drop tank*2, 250 lb MC Mk.II, RP-3 60lb F No1 Mk.I*4", + "roles": [ + "CAP", + "Antiship Strike", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "500 lb S.A.P.", + "quantity": 2 + }, + { + "name": "250 lb S.A.P.", + "quantity": 2 + } + ], + "enabled": true, + "code": "250 lb S.A.P*2; 500 lb S.A.P.*2", + "name": "250 lb S.A.P*2; 500 lb S.A.P.*2", + "roles": [ + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": "500 lb GP Mk.V", + "quantity": 2 + }, + { + "name": "500 lb MC Short tail", + "quantity": 2 + } + ], + "enabled": true, + "code": "500 lb GP Mk.V*2, 500 lb GP Short tail*2", + "name": "500 lb GP Mk.V*2, 500 lb GP Short tail*2", + "roles": [ + "CAP", + "Strike", + "CAS", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "500 lb GP Short tail", + "quantity": 4 + } + ], + "enabled": true, + "code": "500 lb GP Short tail*4", + "name": "500 lb GP Short tail*4", + "roles": [ + "CAP", + "Strike", + "CAS", + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "250 lb S.A.P.", + "quantity": 2 + }, + { + "name": "4 x RP-3 60lb SAP No2 Mk.I", + "quantity": 2 + } + ], + "enabled": true, + "code": "RP-3 60lb SAP No2 Mk.I*8, 250 lb A.A.P.*2", + "name": "RP-3 60lb SAP No2 Mk.I*8, 250 lb A.A.P.*2", + "roles": [ + "CAP", + "Antiship Strike", + "CAS", + "Strike" + ] + } + ], + "filename": "mosquito.png", + "enabled": true, + "liveries": { + "25th bombardment group p": { + "name": "USAAF 25th Bombardment Group \"P\" (Invasion Stripes)", + "countries": [ + "USA" + ] + }, + "l-3 pz474 1945": { + "name": "L-3 PZ474 1945", + "countries": [] + }, + "raf": { + "name": "RAF 1944", + "countries": "All" + }, + "605 sqn up-j wag's war wagon": { + "name": "605 Sqn UP-J \"Wag's War Wagon\"", + "countries": "All" + }, + "605 sqn up-o": { + "name": "605 Sqn UP-O", + "countries": "All" + }, + "605 sqn": { + "name": "605 Sqn", + "countries": "All" + }, + "iaf - 1956 - 110th squadron": { + "name": "IAF - 1956 - 110th Squadron", + "countries": "All" + }, + "ussr air force": { + "name": "USSR Air Force", + "countries": [] + }, + "no. 235 squadron raf 1944": { + "name": "No. 235 Squadron RAF 1944", + "countries": [] + }, + "no. 613 squadron raf june 1944": { + "name": "No. 613 Squadron RAF, June 1944", + "countries": [ + "UK" + ] + }, + "armée de l'air blue": { + "name": "Armée de L'air Blue Camo", + "countries": [ + "FRA" + ] + }, + "raf, ml897d, no.1409 met flight, wyton, late 1943": { + "name": "RAF, ML897/D, No.1409 Met Flight, Wyton, late 1943", + "countries": [ + "UK" + ] + }, + "no. 27 squadron raf popeye camo letters on": { + "name": "No. 27 Squadron RAF Popeye Camo Letters on", + "countries": [] + }, + "25th bombardment group f": { + "name": "USAAF 25th Bombardment Group \"F\"", + "countries": [ + "USA" + ] + }, + "305sqn july": { + "name": "305Sqn July 1944", + "countries": [] + }, + "305sqn june": { + "name": "305Sqn June 1944", + "countries": [] + }, + "25th bombardment group z": { + "name": "USAAF 25th Bombardment Group \"Z\" (Invasion Stripes)", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "2 propeller, straight wing, 2 crew. Mosquito.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 41 + }, + "P-47D-40": { + "name": "P-47D-40", + "coalition": "blue", + "category": "aircraft", + "label": "P-47D Thunderbolt", + "era": "WW2", + "shortLabel": "P47", + "loadouts": [ + { + "items": [ + { + "name": "AN-M57 - 250lb GP Bomb LD", + "quantity": 3 + } + ], + "enabled": true, + "code": "AN-M57*3", + "name": "AN-M57*3", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "AN-M64 - 500lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "110 US gal. Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "AN-M64*2, Fuel110", + "name": "AN-M64*2, Fuel110", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AN-M65 - 1000lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "AN-M65*2", + "name": "AN-M65*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "150 US gal. Fuel Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "Fuel150*2", + "name": "Fuel150*2", + "roles": [ + "Escort", + "CAP" + ] + }, + { + "items": [ + { + "name": "5 x HVAR, UnGd Rkt", + "quantity": 2 + }, + { + "name": "110 US gal. Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "HVAR*10, Fuel110", + "name": "HVAR*10, Fuel110", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "3 x 4.5 inch M8 UnGd Rocket", + "quantity": 2 + }, + { + "name": "AN-M57 - 250lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "110 US gal. Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "M8*6, AN-M57*2, Fuel110", + "name": "M8*6, AN-M57*2, Fuel110", + "roles": [ + "Strike", + "CAS" + ] + } + ], + "filename": "p-47.png", + "enabled": true, + "liveries": { + "79thfg 86thfs the trojan warhorse": { + "name": "79thFG 86thFS The Trojan Warhorse", + "countries": [ + "USA" + ] + }, + "61st_fs_d_day": { + "name": "61st FS, D-day", + "countries": [ + "USA" + ] + }, + "lt_col_gabreski_d_day": { + "name": "Lt.Col. Gabby Gabreski, 61st FS, D-day", + "countries": [ + "USA" + ] + }, + "lt_col_benjamin_mayo": { + "name": "Lt.Col. Benjamin Mayo", + "countries": [ + "USA" + ] + }, + "eagle dynamics commemorative": { + "name": "Eagle Dynamics Commemorative", + "countries": [ + "USA" + ] + }, + "tony 5th emergency rescue squadron": { + "name": "TONY 5th Emergency Rescue Squadron", + "countries": [ + "USA" + ] + }, + "usaf standard": { + "name": "USAF standard", + "countries": [ + "USA" + ] + }, + "maj_howard_park_1945": { + "name": "Maj. Howard Park, 513th FS, France 1945", + "countries": [ + "USA" + ] + }, + "61st_fs_8th_af_hvz": { + "name": "61st FS 8th Air Force HV-Z (Capt. Witold Lanowski)", + "countries": [ + "USA", + "POL" + ] + }, + "53rd_fs_9th_air_force": { + "name": "53rd Fighter Squadron", + "countries": [ + "USA" + ] + }, + "1st brazilian ftr sq-jambock a1-menezes": { + "name": "1st Brazilian Ftr Sq-Jambock A1-Menezes", + "countries": [] + }, + "61st_fs_1944": { + "name": "61st FS, July 1944", + "countries": [ + "USA" + ] + }, + "lt_col_gabreski_1944": { + "name": "Lt.Col. Gabby Gabreski, 61st FS, July 1944", + "countries": [ + "USA" + ] + }, + "lend-lease": { + "name": "Lend-Lease", + "countries": [ + "SUN", + "RUS" + ] + }, + "usaaf 509th fs, 405th fg, eto 1944, chief ski-u-mah d28": { + "name": "509th FS 405th FG \"Chief Ski-U-Mah\" for D-30 (Early) ", + "countries": "All" + }, + "ussr-blue-scheme": { + "name": "USSR - blue", + "countries": [ + "SUN", + "RUS" + ] + }, + "raf thunderbolt": { + "name": "RAF Thunderbolt", + "countries": [] + }, + "usaaf 509th fs, 405th fg, eto 1944, chief ski-u-mah d40": { + "name": "509th FS 405th FG \"Chief Ski-U-Mah\"", + "countries": "All" + }, + "warchief": { + "name": "WarChief", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "Single propellor, straight wing, 1 crew. Thunderbolt", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 36 + }, + "P-51D-30-NA": { + "name": "P-51D-30-NA", + "coalition": "blue", + "category": "aircraft", + "label": "P-51D Mustang", + "era": "WW2", + "shortLabel": "P51", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "75 US gal. Fuel Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "Fuel75*2", + "name": "Fuel75*2", + "roles": [ + "CAP", + "CAP", + "FAC-A" + ] + }, + { + "items": [ + { + "name": "HVAR, UnGd Rkt", + "quantity": 10 + } + ], + "enabled": true, + "code": "HVAR*10", + "name": "HVAR*10", + "roles": [ + "CAS", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "HVAR, UnGd Rkt", + "quantity": 6 + } + ], + "enabled": true, + "code": "HVAR*6", + "name": "HVAR*6", + "roles": [ + "CAS", + "Strike", + "Antiship Strike", + "FAC-A" + ] + }, + { + "items": [ + { + "name": "HVAR, UnGd Rkt", + "quantity": 6 + }, + { + "name": "75 US gal. Fuel Tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "HVAR*6,Fuel75*2", + "name": "HVAR*6,Fuel75*2", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "HVAR, UnGd Rkt", + "quantity": 6 + }, + { + "name": "AN-M64 - 500lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "HVAR*6,M64*2", + "name": "HVAR*6,M64*2", + "roles": [ + "CAS", + "Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AN-M64 - 500lb GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "M64*2", + "name": "M64*2", + "roles": [ + "Strike", + "Antiship Strike", + "CAS", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "HVAR Smoke Generator", + "quantity": 2 + } + ], + "enabled": true, + "code": "Smokes", + "name": "Smokes", + "roles": [] + } + ], + "filename": "p-51.png", + "enabled": true, + "liveries": { + "79thfg 86thfs the trojan warhorse": { + "name": "79thFG 86thFS The Trojan Warhorse", + "countries": [ + "USA" + ] + }, + "61st_fs_d_day": { + "name": "61st FS, D-day", + "countries": [ + "USA" + ] + }, + "lt_col_gabreski_d_day": { + "name": "Lt.Col. Gabby Gabreski, 61st FS, D-day", + "countries": [ + "USA" + ] + }, + "lt_col_benjamin_mayo": { + "name": "Lt.Col. Benjamin Mayo", + "countries": [ + "USA" + ] + }, + "eagle dynamics commemorative": { + "name": "Eagle Dynamics Commemorative", + "countries": [ + "USA" + ] + }, + "tony 5th emergency rescue squadron": { + "name": "TONY 5th Emergency Rescue Squadron", + "countries": [ + "USA" + ] + }, + "usaf standard": { + "name": "USAF standard", + "countries": [ + "USA" + ] + }, + "maj_howard_park_1945": { + "name": "Maj. Howard Park, 513th FS, France 1945", + "countries": [ + "USA" + ] + }, + "61st_fs_8th_af_hvz": { + "name": "61st FS 8th Air Force HV-Z (Capt. Witold Lanowski)", + "countries": [ + "USA", + "POL" + ] + }, + "53rd_fs_9th_air_force": { + "name": "53rd Fighter Squadron", + "countries": [ + "USA" + ] + }, + "1st brazilian ftr sq-jambock a1-menezes": { + "name": "1st Brazilian Ftr Sq-Jambock A1-Menezes", + "countries": [] + }, + "61st_fs_1944": { + "name": "61st FS, July 1944", + "countries": [ + "USA" + ] + }, + "lt_col_gabreski_1944": { + "name": "Lt.Col. Gabby Gabreski, 61st FS, July 1944", + "countries": [ + "USA" + ] + }, + "lend-lease": { + "name": "Lend-Lease", + "countries": [ + "SUN", + "RUS" + ] + }, + "usaaf 509th fs, 405th fg, eto 1944, chief ski-u-mah d28": { + "name": "509th FS 405th FG \"Chief Ski-U-Mah\" for D-30 (Early) ", + "countries": "All" + }, + "ussr-blue-scheme": { + "name": "USSR - blue", + "countries": [ + "SUN", + "RUS" + ] + }, + "raf thunderbolt": { + "name": "RAF Thunderbolt", + "countries": [] + }, + "usaaf 509th fs, 405th fg, eto 1944, chief ski-u-mah d40": { + "name": "509th FS 405th FG \"Chief Ski-U-Mah\"", + "countries": "All" + }, + "warchief": { + "name": "WarChief", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "Single propellor, straight wing, 1 crew. Mustang", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 32 + }, + "S-3B Tanker": { + "name": "S-3B Tanker", + "coalition": "blue", + "category": "aircraft", + "label": "S-3B Tanker", + "era": "Early Cold War", + "shortLabel": "S3B", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Tanker" + ] + } + ], + "filename": "s-3.png", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "NAVY Standard", + "countries": [ + "USA" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, straight wing, 4 crew. Viking", + "abilities": "Tanker, Drogue AAR, Carrier", + "canTargetPoint": false, + "canRearm": false, + "length": 53 + }, + "Su-17M4": { + "name": "Su-17M4", + "coalition": "red", + "category": "aircraft", + "label": "Su-17M4 Fitter", + "era": "Mid Cold War", + "shortLabel": "S17", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 2 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "UB-32*4,R-60M*2,FAB-250*4", + "name": "UB-32*4,R-60M*2,FAB-250*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MBD2-67U with 4 x FAB-100 - 100kg GP Bombs LD", + "quantity": 6 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100*24,R-60M*2", + "name": "FAB-100*24,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "UB-32*4,R-60M*2,Fuel*2", + "name": "UB-32*4,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 2 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "B-8*4,R-60M*2,FAB-250*4", + "name": "B-8*4,R-60M*2,FAB-250*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-60M*2,Fuel*2", + "name": "Kh-29L*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "B-8*4,R-60M*2,Fuel*2", + "name": "B-8*4,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29T*2,R-60M*2,Fuel*2", + "name": "Kh-29T*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 6 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "BetAB-500*6,R-60M*2", + "name": "BetAB-500*6,R-60M*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "Kh-25MR (AS-10 Karen) - 300kg, ASM, 10km, RC Guided", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-25MR*4,R-60M*2,Fuel*2", + "name": "Kh-25MR*4,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-24*4,R-60M*2,Fuel*2", + "name": "S-24*4,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25MPU (Updated AS-12 Kegler) - 320kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh25MPU*2_Kh25ML*2_,R60M*2_Fuel*2", + "name": "Kh25MPU*2_Kh25ML*2_,R60M*2_Fuel*2", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-58U (AS-11 Kilter) - 640kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh58*2_Kh25MPU*2_R60M*2_Fuel*2", + "name": "Kh58*2_Kh25MPU*2_R60M*2_Fuel*2", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "MBD3-U6-68 with 2 x FAB-250 - 250kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 4 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*16,R-60M*2", + "name": "FAB-250*16,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-25ML*4,R-60M*2,Fuel*2", + "name": "Kh-25ML*4,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*4,SPPU-22*2,R-60M*2", + "name": "RBK-500AO*4,SPPU-22*2,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 2 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-24*4,R-60M*2,FAB-250*4", + "name": "S-24*4,R-60M*2,FAB-250*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank 1150L", + "quantity": 4 + } + ], + "enabled": true, + "code": "Fuel*4", + "name": "Fuel*4", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-500*6,R-60M*2", + "name": "FAB-500*6,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-25ML*2,Kh-29L*2,R-60*2", + "name": "Kh-25ML*2,Kh-29L*2,R-60*2", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "su-17.png", + "enabled": true, + "liveries": { + "af standard (worn-out)": { + "name": "af standard (worn-out)", + "countries": [ + "UKR" + ] + }, + "shap limanskoye ab": { + "name": "shap limanskoye ab", + "countries": [ + "UKR" + ] + }, + "af standard (rus)": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + }, + "af standard (worn-out) (rus)": { + "name": "af standard (worn-out)", + "countries": [ + "RUS" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "UKR" + ] + } + }, + "type": "Aircraft", + "description": "Single jet engine, swept wing, 1 crew. Fitter", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 61 + }, + "Su-24M": { + "name": "Su-24M", + "coalition": "red", + "category": "aircraft", + "label": "Su-24M Fencer", + "era": "Mid Cold War", + "shortLabel": "S24", + "loadouts": [ + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + } + ], + "enabled": true, + "code": "B-8*2,Fuel*2", + "name": "B-8*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*2,Fuel*3", + "name": "B-8*2,Fuel*3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "B-8*6", + "name": "B-8*6", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "BetAB-500*4,R-60M*2", + "name": "BetAB-500*4,R-60M*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "FAB-100*24", + "name": "FAB-100*24", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-1500 M-54 - 1500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-1500*2,R-60M*2", + "name": "FAB-1500*2,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 8 + } + ], + "enabled": true, + "code": "FAB-250*8", + "name": "FAB-250*8", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "FAB-500*4,R-60M*2", + "name": "FAB-500*4,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel*3", + "name": "Fuel*3", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "KAB-1500L - 1500kg Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-1500*2,R-60M*2,Fuel", + "name": "KAB-1500*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "KAB-500LG - 500kg Laser Guided Bomb", + "quantity": 4 + } + ], + "enabled": true, + "code": "KAB-500*4,R-60M*2", + "name": "KAB-500*4,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + } + ], + "enabled": true, + "code": "Kh-25ML*4", + "name": "Kh-25ML*4", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Kh-25MR (AS-10 Karen) - 300kg, ASM, 10km, RC Guided", + "quantity": 4 + } + ], + "enabled": true, + "code": "Kh-25MR*4", + "name": "Kh-25MR*4", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-60M*2", + "name": "Kh-29L*2,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29T*2,R-60M*2", + "name": "Kh-29T*2,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31A (AS-17 Krypton) - 610kg, AShM, IN & Act Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-31A*2,R-60M*2", + "name": "Kh-31A*2,R-60M*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31A (AS-17 Krypton) - 610kg, AShM, IN & Act Rdr", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31A*2,R-60M*2,Fuel", + "name": "Kh-31A*2,R-60M*2,Fuel", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-59M (AS-18 Kazoo) - 930kg, ASM, IN", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-59M*2,R-60M*2,Fuel", + "name": "Kh-59M*2,R-60M*2,Fuel", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Kh-25MPU (Updated AS-12 Kegler) - 320kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh25MPU*2_Kh25ML*2_L-081", + "name": "Kh25MPU*2_Kh25ML*2_L-081", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh31P*2_Kh25ML*2_L-081", + "name": "Kh31P*2_Kh25ML*2_L-081", + "roles": [ + "SEAD", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Kh-58U (AS-11 Kilter) - 640kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh58*2_Kh25ML*2_L-081", + "name": "Kh58*2_Kh25ML*2_L-081", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 8 + } + ], + "enabled": true, + "code": "RBK-250*8", + "name": "RBK-250*8", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "APU-60-1M with R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "RBK-500AO*4,R-60M*2", + "name": "RBK-500AO*4,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-24*2,Fuel*3", + "name": "S-24*2,Fuel*3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-24*4", + "name": "S-24*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-25*2,Fuel*3", + "name": "S-25*2,Fuel*3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-25*4", + "name": "S-25*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "UB-13*2,Fuel*3", + "name": "UB-13*2,Fuel*3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "UB-13*4", + "name": "UB-13*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 4 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "UB-13*4,FAB-500*2", + "name": "UB-13*4,FAB-500*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank 3000L", + "quantity": 2 + }, + { + "name": "Fuel tank 2000L", + "quantity": 1 + } + ], + "enabled": true, + "code": "UB-32*2,Fuel*3", + "name": "UB-32*2,Fuel*3", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "UB-32*4", + "name": "UB-32*4", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "UB-32*4,FAB-250*4", + "name": "UB-32*4,FAB-250*4", + "roles": [ + "Strike" + ] + } + ], + "filename": "su-24.png", + "enabled": true, + "liveries": { + "syrian air force": { + "name": "Syrian Air Force", + "countries": [ + "SYR" + ] + }, + "iran air force": { + "name": "Iran Air Force", + "countries": [ + "IRN" + ] + }, + "algerian af kx-12": { + "name": "Algerian AF KX-12", + "countries": [ + "DZA" + ] + }, + "ukrainian air force standard": { + "name": "Ukrainian Air Force", + "countries": [ + "UKR" + ] + }, + "kazakhstan air force": { + "name": "600th Airbase Kazakhstan", + "countries": [ + "KAZ" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swing wing, 2 crew. Fencer", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 75 + }, + "Su-25": { + "name": "Su-25", + "coalition": "red", + "category": "aircraft", + "label": "Su-25T Frogfoot", + "era": "Late Cold War", + "shortLabel": "S25", + "loadouts": [ + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 2 + } + ], + "enabled": true, + "code": "2-25L*2, KH-25ML*2, RBK-500*2, B-8MI*2, R-60M*2", + "name": "2-25L*2, KH-25ML*2, RBK-500*2, B-8MI*2, R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "BetAB-500*6,R-60M*2,Fuel*2", + "name": "BetAB-500*6,R-60M*2,Fuel*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500ShP - 500kg Concrete Piercing HD w booster Bomb", + "quantity": 8 + } + ], + "enabled": true, + "code": "BetAB-500ShP*8,R-60M*2", + "name": "BetAB-500ShP*8,R-60M*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD2-67U with 4 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100*16,R-60M*2,Fuel*2", + "name": "FAB-100*16,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD2-67U with 4 x FAB-100 - 100kg GP Bombs LD", + "quantity": 8 + } + ], + "enabled": true, + "code": "FAB-100*32,R-60M*2", + "name": "FAB-100*32,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "SAB-100MN - 100 kg Illumination Bomb", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*2,SPPU-22*2,SAB-100*4,R-60M*2", + "name": "FAB-250*2,SPPU-22*2,SAB-100*4,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,S-25*2,R-60M*2,Fuel*2", + "name": "FAB-250*4,S-25*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,UB-13*2,R-60M*2,Fuel*2", + "name": "FAB-250*4,UB-13*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,UB-13*2,R-60M*2,SPPU-22*2", + "name": "FAB-250*4,UB-13*2,R-60M*2,SPPU-22*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*6,R-60M*2,Fuel*2", + "name": "FAB-250*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-500*6,R-60M*2,Fuel*2", + "name": "FAB-500*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-25*4,Kh-29T*2,R-60*2", + "name": "Kh-25*4,Kh-29T*2,R-60*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-25ML*4,R-60M*2,Fuel*2", + "name": "Kh-25ML*4,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,Kh-25ML*2,R-60M*2,Fuel*2", + "name": "Kh-29L*2,Kh-25ML*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,Kh-25ML*4,R-60M*2", + "name": "Kh-29L*2,Kh-25ML*4,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,Kh-25ML*4,S-25L*2,R-60M*2", + "name": "Kh-29L*2,Kh-25ML*4,S-25L*2,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-60M*2,Fuel*2", + "name": "Kh-29L*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-250*2,S-8KOM*80,R-60M*2,Fuel*2", + "name": "RBK-250*2,S-8KOM*80,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "RBK-250*4,S-8KOM*80,R-60M*2", + "name": "RBK-250*4,S-8KOM*80,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 8 + } + ], + "enabled": true, + "code": "RBK-250*8,R-60M*2", + "name": "RBK-250*8,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*4,S-8KOM*40,R-60M*2,Fuel*2", + "name": "RBK-500AO*4,S-8KOM*40,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*6,R-60M*2,Fuel*2", + "name": "RBK-500AO*6,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-25*6,R-60M*2,Fuel*2", + "name": "S-25*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 6 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-25*6,SPPU-22*2,R-60M*2", + "name": "S-25*6,SPPU-22*2,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-25L*6,R-60*2,Fuel*2", + "name": "S-25L*6,R-60*2,Fuel*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 6 + } + ], + "enabled": true, + "code": "S-25L*6,UB-13*2,R-60M*2", + "name": "S-25L*6,UB-13*2,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-8KOM*120,R-60M*2,Fuel*2", + "name": "S-8KOM*120,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 8 + } + ], + "enabled": true, + "code": "S-8TsM*160,R-60*2", + "name": "S-8TsM*160,R-60*2", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "SAB-100MN - 100 kg Illumination Bomb", + "quantity": 8 + } + ], + "enabled": true, + "code": "SAB-100*8,R-60*2", + "name": "SAB-100*8,R-60*2", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "UB-13*6,R-60M*2,Fuel*2", + "name": "UB-13*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + } + ], + "filename": "su-25.png", + "enabled": false, + "liveries": { + "broken camo scheme #2 (native). 452th shap": { + "name": "broken camo scheme #2 (native). 452th shap.", + "countries": [ + "UKR" + ] + }, + "broken camo scheme #1 (native). 299th oshap": { + "name": "broken camo scheme #1 (native). 299th oshap.", + "countries": [ + "UKR" + ] + }, + "field camo scheme #1 (native)": { + "name": "field camo scheme #1 (native)", + "countries": [ + "SUN", + "RUS" + ] + }, + "field camo scheme #1 (native)01": { + "name": "field camo scheme #1 (native)", + "countries": [ + "GRG" + ] + }, + "haf camo": { + "name": "Hellenic Airforce - Camo (Fictional)", + "countries": [ + "GRC" + ] + }, + "`scorpion` demo scheme (native)": { + "name": "`scorpion` demo scheme (native)", + "countries": [ + "GRG" + ] + }, + "abkhazian air force": { + "name": "Abkhazian Air Force", + "countries": [ + "ABH" + ] + }, + "field camo scheme #3 (worn-out). 960th shap": { + "name": "field camo scheme #3 (worn-out). 960th shap.", + "countries": [ + "RUS" + ] + }, + "petal camo scheme #1 (native). 299th brigade": { + "name": "petal camo scheme #1 (native). 299th brigade.", + "countries": [ + "UKR" + ] + }, + "petal camo scheme #2 (native). 299th brigade": { + "name": "petal camo scheme #2 (native). 299th brigade.", + "countries": [ + "UKR" + ] + }, + "algerian af desert fictional": { + "name": "Algerian AF Desert Fictional", + "countries": [ + "DZA" + ] + }, + "forest camo scheme #1 (native)": { + "name": "forest camo scheme #1 (native)", + "countries": [ + "RUS" + ] + }, + "irgc 54": { + "name": "IRGC 54", + "countries": [ + "IRN" + ] + }, + "field camo scheme #2 (native). 960th shap": { + "name": "field camo scheme #2 (native). 960th shap.", + "countries": [ + "RUS" + ] + }, + "haf aegean ghost": { + "name": "Hellenic Airforce - Aegean Ghost (Fictional)", + "countries": [ + "GRC" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Frogfoot", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 50 + }, + "Su-25T": { + "name": "Su-25T", + "coalition": "red", + "category": "aircraft", + "label": "Su-25T Frogfoot", + "era": "Late Cold War", + "shortLabel": "S25", + "loadouts": [ + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "APU-8 - 8 x 9M127-1 Vikhr-M ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + }, + { + "name": "Mercury LLTV Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "APU-8 Vikhr-M*2,Kh-25ML,R-73*2,SPPU-22*2,Mercury LLTV Pod,MPS-410", + "name": "APU-8 Vikhr-M*2,Kh-25ML,R-73*2,SPPU-22*2,Mercury LLTV Pod,MPS-410", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 2 + }, + { + "name": "APU-8 - 8 x 9M127-1 Vikhr-M ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + }, + { + "name": "Mercury LLTV Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "APU-8 Vikhr-M*2,S-25L*2,R-73*2,SPPU-22*2,Mercury LLTV Pod,MPS-410", + "name": "APU-8 Vikhr-M*2,S-25L*2,R-73*2,SPPU-22*2,Mercury LLTV Pod,MPS-410", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "BetAB-500*6,R-60M*2,Fuel*2", + "name": "BetAB-500*6,R-60M*2,Fuel*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500ShP - 500kg Concrete Piercing HD w booster Bomb", + "quantity": 8 + } + ], + "enabled": true, + "code": "BetAB-500ShP*8,R-60M*2", + "name": "BetAB-500ShP*8,R-60M*2", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD2-67U with 4 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-100*16,R-60M*2,Fuel*2", + "name": "FAB-100*16,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "MBD2-67U with 4 x FAB-100 - 100kg GP Bombs LD", + "quantity": 8 + } + ], + "enabled": true, + "code": "FAB-100*32,R-60M*2", + "name": "FAB-100*32,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,S-25*2,R-60M*2,Fuel*2", + "name": "FAB-250*4,S-25*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "SAB-100MN - 100 kg Illumination Bomb", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,SPPU-22*2,SAB-100*2,R-60M*2", + "name": "FAB-250*4,SPPU-22*2,SAB-100*2,R-60M*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,UB-13*2,R-60M*2,Fuel*2", + "name": "FAB-250*4,UB-13*2,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*4,UB-13*2,R-60M*2,SPPU-22*2", + "name": "FAB-250*4,UB-13*2,R-60M*2,SPPU-22*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-250*6,R-60M*2,Fuel*2", + "name": "FAB-250*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "FAB-500*6,R-60M*2,Fuel*2", + "name": "FAB-500*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank 800L Wing", + "quantity": 4 + } + ], + "enabled": true, + "code": "Fuel*4", + "name": "Fuel*4", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "KAB-500Kr - 500kg TV Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "KAB-500Kr*2,Kh-25ML*2,R-73*2,MPS-410,Fuel*2", + "name": "KAB-500Kr*2,Kh-25ML*2,R-73*2,MPS-410,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29L*2,Kh-25ML*4,R-73*2,ECM", + "name": "Kh-29L*2,Kh-25ML*4,R-73*2,ECM", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Mercury LLTV Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*2,Kh-25ML*4,R-73*2,Mercury LLTV Pod,MPS-410", + "name": "Kh-29L*2,Kh-25ML*4,R-73*2,Mercury LLTV Pod,MPS-410", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Mercury LLTV Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*2,R-73*2,Fuel*2,Mercury LLTV Pod,MPS-410", + "name": "Kh-29L*2,R-73*2,Fuel*2,Mercury LLTV Pod,MPS-410", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "APU-8 - 8 x 9M127-1 Vikhr-M ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "KH-29T*2, VIKHR*2, ECM", + "name": "KH-29T*2, VIKHR*2, ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29T*2,Kh-25ML*4,R-73*2,MPS-410", + "name": "Kh-29T*2,Kh-25ML*4,R-73*2,MPS-410", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-29T*2,R-73*2,Fuel*2,MPS-410", + "name": "Kh-29T*2,R-73*2,Fuel*2,MPS-410", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25MPU (Updated AS-12 Kegler) - 320kg, ARM, IN & Pas Rdr", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh25MPU*4_R73*2_Fuel*2_L-081_MPS-410", + "name": "Kh25MPU*4_R73*2_Fuel*2_L-081_MPS-410", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "Kh-58U (AS-11 Kilter) - 640kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh58*2_Kh25ML*4_R73*2_L-081_MPS-410", + "name": "Kh58*2_Kh25ML*4_R73*2_L-081_MPS-410", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "MPS-410", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "Kh-25MPU (Updated AS-12 Kegler) - 320kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "Kh-58U (AS-11 Kilter) - 640kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "L-081 Fantasmagoria ELINT pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh58*2_Kh25MPU*2_Kh25ML*2_R73*2_L-081_MPS-410", + "name": "Kh58*2_Kh25MPU*2_Kh25ML*2_R73*2_L-081_MPS-410", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 8 + } + ], + "enabled": true, + "code": "KMGU-2 (AO-2.5RT)*8,R-60M*2", + "name": "KMGU-2 (AO-2.5RT)*8,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 8 + } + ], + "enabled": true, + "code": "KMGU-2 (PTAB-2.5KO)*8,R-60M*2", + "name": "KMGU-2 (PTAB-2.5KO)*8,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 2 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-250*2,UB-32*4,R-60M*2,Fuel*2", + "name": "RBK-250*2,UB-32*4,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 4 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "RBK-250*4,UB-32*4,R-60M*2", + "name": "RBK-250*4,UB-32*4,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 8 + } + ], + "enabled": true, + "code": "RBK-250*8,R-60M*2", + "name": "RBK-250*8,R-60M*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "UB-32A pod - 32 x S-5KO, 57mm UnGd Rkts, HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*4,UB-32*2,R-60M*2,Fuel*2", + "name": "RBK-500AO*4,UB-32*2,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "RBK-500AO*6,R-60M*2,Fuel*2", + "name": "RBK-500AO*6,R-60M*2,Fuel*2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "SPPU-22-1 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-25*2,SPPU-22*4,R-60M*2,R-73*2", + "name": "S-25*2,SPPU-22*4,R-60M*2,R-73*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-25*6,R-60M*2,Fuel*2", + "name": "S-25*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "S-25L - 320Kg, 340mm Laser Guided Rkt", + "quantity": 6 + } + ], + "enabled": true, + "code": "S-25L*6,UB-13*2,R-60M*2", + "name": "S-25L*6,UB-13*2,R-60M*2", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "S-8KOM*120,R-60M*2,Fuel*2", + "name": "S-8KOM*120,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-60M (AA-8 Aphid) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 6 + }, + { + "name": "Fuel tank 800L Wing", + "quantity": 2 + } + ], + "enabled": true, + "code": "UB-13*6,R-60M*2,Fuel*2", + "name": "UB-13*6,R-60M*2,Fuel*2", + "roles": [ + "Strike" + ] + } + ], + "filename": "su-25.png", + "enabled": true, + "liveries": { + "af standard 2": { + "name": "af standard 2", + "countries": [ + "SUN", + "RUS" + ] + }, + "algerian af grey ku-02": { + "name": "Algerian AF Grey KU-02", + "countries": [ + "DZA" + ] + }, + "su-25t test scheme": { + "name": "su-25t test scheme", + "countries": [ + "RUS" + ] + }, + "haf - fictional": { + "name": "Hellenic Airforce (Fictional)", + "countries": [ + "GRC" + ] + }, + "algerian af trainer ku-04": { + "name": "Algerian AF Trainer KU-04", + "countries": [ + "DZA" + ] + }, + "algerian af grey ku-01": { + "name": "Algerian AF Grey KU-01", + "countries": [ + "DZA" + ] + }, + "af standard 101": { + "name": "af standard 1", + "countries": [ + "GRG" + ] + }, + "algerian af desert ku-03": { + "name": "Algerian AF Desert KU-03", + "countries": [ + "DZA" + ] + }, + "af standard 1": { + "name": "af standard 1", + "countries": [ + "SUN", + "RUS" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "GRG" + ] + } + }, + "type": "Attack", + "description": "2 jet engine, swept wing, 1 crew. Frogfoot", + "abilities": "Fox 2 and gun, Dumb bombs, rockets, SEAD and ATGMs, Subsonic", + "canTargetPoint": true, + "length": 50 + }, + "Su-27": { + "name": "Su-27", + "coalition": "red", + "category": "aircraft", + "label": "Su-27 Flanker", + "era": "Late Cold War", + "shortLabel": "S27", + "loadouts": [ + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x S-25-OFM - 340mm UnGdrocket, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": " CAS S-25 Rockets", + "name": " CAS S-25 Rockets", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500ShP - 500kg Concrete Piercing HD w booster Bomb", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500ShP*6,R-73*2,ECM", + "name": "BetAB-500ShP*6,R-73*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-13L pods - 10 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS S-13 Rockets", + "name": "CAS S-13 Rockets", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x S-25-OFM - 340mm UnGdrocket, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-25 Rockets + FAB-500 Bombs", + "name": "CAS S-25 Rockets + FAB-500 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets", + "name": "CAS S-8KOM Rockets", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + FAB-100 Bombs", + "name": "CAS S-8KOM Rockets + FAB-100 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 5 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-250 - 250kg GP Bombs LD", + "quantity": 1 + }, + { + "name": "MBD3-U6-68 with 3 x FAB-250 - 250kg GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + FAB-250 Bombs", + "name": "CAS S-8KOM Rockets + FAB-250 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + FAB-500 Bombs", + "name": "CAS S-8KOM Rockets + FAB-500 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 3 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + KMGU PTAB", + "name": "CAS S-8KOM Rockets + KMGU PTAB", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + RBK-250 PTAB2.5", + "name": "CAS S-8KOM Rockets + RBK-250 PTAB2.5", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500 - 268 x PTAB-1M, 500kg CBU Light HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + RBK-500 PTAB1", + "name": "CAS S-8KOM Rockets + RBK-500 PTAB1", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM Rockets + RBK-500 PTAB10", + "name": "CAS S-8KOM Rockets + RBK-500 PTAB10", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS S-8OFP Rockets", + "name": "CAS S-8OFP Rockets", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8OFP Rockets + FAB-100 Bombs", + "name": "CAS S-8OFP Rockets + FAB-100 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8OFP Rockets + FAB-500 Bombs", + "name": "CAS S-8OFP Rockets + FAB-500 Bombs", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "ECM", + "name": "ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*6,R-73*2,ECM", + "name": "FAB-500*6,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 5 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KMGU-2 (AO-2.5RT)*5,R-73*2,ECM", + "name": "KMGU-2 (AO-2.5RT)*5,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 5 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KMGU-2 (PTAB-2.5KO)*5,R-73*2,ECM", + "name": "KMGU-2 (PTAB-2.5KO)*5,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27ER*4,R-27ET*2,ECM", + "name": "R-73*2,R-27ER*4,R-27ET*2,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27ER*6,ECM", + "name": "R-73*2,R-27ER*6,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*4,ECM", + "name": "R-73*4,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-73*4,R-27ER*4,R-27ET*2", + "name": "R-73*4,R-27ER*4,R-27ET*2", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*4,R-27ER*6", + "name": "R-73*4,R-27ER*6", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*6", + "name": "R-73*6", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-13*10,RBK-500AO*2,FAB-500*2,R-73*2,ECM", + "name": "S-13*10,RBK-500AO*2,FAB-500*2,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-25*2,FAB-500*4,R-73*4", + "name": "S-25*2,FAB-500*4,R-73*4", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "2 x S-25-OFM - 340mm UnGdrocket, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-25*4, FAB-500*4, R-73*2, ECM", + "name": "S-25*4, FAB-500*4, R-73*2, ECM", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "su-27.png", + "enabled": true, + "liveries": { + "kubinka afb (russian knights old)": { + "name": "Kubinka AFB (Russian Knights Old)", + "countries": [ + "RUS" + ] + }, + "mirgorod afb (831th brigade)": { + "name": "Mirgorod AFB (831th brigade)", + "countries": [ + "UKR" + ] + }, + "lypetsk afb (falcons of russia)": { + "name": "Lypetsk AFB (Falcons of Russia)", + "countries": [ + "RUS" + ] + }, + "hotilovo afb": { + "name": "Hotilovo AFB", + "countries": [ + "RUS" + ] + }, + "plaaf k2s new parade": { + "name": "PLAAF K2S new parade", + "countries": [ + "CHN" + ] + }, + "plaaf standard": { + "name": "PLAAF Standard", + "countries": [ + "CHN" + ] + }, + "algerian af grey 04": { + "name": "Algerian AF GREY 04", + "countries": [ + "DZA" + ] + }, + "air force standard early": { + "name": "Air Force Standard Early", + "countries": [ + "SUN", + "RUS" + ] + }, + "air force ukraine standard": { + "name": "Air Force Ukraine Standard", + "countries": [ + "UKR" + ] + }, + "planaf hh8s": { + "name": "PLANAF HH8S", + "countries": [ + "CHN" + ] + }, + "ozerne afb (9th brigade)": { + "name": "Ozerne AFB (9th brigade)", + "countries": [ + "UKR" + ] + }, + "air force ukraine standard early": { + "name": "Air Force Ukraine Standard Early", + "countries": [ + "UKR" + ] + }, + "algerian af blue 02": { + "name": "Algerian AF Blue 02", + "countries": [ + "DZA" + ] + }, + "plaaf k1s old": { + "name": "PLAAF K1S old", + "countries": [ + "CHN" + ] + }, + "m gromov fri": { + "name": "M Gromov FRI", + "countries": [ + "RUS" + ] + }, + "plaaf k33s": { + "name": "PLAAF K33S", + "countries": [ + "CHN" + ] + }, + "air force standard": { + "name": "Air Force Standard", + "countries": [ + "SUN", + "RUS" + ] + }, + "plaaf k2s old": { + "name": "PLAAF K2S old", + "countries": [ + "CHN" + ] + }, + "chkalovsk afb (689 gviap)": { + "name": "Chkalovsk AFB (689 GvIAP)", + "countries": [ + "RUS" + ] + }, + "kazakhstan air defense forces": { + "name": "Kazakhstan Air Defense Forces", + "countries": [ + "KAZ" + ] + }, + "haf aegean ghost": { + "name": "Hellenic Airforce - Aegean Ghost (Fictional)", + "countries": [ + "GRC" + ] + }, + "besovets afb": { + "name": "Besovets AFB", + "countries": [ + "RUS" + ] + }, + "kilpyavr afb (maresyev)": { + "name": "Kilpyavr AFB (Maresyev)", + "countries": [ + "RUS" + ] + }, + "mirgorod afb (digital camo)": { + "name": "Mirgorod AFB (Digital camo)", + "countries": [ + "UKR" + ] + }, + "plaaf k2s new": { + "name": "PLAAF K2S new", + "countries": [ + "CHN" + ] + }, + "air force standard old": { + "name": "Air Force Standard old", + "countries": [ + "SUN", + "RUS" + ] + }, + "lodeynoye pole afb (177 iap)": { + "name": "Lodeynoye pole AFB (177 IAP)", + "countries": [ + "RUS" + ] + }, + "kubinka afb (russian knights)": { + "name": "Kubinka AFB (Russian Knights)", + "countries": [ + "RUS" + ] + }, + "lypetsk afb (shark)": { + "name": "Lypetsk AFB (Shark)", + "countries": [ + "RUS" + ] + }, + "besovets afb 2 squadron": { + "name": "Besovets AFB 2 squadron", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Flanker", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 71 + }, + "Su-30": { + "name": "Su-30", + "coalition": "red", + "category": "aircraft", + "label": "Su-30 Super Flanker", + "era": "Late Cold War", + "shortLabel": "S30", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-77*6,ECM", + "name": "R-73*2,R-77*6,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27T (AA-10 Alamo B) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27T*2,R-27R*4", + "name": "R-73*2,R-27T*2,R-27R*4", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500AO*6,R-73*2,ECM", + "name": "RBK-500AO*6,R-73*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "Kh-31A (AS-17 Krypton) - 610kg, AShM, IN & Act Rdr", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31P*2,Kh-31A*2,R-73*2,R-77*2,ECM", + "name": "Kh-31P*2,Kh-31A*2,R-73*2,R-77*2,ECM", + "roles": [ + "Antiship Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27T (AA-10 Alamo B) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-73*4,R-27T*2,R-27R*4", + "name": "R-73*4,R-27T*2,R-27R*4", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Kh-35 (AS-20 Kayak) - 520kg, AShM, IN & Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-77*2,Kh-35*2,ECM", + "name": "R-73*2,R-77*2,Kh-35*2,ECM", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "Kh-35 (AS-20 Kayak) - 520kg, AShM, IN & Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-35*2,Kh-31P*2,R-73*2,R-77*2,ECM", + "name": "Kh-35*2,Kh-31P*2,R-73*2,R-77*2,ECM", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*4,B-8*2,R-73*2,ECM", + "name": "FAB-250*4,B-8*2,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "ECM", + "name": "ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "KAB-1500L - 1500kg Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-1500*2,R-73*2,R-77*2,ECM", + "name": "KAB-1500*2,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250*6,R-73*2,ECM", + "name": "RBK-250*6,R-73*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*4,R-77*6", + "name": "R-73*4,R-77*6", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*4,S-25*2,R-73*2,ECM", + "name": "FAB-250*4,S-25*2,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27R*2,R-27ER*4,ECM", + "name": "R-73*2,R-27R*2,R-27ER*4,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27T (AA-10 Alamo B) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27T*2,R-27ER*2,R-77*2,ECM", + "name": "R-73*2,R-27T*2,R-27ER*2,R-77*2,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-1500 M-54 - 1500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-1500*2,R-73*2,R-77*2,ECM", + "name": "FAB-1500*2,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27T (AA-10 Alamo B) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*4,R-27T*2,R-27ER*2,R-77*2", + "name": "R-73*4,R-27T*2,R-27ER*2,R-77*2", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-59M (AS-18 Kazoo) - 930kg, ASM, IN", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-59M*2,R-73*2,R-77*2,ECM", + "name": "Kh-59M*2,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*6,R-73*2,ECM", + "name": "FAB-500*6,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2,R-27ER*4", + "name": "R-73*4,R-27R*2,R-27ER*4", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*4,R-73*2,R-77*2,ECM", + "name": "Kh-29L*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500*6,R-73*2,ECM", + "name": "BetAB-500*6,R-73*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-73*4", + "name": "R-73*4", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*4,UB-13*2,R-73*2,ECM", + "name": "FAB-250*4,UB-13*2,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-77*4,R-27ER*2,ECM", + "name": "R-73*2,R-77*4,R-27ER*2,ECM", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "KAB-500LG - 500kg Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-500*4,R-73*2,R-77*2,ECM", + "name": "KAB-500*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*6,R-73*2,ECM", + "name": "FAB-250*6,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 4 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 2 + } + ], + "enabled": true, + "code": "R-73*4,R-77*4,R-27ER*2", + "name": "R-73*4,R-77*4,R-27ER*2", + "roles": [ + "Escort", + "CAP", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29T*4,R-73*2,R-77*2,ECM", + "name": "Kh-29T*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 4 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31P*4,R-73*2,R-77*2,ECM", + "name": "Kh-31P*4,R-73*2,R-77*2,ECM", + "roles": [ + "SEAD" + ] + } + ], + "filename": "su-34.png", + "enabled": true, + "liveries": { + "af standard last": { + "name": "af standard last", + "countries": [ + "RUS" + ] + }, + "`russian knights` team #25": { + "name": "`russian knights` team #25", + "countries": [ + "RUS" + ] + }, + "adf 148th ctc savasleyka ab": { + "name": "adf 148th ctc savasleyka ab", + "countries": [ + "RUS" + ] + }, + "`desert` test paint scheme": { + "name": "`desert` test paint scheme", + "countries": [ + "RUS" + ] + }, + "`test-pilots` team #597": { + "name": "`test-pilots` team #597", + "countries": [ + "RUS" + ] + }, + "`snow` test paint scheme": { + "name": "`snow` test paint scheme", + "countries": [ + "RUS" + ] + }, + "af standard early": { + "name": "af standard early", + "countries": [ + "SUN", + "RUS" + ] + }, + "af standard last (worn-out)": { + "name": "af standard last (worn-out)", + "countries": [ + "RUS" + ] + }, + "af standard early (worn-out)": { + "name": "af standard early (worn-out)", + "countries": [ + "RUS" + ] + }, + "af standard": { + "name": "af standard", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Flanker", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 72 + }, + "Su-33": { + "name": "Su-33", + "coalition": "red", + "category": "aircraft", + "label": "Su-33 Navy Flanker", + "era": "Late Cold War", + "shortLabel": "S33", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250*6,R-73*2,R-27R*2,ECM", + "name": "RBK-250*6,R-73*2,R-27R*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + } + ], + "enabled": true, + "code": "R-73*4", + "name": "R-73*4", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*4,R-27R*2,R-27ER*6", + "name": "R-73*4,R-27R*2,R-27ER*6", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27ET*2,R-27ER*6,ECM", + "name": "R-73*2,R-27ET*2,R-27ER*6,ECM", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "R-27ET (AA-10 Alamo D) - IR Extended Range", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + } + ], + "enabled": true, + "code": "R-73*4,R-27ET*2,R-27ER*6", + "name": "R-73*4,R-27ET*2,R-27ER*6", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*6,R-73*2,R-27R*2,ECM", + "name": "FAB-250*6,R-73*2,R-27R*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "R-27ER (AA-10 Alamo C) - Semi-Act Extended Range", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "R-73*2,R-27R*2,R-27ER*6,ECM", + "name": "R-73*2,R-27R*2,R-27ER*6,ECM", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "ECM", + "name": "ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500*6,R-73*2,R-27R*2,ECM", + "name": "BetAB-500*6,R-73*2,R-27R*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500AO*6,R-73*2,R-27R*2,ECM", + "name": "RBK-500AO*6,R-73*2,R-27R*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "UB-13*4,FAB-250*4,R-73*2,ECM", + "name": "UB-13*4,FAB-250*4,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "S-25*4,FAB-250*4,R-73*2,ECM", + "name": "S-25*4,FAB-250*4,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 6 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*6,R-73*2,R-27R*2,ECM", + "name": "FAB-500*6,R-73*2,R-27R*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*4,FAB-250*4,R-73*2,ECM", + "name": "B-8*4,FAB-250*4,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "S-25-OFM - 340mm UnGd Rkt, 480kg Penetrator", + "quantity": 4 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "S-25*4,FAB-500*4,R-73*4", + "name": "S-25*4,FAB-500*4,R-73*4", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM rockets + FAB500", + "name": "CAS S-8KOM rockets + FAB500", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8OFP rockets + FAB500", + "name": "CAS S-8OFP rockets + FAB500", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-13L pods - 10 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-13 Rockets + FAB500", + "name": "CAS S-13 Rockets + FAB500", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-13L pods - 10 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-13 Rockets + FAB100", + "name": "CAS S-13 Rockets + FAB100", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 4 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-250 - 250kg GP Bombs LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "CAS S-8KOM rockets + FAB250", + "name": "CAS S-8KOM rockets + FAB250", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x S-25-OFM - 340mm UnGdrocket, 480kg Penetrator", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-25 Rockets + FAB500", + "name": "CAS S-25 Rockets + FAB500", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM rockets + RBK500 PTAB10", + "name": "CAS S-8KOM rockets + RBK500 PTAB10", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 4 + }, + { + "name": "2 x B-8M1 - 40 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "RBK-500 - 268 x PTAB-1M, 500kg CBU Light HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "CAS S-8KOM rockets + RBK500 PTAB1", + "name": "CAS S-8KOM rockets + RBK500 PTAB1", + "roles": [ + "CAS" + ] + } + ], + "filename": "su-34.png", + "enabled": true, + "liveries": { + "t-10k-9 test paint scheme": { + "name": "t-10k-9 test paint scheme", + "countries": [ + "RUS" + ] + }, + "279th kiap 1st squad navy": { + "name": "Navy, 279th kiap, 1st squad", + "countries": [ + "RUS" + ] + }, + "aaf blue 68": { + "name": "Algerian AF BLUE No 68", + "countries": [ + "DZA" + ] + }, + "haf - aegean ghost": { + "name": "Hellenic Airforce - Aegean Ghost (Fictional)", + "countries": [ + "GRC" + ] + }, + "279th kiap 2nd squad syria 2017": { + "name": "Syria 2017, 279th kiap, 2nd squad", + "countries": [ + "RUS" + ] + }, + "aaf grey 12": { + "name": "Algerian AF GREY No 12", + "countries": [ + "DZA" + ] + }, + "t-10k-5 test paint scheme": { + "name": "t-10k-5 test paint scheme", + "countries": [ + "RUS" + ] + }, + "279th kiap 1st squad syria 2017": { + "name": "Syria 2017, 279th kiap, 1st squad", + "countries": [ + "RUS" + ] + }, + "279th kiap 2nd squad navy": { + "name": "Navy, 279th kiap, 2nd squad", + "countries": [ + "RUS" + ] + }, + "t-10k-1 test paint scheme": { + "name": "t-10k-1 test paint scheme", + "countries": [ + "SUN", + "RUS" + ] + }, + "plan carrier air wings j-15": { + "name": "PLAN Carrier Air Wings J-15", + "countries": "All" + } + }, + "type": "Aircraft", + "description": "2 jet engine, swept wing, 1 crew. Flanker", + "abilities": "Drogue AAR, Carrier", + "canTargetPoint": true, + "canRearm": false, + "length": 72 + }, + "Su-34": { + "name": "Su-34", + "coalition": "red", + "category": "aircraft", + "label": "Su-34 Hellduck", + "era": "Modern", + "shortLabel": "S34", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 4 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "UB-13*4,FAB-250*4,R-73*2,ECM", + "name": "UB-13*4,FAB-250*4,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 4 + }, + { + "name": "MBD3-U6-68 with 6 x FAB-100 - 100kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-100*28,R-73*2,ECM", + "name": "FAB-100*28,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "BetAB-500 - 500kg Concrete Piercing Bomb LD", + "quantity": 8 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "BetAB-500*8,R-73*2,ECM", + "name": "BetAB-500*8,R-73*2,ECM", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*4,R-73*2,R-77*2,ECM", + "name": "Kh-29L*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "KAB-500LG - 500kg Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-500*4,R-73*2,R-77*2,ECM", + "name": "KAB-500*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 8 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-250 PTAB-2.5M*8,R-73*2,ECM", + "name": "RBK-250 PTAB-2.5M*8,R-73*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 8 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*8,R-73*2,ECM", + "name": "FAB-250*8,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "ECM", + "name": "ECM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 4 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29T*4,R-73*2,R-77*2,ECM", + "name": "Kh-29T*4,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 8 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "RBK-500 PTAB-10-5*8,R-73*2,ECM", + "name": "RBK-500 PTAB-10-5*8,R-73*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "FAB-1500 M-54 - 1500kg GP Bomb LD", + "quantity": 3 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-1500*3,R-73*2,R-77*2,ECM", + "name": "FAB-1500*3,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "Kh-59M (AS-18 Kazoo) - 930kg, ASM, IN", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-59M*2,R-73*2,R-77*2,ECM", + "name": "Kh-59M*2,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "B-8M1 - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "RBK-500-255 - 30 x PTAB-10-5, 500kg CBU Heavy HEAT/AP", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "B-8*6,R-73*2,R-27R*2,ECM", + "name": "B-8*6,R-73*2,R-27R*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 8 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*8,R-73*2,ECM", + "name": "FAB-500*8,R-73*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "R-77 (AA-12 Adder) - Active Rdr", + "quantity": 2 + }, + { + "name": "KAB-1500L - 1500kg Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "KAB-1500*2,R-73*2,R-77*2,ECM", + "name": "KAB-1500*2,R-73*2,R-77*2,ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29T (AS-14 Kedge) - 670kg, ASM, TV Guided", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29T*4,R-73*2,R-27R*2,ECM", + "name": "Kh-29T*4,R-73*2,R-27R*2,ECM", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31A (AS-17 Krypton) - 610kg, AShM, IN & Act Rdr", + "quantity": 4 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 2 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31A*4,Kh-31P*2,R-73*2,R-27R*2,ECM", + "name": "Kh-31A*4,Kh-31P*2,R-73*2,R-27R*2,ECM", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31A (AS-17 Krypton) - 610kg, AShM, IN & Act Rdr", + "quantity": 6 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31A*6,R-73*2,R-27R*2,ECM", + "name": "Kh-31A*6,R-73*2,R-27R*2,ECM", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-31P (AS-17 Krypton) - 600kg, ARM, IN & Pas Rdr", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-31P*4,R-73*2,R-27R*2,ECM", + "name": "Kh-31P*4,R-73*2,R-27R*2,ECM", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "L005 Sorbtsiya ECM pod (left)", + "quantity": 1 + }, + { + "name": "R-73 (AA-11 Archer) - Infra Red", + "quantity": 2 + }, + { + "name": "Kh-29L (AS-14 Kedge) - 657kg, ASM, Semi-Act Laser", + "quantity": 4 + }, + { + "name": "R-27R (AA-10 Alamo A) - Semi-Act Rdr", + "quantity": 2 + }, + { + "name": "L005 Sorbtsiya ECM pod (right)", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-29L*4,R-73*2,R-27R*2,ECM", + "name": "Kh-29L*4,R-73*2,R-27R*2,ECM", + "roles": [ + "CAS" + ] + } + ], + "filename": "su-34.png", + "enabled": true, + "liveries": { + "russian air force": { + "name": "1 Russian Air Force", + "countries": [ + "RUS" + ] + }, + "russian air force old": { + "name": "Russian Air Force Old", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 Jet engine, swept wing, 2 crew, all weather fighter and strike. Fullback", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 76 + }, + "Tornado GR4": { + "name": "Tornado GR4", + "coalition": "blue", + "category": "aircraft", + "label": "Tornado GR4", + "era": "Late Cold War", + "shortLabel": "GR4", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M*2, Fuel*2, ECM", + "name": "AIM-9M*2, Fuel*2, ECM", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "ALARM", + "quantity": 4 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ALARM*4, Fuel*2, ECM", + "name": "ALARM*4, Fuel*2, ECM", + "roles": [ + "SEAD" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-16 - 1000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "GBU-16*2, AIM-9M*2, Fuel*2, ECM", + "name": "GBU-16*2, AIM-9M*2, Fuel*2, ECM", + "roles": [ + "Strike", + "FAC-A", + "Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BL-755 CBU - 450kg, 147 Frag/Pen bomblets", + "quantity": 4 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "BL755*4, AIM-9M*2, Fuel*2, ECM", + "name": "BL755*4, AIM-9M*2, Fuel*2, ECM", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Sea Eagle - ASM", + "quantity": 2 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "Sea Eagle*2, AIM-9M*2, Fuel*2, ECM", + "name": "Sea Eagle*2, AIM-9M*2, Fuel*2, ECM", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "tornado.png", + "enabled": true, + "liveries": { + "no. 14 squadron raf lossiemouth ab (morayshire)": { + "name": "no. 14 squadron raf lossiemouth ab (morayshire)", + "countries": [ + "UK" + ] + }, + "o of ii (ac) squadron raf marham": { + "name": "o of ii (ac) squadron raf marham", + "countries": [ + "UK" + ] + }, + "bb of 14 squadron raf lossiemouth": { + "name": "bb of 14 squadron raf lossiemouth", + "countries": [ + "UK" + ] + }, + "no. 9 squadron raf marham ab (norfolk)": { + "name": "no. 9 squadron raf marham ab (norfolk)", + "countries": [ + "UK" + ] + }, + "no. 12 squadron raf lossiemouth ab (morayshire)": { + "name": "no. 12 squadron raf lossiemouth ab (morayshire)", + "countries": [ + "UK" + ] + }, + "no. 617 squadron raf lossiemouth ab (morayshire)": { + "name": "no. 617 squadron raf lossiemouth ab (morayshire)", + "countries": [ + "UK" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swing wing, 2 crew, all weather strike.", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 54 + }, + "Tornado IDS": { + "name": "Tornado IDS", + "coalition": "blue", + "category": "aircraft", + "label": "Tornado IDS", + "era": "Late Cold War", + "shortLabel": "IDS", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Kormoran - ASM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kormoran*2,AIM-9*2,Fuel*2", + "name": "Kormoran*2,AIM-9*2,Fuel*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-16 - 1000lb Laser Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "GBU-16*2,AIM-9*2,Fuel*2", + "name": "GBU-16*2,AIM-9*2,Fuel*2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + } + ], + "enabled": true, + "code": "Fuel*2", + "name": "Fuel*2", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 4 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-88*4,AIM-9*2,ECM", + "name": "AGM-88*4,AIM-9*2,ECM", + "roles": [ + "SEAD", + "CAS" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 1 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "Sky-Shadow ECM Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-88*2,AIM-9*2,Fuel*2,ECM", + "name": "AGM-88*2,AIM-9*2,Fuel*2,ECM", + "roles": [ + "SEAD", + "CAS" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "Kormoran - ASM", + "quantity": 4 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kormoran*4,AIM-9*2", + "name": "Kormoran*4,AIM-9*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "AGM-88C HARM - High Speed Anti-Radiation Missile", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Kormoran - ASM", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kormoran*2,AIM-9*2,AGM-88*2", + "name": "Kormoran*2,AIM-9*2,AGM-88*2", + "roles": [ + "Antiship Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "BOZ-107 - Countermeasure Dispenser", + "quantity": 2 + }, + { + "name": "TORNADO Fuel tank", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 - 500lb GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "Mk-82*4,AIM-9*2,Fuel*2", + "name": "Mk-82*4,AIM-9*2,Fuel*2", + "roles": [ + "Strike" + ] + } + ], + "filename": "tornado.png", + "enabled": true, + "liveries": { + "ita tornado black": { + "name": "Tornado Black", + "countries": [ + "ITA" + ] + }, + "marinefliegergeschwader 2 eggebek ab marineflieger": { + "name": "marinefliegergeschwader 2 eggebek ab marineflieger", + "countries": [ + "GER" + ] + }, + "jagdbombergeschwader 31 `boelcke` norvenich ab luftwaffe": { + "name": "jagdbombergeschwader 31 `boelcke` norvenich ab luftwaffe", + "countries": [ + "GER" + ] + }, + "ita tornado mm7042": { + "name": "Tornado MM7042", + "countries": [ + "ITA" + ] + }, + "ita tornado mm55004": { + "name": "Tornado MM55004", + "countries": [ + "ITA" + ] + }, + "aufklarungsgeschwader 51 `immelmann` jagel ab luftwaffe": { + "name": "aufklarungsgeschwader 51 `immelmann` jagel ab luftwaffe", + "countries": [ + "GER" + ] + }, + "jagdbombergeschwader 33 buchel ab no. 43+19 experimental scheme": { + "name": "jagdbombergeschwader 33 buchel ab no. 43+19 experimental scheme", + "countries": [ + "GER" + ] + }, + "jagdbombergeschwader 32 lechfeld ab luftwaffe": { + "name": "jagdbombergeschwader 32 lechfeld ab luftwaffe", + "countries": [ + "GER" + ] + }, + "ita tornado (sesto stormo diavoli rossi)": { + "name": "Tornado (Sesto Stormo Diavoli Rossi)", + "countries": [ + "ITA" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swing wing, 2 crew, all weather strike.", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 54 + }, + "Tu-142": { + "name": "Tu-142", + "coalition": "red", + "category": "aircraft", + "label": "Tu-142 Bear", + "era": "Mid Cold War", + "shortLabel": "142", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6 x Kh-35 (AS-20 Kayak) - 520kg, AShM, IN & Act Rdr", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-35*6", + "name": "Kh-35*6", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "tu-95.png", + "enabled": true, + "liveries": { + "af standard": { + "name": "af standard", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 turboprop, swept wing, 11 crew, bomber. Bear", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 177 + }, + "Tu-160": { + "name": "Tu-160", + "coalition": "red", + "category": "aircraft", + "label": "Tu-160 Blackjack", + "era": "Late Cold War", + "shortLabel": "160", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "6 x Kh-65 (AS-15B Kent) - 1250kg, ASM, IN & MCC", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-65*12", + "name": "Kh-65*12", + "roles": [ + "Strike" + ] + } + ], + "filename": "tu-160.png", + "enabled": true, + "liveries": { + "af standard": { + "name": "af standard", + "countries": [ + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 jet engine, swing wing, 4 crew bomber. Blackjack", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 177 + }, + "Tu-22M3": { + "name": "Tu-22M3", + "coalition": "red", + "category": "aircraft", + "label": "Tu-22M3 Backfire", + "era": "Late Cold War", + "shortLabel": "T22", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Kh-22 (AS-4 Kitchen) - 1000kg, AShM, IN & Act/Pas Rdr", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-22N", + "name": "Kh-22N", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Kh-22 (AS-4 Kitchen) - 1000kg, AShM, IN & Act/Pas Rdr", + "quantity": 2 + } + ], + "enabled": true, + "code": "Kh-22N*2", + "name": "Kh-22N*2", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "MBD3-U9M with 9 x FAB-250 - 250kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "33 x FAB-250 - 250kg GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*69", + "name": "FAB-250*69", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "33 x FAB-500 M-62 - 500kg GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*33", + "name": "FAB-500*33", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "MBD3-U9M with 9 x FAB-250 - 250kg GP Bombs LD", + "quantity": 4 + }, + { + "name": "33 x FAB-500 M-62 - 500kg GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-500*33, FAB-250*36", + "name": "FAB-500*33, FAB-250*36", + "roles": [ + "Strike", + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "33 x FAB-250 - 250kg GP Bombs LD", + "quantity": 1 + } + ], + "enabled": true, + "code": "FAB-250*33", + "name": "FAB-250*33", + "roles": [ + "Strike", + "Runway Attack" + ] + } + ], + "filename": "tu-22.png", + "enabled": true, + "liveries": { + "af standard": { + "name": "af standard", + "countries": [ + "UKR", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "2 jet engine, swing wing, 4 crew bomber. Backfire", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 139 + }, + "Tu-95MS": { + "name": "Tu-95MS", + "coalition": "red", + "category": "aircraft", + "label": "Tu-95MS Bear", + "era": "Mid Cold War", + "shortLabel": "T95", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "6 x Kh-65 (AS-15B Kent) - 1250kg, ASM, IN & MCC", + "quantity": 1 + } + ], + "enabled": true, + "code": "Kh-65*6", + "name": "Kh-65*6", + "roles": [ + "Strike" + ] + } + ], + "filename": "tu-95.png", + "enabled": true, + "liveries": { + "af standard": { + "name": "af standard", + "countries": [ + "UKR", + "RUS" + ] + } + }, + "type": "Aircraft", + "description": "4 turboprop, swept wing, 6 crew, bomber. Bear", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 162 + }, + "F-15ESE": { + "name": "F-15ESE", + "coalition": "", + "category": "aircraft", + "label": "F-15E Strike Eagle", + "shortLabel": "15E", + "era": "", + "enabled": true, + "loadouts": [ + { + "items": [ + { + "name": "Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "BDU-50LGB * 2", + "quantity": 2 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": " AIM-120C x 2, CATM-9M, GBU-12 x 4, TGP, NVP", + "name": " AIM-120C x 2, CATM-9M, GBU-12 x 4, TGP, NVP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "Mk-82 * 6", + "quantity": 2 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": " AIM-9M x 4, MK-82 x 12, TGP, Fuel Tank x 2", + "name": " AIM-9M x 4, MK-82 x 12, TGP, Fuel Tank x 2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Fuel tank 610 gal", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "BLU-107 * 6", + "quantity": 2 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C x 2, AIM-9M x 2, BLU-107 x 12, TGP, NVP, Fuel Tank", + "name": "AIM-120C x 2, AIM-9M x 2, BLU-107 x 12, TGP, NVP, Fuel Tank", + "roles": [ + "Runway Attack" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-12 * 4", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "GBU-10 * 2", + "quantity": 1 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-120C x 2, AIM-9M x 2, GBU-12 x 4, GBU-10 x 2, TGP, NVP, FUel Tank x 2", + "name": "AIM-120C x 2, AIM-9M x 2, GBU-12 x 4, GBU-10 x 2, TGP, NVP, FUel Tank x 2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "GBU-12 * 4", + "quantity": 2 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-120C x 2, AIM-9M x 2, GBU-12 x 9, TGP, NVP, FUel Tank x 2", + "name": "AIM-120C x 2, AIM-9M x 2, GBU-12 x 9, TGP, NVP, FUel Tank x 2", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C x 4, AIM-9M x4, TGP, NVP, FUel Tank x 2", + "name": "AIM-120C x 4, AIM-9M x4, TGP, NVP, FUel Tank x 2", + "roles": [ + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 3 + }, + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 2 + }, + { + "name": "Mk-82 AIR * 6", + "quantity": 2 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-120C x2, AIM-9M x 2, Mk-84 x 3, Mk-82AIR x 12", + "name": "AIM-120C x2, AIM-9M x 2, Mk-84 x 3, Mk-82AIR x 12", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "AIM-120Cx4, AIM-9Mx4, Fuel Tanks x 2", + "name": "AIM-120Cx4, AIM-9Mx4, Fuel Tanks x 2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 4 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, AIM-120B x 4, TGP, NVP, Fuel Tanks x 2", + "name": "AIM-9M x 4, AIM-120B x 4, TGP, NVP, Fuel Tanks x 2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "CBU-87 * 6", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 2 + } + ], + "enabled": true, + "code": "AIM-9M x 4, AIM-120C x 2, CBU-87 x 6, TGP", + "name": "AIM-9M x 4, AIM-120C x 2, CBU-87 x 6, TGP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "AIM-7MH Sparrow Semi-Active Radar", + "quantity": 2 + }, + { + "name": "Mk-20 Rockeye * 6", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, AIM-7M x 2, Mk-20 x 2, NVP, Fuel Tanks x 2", + "name": "AIM-9M x 4, AIM-7M x 2, Mk-20 x 2, NVP, Fuel Tanks x 2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "CBU-87 * 3", + "quantity": 2 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, CBU-87 x 6, TGP, Fuel Tank x 2", + "name": "AIM-9M x 4, CBU-87 x 6, TGP, Fuel Tank x 2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "Mk-20 Rockeye * 6", + "quantity": 2 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, Mk-20 x 12, NVP, Fuel Tanks x 2", + "name": "AIM-9M x 4, Mk-20 x 12, NVP, Fuel Tanks x 2", + "roles": [ + "Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "Mk-82 * 6", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "CBU-97 * 3", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, Mk-84 x 2, Mk-82 x 6, CBU-87 x 3, TGP, NVP", + "name": "AIM-9M x 4, Mk-84 x 2, Mk-82 x 6, CBU-87 x 3, TGP, NVP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "AIM-9M Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Fuel tank 610 gal", + "quantity": 2 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + } + ], + "enabled": true, + "code": "AIM-9M x 4, TGP, NVP, Fuel Tanks x 2", + "name": "AIM-9M x 4, TGP, NVP, Fuel Tanks x 2", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Captive AIM-9M for ACM", + "quantity": 3 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + }, + { + "name": "AN/AAQ-14 LANTIRN TGT Pod", + "quantity": 1 + }, + { + "name": "AN/AAQ-13 LANTIRN NAV POD", + "quantity": 1 + } + ], + "enabled": true, + "code": "CATM-9M x 3, AIM-120B", + "name": "CATM-9M x 3, AIM-120B", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "Captive AIM-9M for ACM", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "AIM-120C-5 AMRAAM - Active Rdr AAM", + "quantity": 1 + } + ], + "enabled": true, + "code": "CATM-9M, CAIM-120", + "name": "CATM-9M, CAIM-120", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 3 + } + ], + "enabled": true, + "code": "Clean", + "name": "Clean", + "roles": [] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + } + ], + "filename": "f-15.png", + "liveries": { + "usaf 334th eagles fs af89 aim high": { + "name": "USAF 334th Eagles AF89-475 'Aim High'", + "countries": [ + "USA" + ] + }, + "usaf 335th chiefs fs af89 low vis combat": { + "name": "USAF 335th Chiefs AF89 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af91 low vis combat": { + "name": "USAF 492nd Madhatters AF91 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 335th chiefs fs af89 high vis clean": { + "name": "USAF 335th Chiefs AF89 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 335th chiefs fs af89-0487 lucky": { + "name": "USAF 335th Chiefs AF89-0487 'Lucky'", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88-1690 darkness falls": { + "name": "USAF 336th Rocketeers AF88-1690 'Darkness Falls'", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers fs af92-366 billy the kid": { + "name": "USAF 391st Bold Tigers AF92-366 'Billy the Kid'", + "countries": [ + "USA" + ] + }, + "idf ra'am, 69 hammer sqn": { + "name": "IDF 69th Hammers Scheme B", + "countries": [ + "ISR" + ] + }, + "usaf 336th rocketeers fs af89 high vis clean": { + "name": "USAF 336th Rocketeers AF89 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af89-496 shadow": { + "name": "USAF 336th Rocketeers AF89-496 'Shadow'", + "countries": [ + "USA" + ] + }, + "usaf 389th thunderbolts fs af90 low vis combat": { + "name": "USAF 389th Thunderbolts AF90 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd mad hatters fs 97-219 75th d-day anniversary": { + "name": "USAF 492nd Madhatters AF97-219 '75th Anniversary D-Day'", + "countries": [ + "USA" + ] + }, + "usaf 334th eagles fs af89 high vis clean": { + "name": "USAF 334th Eagles AF89 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers fs af91-300 leo": { + "name": "USAF 391st Bold Tigers AF91-300 'Leo'", + "countries": [ + "USA" + ] + }, + "usaf 494th panthers fs af01 low vis clean": { + "name": "USAF 494th Panthers AF01 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af97-220 thanos": { + "name": "USAF 492nd Madhatters AF97-220 'Thanos'", + "countries": [ + "USA" + ] + }, + "usaf 48th fw 70th anniversary af92-364 heritage": { + "name": "USAF 48th FW 70th Aniversary AF92-364 Heritage", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88 low vis combat": { + "name": "USAF 336th Rocketeers AF88 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af97-221 low vis combat": { + "name": "USAF 492nd Madhatters AF97-221 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af91-315 vader": { + "name": "USAF 492nd Madhatters AF91-315 'Vader'", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af91-327 green goblin": { + "name": "USAF 492nd Madhatters AF91-327 'Green Goblin'", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers fs af90-247 kraken": { + "name": "USAF 391st Bold Tigers AF90-247 'kraken'", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88-1700 dragon betty": { + "name": "USAF 336th Rocketeers AF88-1700 'Dragon Betty'", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af89-501": { + "name": "USAF 336th Rocketeers AF89-501", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88 high vis clean": { + "name": "USAF 336th Rocketeers AF88 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 333rd rocketeers fs af87-199 333 fgs": { + "name": "USAF 333rd Lancers AF87-0199 333 FGS", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers fs af90-241 high vis combat": { + "name": "USAF 391st Bold Tigers AF90-241 High Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af96 low vis clean": { + "name": "USAF 492nd Madhatters AF96 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 494th panthers fs af00 low vis combat": { + "name": "USAF 494th Panthers AF00 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af91 low vis clean": { + "name": "USAF 492nd Madhatters AF91 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 494th panthers fs af01 low vis combat": { + "name": "USAF 494th Panthers AF01 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af98 low vis clean": { + "name": "USAF 492nd Madhatters AF98 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 17th ws af90 low vis clean": { + "name": "USAF 17th Weapons Squadron AF90 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88-1673 336 fgs": { + "name": "USAF 336th Rocketeers AF88-1673 336 FGS", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af89 low vis combat": { + "name": "USAF 336th Rocketeers AF89 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af91-308 low vis clean": { + "name": "USAF 492nd Madhatters AF91-308 Low Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af98 low vis combat": { + "name": "USAF 492nd Madhatters AF98 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers af90-250 tmota": { + "name": "USAF 391ST Bold Tigers 2005 Tiger Meet of the Americas", + "countries": [ + "USA" + ] + }, + "usaf af86-183 number1": { + "name": "USAF Test AF86-183 'Number 1'", + "countries": [ + "USA" + ] + }, + "usaf 17th wps af90-257": { + "name": "USAF 17th Weapons Squadron AF90-257 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 17th ws af90 high vis clean": { + "name": "USAF 17th Weapons Squadron AF90 High Vis Clean", + "countries": [ + "USA" + ] + }, + "usaf 492nd madhatters fs af96 low vis combat": { + "name": "USAF 492nd Madhatters AF96 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 391st bold tigers fs af90 low vis combat": { + "name": "USAF 391st Bold Tigers AF90 Low Vis Combat", + "countries": [ + "USA" + ] + }, + "usaf 494th panthers fs 91-603 75th d-day anniversary": { + "name": "USAF 494th Panthers AF91-603 '75th Anniversary D-Day'", + "countries": [ + "USA" + ] + }, + "usaf 336th fw mountain home 75 years af87-173": { + "name": "USAF 366th FW 'Mountain Home 75 Years' AF87-0173", + "countries": [ + "USA" + ] + }, + "usaf 336th rocketeers fs af88-1687 mad duck iv": { + "name": "USAF 336th Rocketeers AF88-1687 'Mad Duck IV'", + "countries": [ + "USA" + ] + } + }, + "length": 63 + }, + "F-14A": { + "name": "F-14A", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-14A Tomcat", + "shortLabel": "F14", + "type": "F_14A", + "enabled": false, + "liveries": {}, + "length": 62 + }, + "Su-25TM": { + "name": "Su-25TM", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "SU-25TM", + "shortLabel": "S25", + "type": "Su_25TM", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Su-24MR": { + "name": "Su-24MR", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "Su-24MR Fencer", + "shortLabel": "S24", + "type": "Su_24MR", + "enabled": false, + "liveries": {}, + "length": 75 + }, + "S-3B": { + "name": "S-3B", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "S-3B", + "shortLabel": "S3B", + "type": "S_3B", + "enabled": false, + "liveries": {}, + "length": 53 + }, + "Mirage 2000-5": { + "name": "Mirage 2000-5", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE 2000-5", + "shortLabel": "M2k", + "type": "Mirage_2000_5", + "enabled": false, + "liveries": {}, + "length": 47.1 + }, + "F-15E": { + "name": "F-15E", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-15E Strike Eagle", + "shortLabel": "15E", + "type": "F_15E", + "enabled": false, + "liveries": {}, + "length": 63 + }, + "MiG-29G": { + "name": "MiG-29G", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MiG-29G Fulcrum", + "shortLabel": "M29", + "type": "MiG_29G", + "enabled": false, + "liveries": {}, + "length": 56 + }, + "F-16C bl.50": { + "name": "F-16C bl.50", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-16C Viper Block 50", + "shortLabel": "16C", + "type": "F_16C_bl_50", + "enabled": false, + "liveries": {}, + "length": 49 + }, + "F-16C bl.52d": { + "name": "F-16C bl.52d", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-16C BL.52D", + "shortLabel": "16C", + "type": "F_16C_bl_52d", + "enabled": false, + "liveries": {}, + "length": 49 + }, + "F-16A": { + "name": "F-16A", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-16A Viper", + "shortLabel": "16A", + "type": "F_16A", + "enabled": false, + "liveries": {}, + "length": 49 + }, + "F-16A MLU": { + "name": "F-16A MLU", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-16A Viper MLU", + "shortLabel": "16A", + "type": "F_16A_MLU", + "enabled": false, + "liveries": {}, + "length": 49 + }, + "RQ-1A Predator": { + "name": "RQ-1A Predator", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "RQ-1A PREDATOR", + "shortLabel": "RQ1", + "type": "RQ_1A_Predator", + "enabled": false, + "liveries": {}, + "length": 27.2 + }, + "Yak-40": { + "name": "Yak-40", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "YAK-40", + "shortLabel": "40", + "type": "Yak_40", + "enabled": false, + "liveries": {}, + "length": 77.1 + }, + "SpitfireLFMkIX": { + "name": "SpitfireLFMkIX", + "coalition": "blue", + "era": "WW2", + "category": "aircraft", + "label": "Spitfire Mk 9", + "shortLabel": "Spit", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Torpedo Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank (Torpedo)", + "name": "Fuel Tank (Torpedo)", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "Slipper Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank (Slipper)", + "name": "Fuel Tank (Slipper)", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "GP 250", + "quantity": 2 + } + ], + "enabled": true, + "code": "GP 250", + "name": "GP 250", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GP 500", + "quantity": 1 + } + ], + "enabled": true, + "code": "GO 500", + "name": "GP 500", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + } + ], + "type": "SpitfireLFMkIX", + "enabled": true, + "liveries": { + "441 9g-q": { + "name": "441 RCAF 9G-Q", + "countries": [ + "CAN", + "UK" + ] + }, + "ussr 26th gviap, pvo": { + "name": "USSR 26th GvIAP, PVO", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf standard": { + "name": "RAF standard", + "countries": [ + "UK" + ] + }, + "ussr_3rd_ae_57th_gviap": { + "name": "USSR 3rd AE, 57th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf 2 taf, sept 1944": { + "name": "RAF, 2nd Tactical Air Force, September 1944", + "countries": [ + "UK" + ] + }, + "ussr spitfire 57th gviap": { + "name": "USSR 57th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf 2 taf, july 1944": { + "name": "RAF, 2nd Tactical Air Force, July 1944", + "countries": [ + "UK" + ] + }, + "raf, no. 16 squadron": { + "name": "RAF, No.16 Squadron", + "countries": [ + "UK" + ] + }, + "ussr pilot lt. col. v. a. matsiyevitch, 26th gviap": { + "name": "USSR Lt.Col. V.A. Matsiyevitch, 26th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf, no. 126 squadron, harrowbeer": { + "name": "RAF, No.126 Squadron", + "countries": [ + "UK" + ] + }, + "raf 2 taf, june 1944": { + "name": "RAF, 2nd Tactical Air Force, June 1944", + "countries": [ + "UK" + ] + }, + "403 rcaf beurling": { + "name": "403 RCAF Beurling", + "countries": [ + "CAN", + "UK" + ] + }, + "raf, no. 145 squadron": { + "name": "RAF, No.145 Squadron", + "countries": [ + "UK" + ] + } + }, + "filename": "spitfire.png", + "description": "Single propellor, straight wing, 1 crew. Spitfire.", + "length": 29.9 + }, + "SpitfireLFMkIXCW": { + "name": "SpitfireLFMkIXCW", + "coalition": "blue", + "era": "WW2", + "category": "aircraft", + "label": "Spitfire Mk 9 CW", + "shortLabel": "Spit", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "Torpedo Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank (Torpedo)", + "name": "Fuel Tank (Torpedo)", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "Slipper Fuel Tank", + "quantity": 1 + } + ], + "enabled": true, + "code": "Fuel Tank (Slipper)", + "name": "Fuel Tank (Slipper)", + "roles": [ + "CAP", + "FAC-A", + "Escort" + ] + }, + { + "items": [ + { + "name": "GP 250", + "quantity": 2 + } + ], + "enabled": true, + "code": "GP 250", + "name": "GP 250", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "GP 500", + "quantity": 1 + } + ], + "enabled": true, + "code": "GO 500", + "name": "GP 500", + "roles": [ + "Runway Attack", + "CAS", + "Antiship Strike", + "Strike" + ] + } + ], + "type": "SpitfireLFMkIXCW", + "enabled": true, + "liveries": { + "441 9g-q": { + "name": "441 RCAF 9G-Q", + "countries": [ + "CAN", + "UK" + ] + }, + "ussr 26th gviap, pvo": { + "name": "USSR 26th GvIAP, PVO", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf standard": { + "name": "RAF standard", + "countries": [ + "UK" + ] + }, + "ussr_3rd_ae_57th_gviap": { + "name": "USSR 3rd AE, 57th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf 2 taf, sept 1944": { + "name": "RAF, 2nd Tactical Air Force, September 1944", + "countries": [ + "UK" + ] + }, + "ussr spitfire 57th gviap": { + "name": "USSR 57th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf 2 taf, july 1944": { + "name": "RAF, 2nd Tactical Air Force, July 1944", + "countries": [ + "UK" + ] + }, + "raf, no. 16 squadron": { + "name": "RAF, No.16 Squadron", + "countries": [ + "UK" + ] + }, + "ussr pilot lt. col. v. a. matsiyevitch, 26th gviap": { + "name": "USSR Lt.Col. V.A. Matsiyevitch, 26th GvIAP", + "countries": [ + "RUS", + "SUN" + ] + }, + "raf, no. 126 squadron, harrowbeer": { + "name": "RAF, No.126 Squadron", + "countries": [ + "UK" + ] + }, + "raf 2 taf, june 1944": { + "name": "RAF, 2nd Tactical Air Force, June 1944", + "countries": [ + "UK" + ] + }, + "403 rcaf beurling": { + "name": "403 RCAF Beurling", + "countries": [ + "CAN", + "UK" + ] + }, + "raf, no. 145 squadron": { + "name": "RAF, No.145 Squadron", + "countries": [ + "UK" + ] + } + }, + "filename": "spitfire.png", + "description": "Single propellor, straight wing, 1 crew. Spitfire with clipped wingtips..", + "length": 29.9 + }, + "P-51D": { + "name": "P-51D", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "P-51D Mustang", + "shortLabel": "P51", + "type": "P_51D", + "enabled": false, + "liveries": {}, + "length": 32 + }, + "P-47D-30": { + "name": "P-47D-30", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "P-47D-30", + "shortLabel": "P47", + "type": "P_47D_30", + "enabled": false, + "liveries": {}, + "length": 36 + }, + "P-47D-30bl1": { + "name": "P-47D-30bl1", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "P-47D-30", + "shortLabel": "P47", + "type": "P_47D_30bl1", + "enabled": false, + "liveries": {}, + "length": 36 + }, + "A-10A": { + "name": "A-10A", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "A-10A Warthog", + "shortLabel": "A10", + "type": "A_10A", + "enabled": false, + "liveries": {}, + "length": 53 + }, + "A-10C": { + "name": "A-10C", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "A-10C Warthog", + "shortLabel": "A10", + "type": "A_10C", + "enabled": false, + "liveries": {}, + "length": 53 + }, + "KC130": { + "name": "KC130", + "coalition": "blue", + "category": "aircraft", + "label": "KC-130", + "era": "Early Cold War", + "shortLabel": "K130", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Tanker" + ] + } + ], + "filename": "c-130.png", + "enabled": true, + "liveries": {}, + "type": "Aircraft", + "description": "4 turboprop, stright wing, 3 crew. Tanker/transport aircraft. Hercules", + "abilities": "Tanker, Drogue AAR", + "canTargetPoint": false, + "canRearm": false, + "length": 97 + }, + "C-101EB": { + "name": "C-101EB", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "C-101EB", + "shortLabel": "C-101EB", + "type": "C_101EB", + "enabled": false, + "liveries": {}, + "length": 42 + }, + "WingLoong-I": { + "name": "WingLoong-I", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MQ-9 Reaper", + "shortLabel": "MQ9", + "type": "WingLoong_I", + "enabled": false, + "liveries": {}, + "length": 36 + }, + "Christen Eagle II": { + "name": "Christen Eagle II", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "CHRISTEN EAGLE II", + "shortLabel": "CE2", + "type": "Christen_Eagle_II", + "enabled": false, + "liveries": {}, + "length": 20.5 + }, + "F-5E": { + "name": "F-5E", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-5E", + "shortLabel": "5E", + "type": "F_5E", + "enabled": false, + "liveries": {}, + "length": 47 + }, + "F/A-18A": { + "name": "F/A-18A", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F/A-18A", + "shortLabel": "18A", + "type": "F_A_18A", + "enabled": false, + "liveries": {}, + "length": 56 + }, + "F/A-18C": { + "name": "F/A-18C", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F/A-18C", + "shortLabel": "18C", + "type": "F_A_18C", + "enabled": false, + "liveries": {}, + "length": 56 + }, + "Hawk": { + "name": "Hawk", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "Hawk", + "shortLabel": "Hk", + "type": "Hawk", + "enabled": false, + "liveries": {}, + "length": 39 + }, + "L-39C": { + "name": "L-39C", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "L-39C", + "shortLabel": "L39C", + "type": "L_39C", + "enabled": false, + "liveries": {}, + "length": 40 + }, + "MB-339APAN": { + "name": "MB-339APAN", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MB-339APAN", + "shortLabel": "339", + "type": "MB_339APAN", + "enabled": false, + "liveries": {}, + "length": 36 + }, + "Mirage-F1C": { + "name": "Mirage-F1C", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1C", + "shortLabel": "MF1", + "type": "Mirage_F1C", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CE": { + "name": "Mirage-F1CE", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CE", + "shortLabel": "MF1", + "type": "Mirage_F1CE", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1M-EE": { + "name": "Mirage-F1M-EE", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1M-EE", + "shortLabel": "MF1", + "type": "Mirage_F1M_EE", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1M-CE": { + "name": "Mirage-F1M-CE", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1M-CE", + "shortLabel": "MF1", + "type": "Mirage_F1M_CE", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1C-200": { + "name": "Mirage-F1C-200", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1C-200", + "shortLabel": "MF1", + "type": "Mirage_F1C_200", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1EH": { + "name": "Mirage-F1EH", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1EH", + "shortLabel": "MF1", + "type": "Mirage_F1EH", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CH": { + "name": "Mirage-F1CH", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CH", + "shortLabel": "MF1", + "type": "Mirage_F1CH", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1JA": { + "name": "Mirage-F1JA", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1JA", + "shortLabel": "MF1", + "type": "Mirage_F1JA", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CG": { + "name": "Mirage-F1CG", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CG", + "shortLabel": "MF1", + "type": "Mirage_F1CG", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CZ": { + "name": "Mirage-F1CZ", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CZ", + "shortLabel": "MF1", + "type": "Mirage_F1CZ", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CJ": { + "name": "Mirage-F1CJ", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CJ", + "shortLabel": "MF1", + "type": "Mirage_F1CJ", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CK": { + "name": "Mirage-F1CK", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CK", + "shortLabel": "MF1", + "type": "Mirage_F1CK", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1EQ": { + "name": "Mirage-F1EQ", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1EQ", + "shortLabel": "MF1", + "type": "Mirage_F1EQ", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1ED": { + "name": "Mirage-F1ED", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1ED", + "shortLabel": "MF1", + "type": "Mirage_F1ED", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1EDA": { + "name": "Mirage-F1EDA", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1EDA", + "shortLabel": "MF1", + "type": "Mirage_F1EDA", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CR": { + "name": "Mirage-F1CR", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CR", + "shortLabel": "MF1", + "type": "Mirage_F1CR", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1CT": { + "name": "Mirage-F1CT", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1CT", + "shortLabel": "MF1", + "type": "Mirage_F1CT", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1B": { + "name": "Mirage-F1B", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1B", + "shortLabel": "MF1", + "type": "Mirage_F1B", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1BE": { + "name": "Mirage-F1BE", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1BE", + "shortLabel": "MF1", + "type": "Mirage_F1BE", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1BQ": { + "name": "Mirage-F1BQ", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1BQ", + "shortLabel": "MF1", + "type": "Mirage_F1BQ", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1BD": { + "name": "Mirage-F1BD", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1BD", + "shortLabel": "MF1", + "type": "Mirage_F1BD", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Mirage-F1DDA": { + "name": "Mirage-F1DDA", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "MIRAGE-F1DDA", + "shortLabel": "MF1", + "type": "Mirage_F1DDA", + "enabled": false, + "liveries": {}, + "length": 49.5 + }, + "Yak-52": { + "name": "Yak-52", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "YAK-52", + "shortLabel": "52", + "type": "Yak_52", + "enabled": false, + "liveries": {}, + "length": 26.2 + }, + "B-17G": { + "name": "B-17G", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "B-17G Flying Fortress", + "shortLabel": "B17", + "type": "B_17G", + "enabled": false, + "liveries": {}, + "length": 74.7 + }, + "Ju-88A4": { + "name": "Ju-88A4", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "JU-88 A4", + "shortLabel": "Ju88", + "type": "Ju_88A4", + "enabled": false, + "liveries": {}, + "length": 56.8 + }, + "C-47": { + "name": "C-47", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "C-47 Dakota", + "shortLabel": "C47", + "type": "C_47", + "enabled": false, + "liveries": {}, + "length": 63.5 + }, + "TF-51D": { + "name": "TF-51D", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "TF-51D", + "shortLabel": "T51", + "type": "TF_51D", + "enabled": false, + "liveries": {}, + "length": 32.8 + }, + "F-4E-45MC": { + "name": "F-4E-45MC", + "coalition": "", + "era": "", + "category": "aircraft", + "label": "F-4E-45MC", + "shortLabel": "4", + "type": "F_4E_45MC", + "enabled": true, + "liveries": { + "sl68-303_h1_110ang": { + "name": "F-4E - USAF - SL68-303 - Hill One - 110th Missouri ANG by LanceCriminal86", + "countries": "All" + }, + "tuaf-68-0342-h2": { + "name": "F-4E - TuAF - 68-0342 - Hill Two by Aqil", + "countries": "All" + }, + "jasdf-57-8368": { + "name": "F-4EJ - JASDF - 57-8368 by Mach3DS", + "countries": "All" + }, + "thunderbird4": { + "name": "F-4E - USAF - THUNDERBIRD 4", + "countries": "All" + }, + "default": { + "name": "F-4E - USAF - GA68-400 - Hill Two - 20th TFTS Silver Lobos", + "countries": "All" + }, + "iriaf-3-6673": { + "name": "F-4E - IRIAF - 3-6673 - 91st TFS - 9th TFB by ISAAC", + "countries": "All" + }, + "38+59_n90_jg71": { + "name": "F-4F - 38+59 - Norm 90 - JG 71 Richthofen", + "countries": "All" + }, + "haf-generic-ag": { + "name": "F-4E - HAF - Generic - Aegean Ghost", + "countries": "All" + }, + "wa68-373_sea_57ttw": { + "name": "F-4E - USAF - WA68-373 - SEA - 57th Tactical Training Wing", + "countries": "All" + }, + "iriaf-3-6564": { + "name": "F-4E - IRIAF - 3-6564 - 31st TFS by ISAAC", + "countries": "All" + }, + "tuaf-67-0268-h2": { + "name": "F-4E - TuAF - 67-0268 - Hill Two by Aqil", + "countries": "All" + }, + "iriaf-3-6643": { + "name": "F-4E - IRIAF - 3-6643 - 61st TFS by ISAAC", + "countries": "All" + }, + "thunderbird2": { + "name": "F-4E - USAF - THUNDERBIRD 2", + "countries": "All" + }, + "haf-01520_ab": { + "name": "F-4E - HAF - 01520 - Aegean Blue by Fish", + "countries": "All" + }, + "eaf-70355_h2": { + "name": "F-4E - EAF - 70355 - Hill Two by Kerbo", + "countries": "All" + }, + "iaf-kurnass-114-119sqn": { + "name": "F-4E - IAF - Kurnass 114 - 119 SQN", + "countries": "All" + }, + "37+36_n72_jg74": { + "name": "F-4F - 37+36 - Norm 72 - JG 74 - Moelders", + "countries": "All" + }, + "eaf-60366_ghost": { + "name": "F-4E - EAF - 60366 - Ghost Grey by Kerbo", + "countries": "All" + }, + "th68-450_h1_457fs": { + "name": "F-4E - USAF - TH68-450 - Hill Two - 457th FS Spads", + "countries": "All" + }, + "jv67-288_seaw_469tfs": { + "name": "F-4E - USAF - JV70-288 - SEA - 469th TFS Tigers", + "countries": "All" + }, + "37+24_n81b_jg72": { + "name": "F-4F - 37+24 - Norm 81 B - JG 72 Westphalen", + "countries": "All" + }, + "eaf-70373_seaw": { + "name": "F-4E - EAF - 70373 - SEA by Kerbo", + "countries": "All" + }, + "rokaf-68377-h2-156fs": { + "name": "F-4E - ROKAF - 68-377 - Hill Two - 156th FS", + "countries": "All" + }, + "raaf-97203_sea": { + "name": "F-4E - RAAF - 97203 - SEA", + "countries": "All" + }, + "jasdf-57-6371": { + "name": "RF-4EJ - JASDF - 57-6371 - SEA by Kerbo", + "countries": "All" + }, + "rs68-381_e1_526tfs": { + "name": "F-4E - USAF - RS68-381 - Euro One - 526th TFS", + "countries": "All" + }, + "adc af66-382": { + "name": "F-4E - USAF - AF66-382 - ADC - 57th FIS by Mach3DS", + "countries": "All" + }, + "thunderbird7": { + "name": "F-4E - USAF - THUNDERBIRD 7", + "countries": "All" + }, + "rokaf-80407-h2-152fs": { + "name": "F-4E - ROKAF - 80407 - Hill Two - 152nd FS", + "countries": "All" + }, + "iiaf-3-6687": { + "name": "F-4E - IIAF - 3-6687 by ISAAC", + "countries": "All" + }, + "raf-43-sqn-fg.1": { + "name": "Fictional Royal Air Force 43(F) Sqn FG.1 by Fish", + "countries": "All" + }, + "rs68-480_sea_512tfs": { + "name": "F-4E - USAF - RS68-480 - SEA Wrap Around - 512th TFS Dragons", + "countries": "All" + }, + "jv67-287_seaw_469tfs": { + "name": "F-4E - USAF - JV70-287 - SEA - 469th TFS Tigers", + "countries": "All" + }, + "tuaf-66-0312_h2_karasahin": { + "name": "F-4E - TuAF - 66-0312 - Hill Two - Kara Sahin (Black Hawk) by Aqil", + "countries": "All" + }, + "haf-71752_seaw": { + "name": "F-4E - HAF - 71752 - SEAW", + "countries": "All" + }, + "tuaf-67-0285-sea": { + "name": "F-4E - TuAF - 67-0285 - SEA by Aqil", + "countries": "All" + }, + "37+83_n81a_jg74": { + "name": "F-4F - 37+83 - Norm 81 A - JG 74 Moelders - GAFTIC 1986", + "countries": "All" + }, + "haf-01507_ag": { + "name": "F-4E - HAF - 01507 - Aegean Ghost", + "countries": "All" + }, + "37+01_pp_jg71": { + "name": "F-4F - 37+01 - Phantom Pharewell - JG71 - 2013", + "countries": "All" + }, + "adc af66-300": { + "name": "F-4E - USAF - AF66-300 - ADC - 57th FIS by Mach3DS", + "countries": "All" + }, + "rokaf-80470-cg-153fs": { + "name": "F-4E - ROKAF - 78740 - Compass Ghost - 153rd FS", + "countries": "All" + }, + "iiaf-usaf": { + "name": "F-4E - IIAF - USAF - 00252 - Asia Minor by ISAAC", + "countries": "All" + }, + "jasdf-77-8399": { + "name": "F-4EJ - JASDF - 77-8399 - Final Year Black by Mach3DS", + "countries": "All" + }, + "tuaf-69-7585-h2-son_seytanlar": { + "name": "F-4E - TuAF - 69-7585 - Hill Two - Son Seytanlar by Aqil", + "countries": "All" + }, + "jasdf-87-8312-3wg-blackpanthers50th": { + "name": "F-4EJ - JASDF - 87-8312 - 3WG 50th Anniversary by Fish", + "countries": "All" + }, + "rs68-517_sea_526tfs": { + "name": "F-4E - USAF - RS68-517 - SEA Wrap Around - 526th TFS", + "countries": "All" + }, + "thunderbird3": { + "name": "F-4E - USAF - THUNDERBIRD 3", + "countries": "All" + }, + "ca68-426_h2_163tfg": { + "name": "F-4E - USAF - CA68-426 - Hill Two - 163rd TFG", + "countries": "All" + }, + "iaf-kurnass-175-69sqn": { + "name": "F-4E - IAF - Kurnass 175 - 69 SQN", + "countries": "All" + }, + "37+45_n90_jg74": { + "name": "F-4F - 37+45 - Norm 90 - JG 74 Moelders", + "countries": "All" + }, + "ca69-382_h2_163tfg": { + "name": "F-4E - USAF - CA69-382 - Hill Two - 163rd TFG", + "countries": "All" + }, + "jasdf-87-8312-3wg": { + "name": "F-4EJ - JASDF - 87-8312 - 3WG by Fish", + "countries": "All" + }, + "thunderbird6": { + "name": "F-4E - USAF - THUNDERBIRD 6", + "countries": "All" + }, + "jasdf-57-8367-301st": { + "name": "F-4EJ - JASDF - 57-8367 - Grey - 301st", + "countries": "All" + }, + "jasdf-67-8380": { + "name": "F-4EJ - JASDF - 67-8380 by Mach3DS", + "countries": "All" + }, + "nj68-357_h1_141tfs": { + "name": "F-4E - USAF - NJ68-357 - Hill Two - 141st TFS Tigers", + "countries": "All" + }, + "os68-349_seaw_36tfs": { + "name": "F-4E - USAF - OS68-349 - SEA - 36th TFS The Flying Fiends", + "countries": "All" + }, + "jasdf-07-8428": { + "name": "F-4EJ - JASDF - 07-8428 - Final Year White by Mach3DS", + "countries": "All" + }, + "tuaf-77-0288-h2-70thnato": { + "name": "F-4E - TuAF - 77-0288 - Hill Two - NATO 70th by Fish", + "countries": "All" + }, + "wa66-376_e1_57ttw": { + "name": "F-4E - USAF - WA66-376 - Euro One - 57th Tactical Training Wing", + "countries": "All" + }, + "jasdf-87-8409-adtw-gifuab2017": { + "name": "F-4EJ - JASDF - 87-8409 - ADTW 2017 Digtial Green by Fish", + "countries": "All" + }, + "thunderbird1": { + "name": "F-4E - USAF - THUNDERBIRD 1", + "countries": "All" + }, + "38+13_pp_wtd61": { + "name": "F-4F - 38+13 - Phantom Pharewell - WTD61 - 2013", + "countries": "All" + }, + "rokaf-80728-h2-153fs": { + "name": "F-4E - ROKAF - 78728 - Hill Two - 153rd FS", + "countries": "All" + }, + "37+49_n81a_jg73": { + "name": "F-4F - 37+49 - Norm 81 A - JaboG 35 - GAFTIC 1985", + "countries": "All" + }, + "my68-328_e1_68fs": { + "name": "F-4E - USAF - MY68-328 - Euro One - 68th FS Lightning Lancers", + "countries": "All" + }, + "tuaf-77-1053-h2_korsanlar": { + "name": "F-4E - TuAF - 77-1053 - Hill Two - Korsanlar by Aqil", + "countries": "All" + }, + "thunderbird5": { + "name": "F-4E - USAF - THUNDERBIRD 5", + "countries": "All" + }, + "38+10_n72_jg71": { + "name": "F-4F - 38+10 - Norm 72 - JG 71 - 2013", + "countries": "All" + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAP" + ] + }, + { + "items": [ + { + "name": "2x Mk-83 - 1000lb GP Bomb LD (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "3x Mk-83 - 1000lb GP Bomb LD (MER) Ripple", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-83*4, Mk-83*3 (Ripple), Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-83*4, Mk-83*3 (Ripple), Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "3x AGM-65A - Maverick A (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65A*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65A*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD: AGM-45A*4, Aim-7E2*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD: AGM-45A*4, Aim-7E2*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*6, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*6, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "1x LAU-68 pod - 7 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos (TER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*2, LAU-68 7x .75, M156 WP*2, Aim-7E2*3, Aim-9P*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*2, LAU-68 7x .75, M156 WP*2, Aim-7E2*3, Aim-9P*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9M", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9M*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9M*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "{HB_F4E_WALLEYE_I}", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-62 Walleye I*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-62 Walleye I*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "SEAD + GUIDED: AGM-45A*2, GBU-12*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + GUIDED: AGM-45A*2, GBU-12*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-65A - Maverick A (TV Guided) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, AGM-65A*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, AGM-65A*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "2x AGM-65B - Maverick B (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65B*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65B*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-12*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-12*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6x Mk-82 Snakeye - 500lb GP Bomb HD (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-82 Snakeye - 500lb GP Bomb HD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 Snakeye*24, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-82 Snakeye*24, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x GBU-12 - 500lb Laser Guided Bomb (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "GUIDED: GBU-12*6, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-12*6, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9L*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "2x AGM-65A - Maverick A (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65A*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65A*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + ROCKETS: SUU-23*2, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*9, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "_GUNPOD + ROCKETS: SUU-23*2, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*9, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "2x AGM-65B - Maverick B (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65B*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65B*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER: Mk-20*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: Mk-20*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x LAU-68 pod - 7 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*3, LAU-68 7x 2.75 FFAR, MK-5 HEAT*6, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*3, LAU-68 7x 2.75 FFAR, MK-5 HEAT*6, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "1x LAU-68 pod - 7 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*9, LAU-68 7x 2.75 FFAR, MK-5 HEAT*2, Aim-7E2*4, AIM-9L*4, ALE-40 (30-60)*1", + "name": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*9, LAU-68 7x 2.75 FFAR, MK-5 HEAT*2, Aim-7E2*4, AIM-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A MEDIUM RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A MEDIUM RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "6x Mk-82 - 500lb GP Bomb LD (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "{2x Mk-82 SWA}", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "IRON: Mk-82 (LD)*18, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: Mk-82 (LD)*18, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-24*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-24*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-82 Snakeye - 500lb GP Bomb HD (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-82 Snakeye - 500lb GP Bomb HD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 Snakeye*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "IRON: Mk-82 Snakeye*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "SEAD: AGM-45A*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 370 Gal*2", + "name": "SEAD: AGM-45A*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 370 Gal*2", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "6x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (MER)", + "quantity": 1 + }, + { + "name": "3x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD: SUU-23*3, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "_GUNPOD: SUU-23*3, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 6 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye I - Guided Weapon Mk 1 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-10*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-10*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos (MER)", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*5, SUU-23*2, Aim-7E2*4, ALE-40 (30-60)", + "name": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*5, SUU-23*2, Aim-7E2*4, ALE-40 (30-60)", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x CBU-87 - 202 x CEM Cluster Bomb (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-87*8, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: CBU-87*8, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "CBU-52B - 220 x HE/Frag bomblets", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*4, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: CBU-52B*4, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "2x AGM-65D - Maverick D (IIR ASM) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65D*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65D*4, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-65D - Maverick D (IIR ASM) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, AGM-65D*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, AGM-65D*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-87*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: CBU-87*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x CBU-87 - 202 x CEM Cluster Bomb (TER)", + "quantity": 2 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-87*14, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-87*14, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M", + "quantity": 4 + }, + { + "name": "AIM-7M", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 2 + } + ], + "enabled": true, + "code": "A2A SHORT RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "A2A SHORT RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x AGM-65D - Maverick D (IIR ASM) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65D*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65D*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD: SUU-23*2, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD: SUU-23*2, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*15, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*15, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye II - Guided Weapon Mk 5 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*7, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "ROCKETS: LAU-3 19x 2.75 FFAR, Mk-5 HEAT*7, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M", + "quantity": 4 + }, + { + "name": "AIM-7M", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A MEDIUM RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A MEDIUM RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A LONG RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A LONG RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x GBU-12 - 500lb Laser Guided Bomb (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Fuel Tank 370 GAL*2", + "name": "GUIDED: GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x M117 - 750lb GP Bomb LD (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x M117 - 750lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: M-117*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: M-117*12, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6x Mk-82 - 500lb GP Bomb LD (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "{2x Mk-82 SWA}", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "IRON: Mk-82 (LD)*12, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: Mk-82 (LD)*12, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-65B - Maverick B (TV Guided) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, AGM-65B*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, AGM-65B*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 8 + } + ], + "enabled": true, + "code": "_Z_Clean", + "name": "_Z_Clean", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x GBU-12 - 500lb Laser Guided Bomb (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-10*2, GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-10*2, GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "2x AGM-65D - Maverick D (IIR ASM) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65D*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65D*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "6x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (MER)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CONRETE PIERCING: BLU-107/B Durandal*6, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "CONRETE PIERCING: BLU-107/B Durandal*6, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "2x CBU-52B - 220 x HE/Frag bomblets (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: CBU-52B*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "SUU-23", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + ROCKETS: SUU-23*1, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*4, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "_GUNPOD + ROCKETS: SUU-23*1, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*4, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-10*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-10*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A LONG RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A LONG RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A ECM: Aim-7E*3, Aim-9J*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A ECM: Aim-7E*3, Aim-9J*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A LONG RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A LONG RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9P*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9P*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x GBU-12 - 500lb Laser Guided Bomb (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-24*2, GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-24*2, GBU-12*4, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "3x Mk-83 - 1000lb GP Bomb LD (MER) Ripple", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x Mk-83 - 1000lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-83*6, Mk-83*3 (Ripple), Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "IRON: Mk-83*6, Mk-83*3 (Ripple), Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*2, SUU-23*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*2, SUU-23*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60), Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: Mk-20*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: Mk-20*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 2 + } + ], + "enabled": true, + "code": "A2A SHORT RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "A2A SHORT RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + } + ], + "enabled": true, + "code": "IRON: Mk-84*3, Mk-82 (LD)*4, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-84*3, Mk-82 (LD)*4, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + IRON: SUU-23*2, Mk-82 (LD)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD + IRON: SUU-23*2, Mk-82 (LD)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A MEDIUM RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A MEDIUM RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fl. Tank 370 GAL*2", + "name": "GUIDED: GBU-8 HOBOS*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "M117 - 750lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x M117 - 750lb GP Bomb LD (TER)", + "quantity": 2 + } + ], + "enabled": true, + "code": "IRON: M-117*8, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: M-117*8, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6x Mk-82 Snakeye - 500lb GP Bomb HD (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 Snakeye*18, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-82 Snakeye*18, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye II - Guided Weapon Mk 5 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye II - Guided Weapon Mk 5 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-10*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye II*2, GBU-10*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AGM-12A Bullpup MCLOS ASM (LAU-34)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-12A Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-12A Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "3x LAU-68 pod - 7 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + ROCKETS: SUU-23*3, LAU-68 7x 2.75 FFAR, Mk-5 HEAT*6, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "_GUNPOD + ROCKETS: SUU-23*3, LAU-68 7x 2.75 FFAR, Mk-5 HEAT*6, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, GBU-8 HOBOS*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, GBU-8 HOBOS*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 3x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "CONRETE PIERCING: BLU-107/B Durandal*12, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) AGM-65A - Maverick A (TV Guided) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65A*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65A*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-24*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-24*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + } + ], + "enabled": true, + "code": "IRON: Mk-84*2, Mk-82 (LD)*4, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: Mk-84*2, Mk-82 (LD)*4, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9JULI Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9Juli*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9Juli*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 8 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x M117 - 750lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: M-117*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "IRON: M-117*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9B Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9B*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9B*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AGM-12B Bullpup MCLOS ASM (LAU-34)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-12B Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-12B Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AGM-62 Walleye I - Guided Weapon Mk 1 (TV Guided)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, AGM-62 Walleye I*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, AGM-62 Walleye I*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-84*2, Mk-82 (LD)*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "IRON: Mk-84*2, Mk-82 (LD)*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-12*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-12*2, Aim-7E2*3, Aim-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "Captive AIM-9M for ACM", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (Empty)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A TRAINING: Captive Aim-9M for ACM*2, ALQ-131 ECM*1, ALE-40 (empty)*1 ", + "name": "_A2A TRAINING: Captive Aim-9M for ACM*2, ALQ-131 ECM*1, ALE-40 (empty)*1 ", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Mk-84 - 2000lb GP Bomb LD", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-84*3, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-84*3, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "", + "quantity": 6 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 370 gallons*2", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 370 gallons*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x GBU-12 - 500lb Laser Guided Bomb (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-12*4, CBU-87*4, Aim-7E2*3, Aim-9L, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "GUIDED: GBU-12*4, CBU-87*4, Aim-7E2*3, Aim-9L, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 2 + } + ], + "enabled": true, + "code": "A2A SHORT RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "A2A SHORT RANGE: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos", + "quantity": 2 + }, + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "1x LAU-68 pod - 7 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos (TER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*2, LAU-68 7x .75, M156 WP*2, Aim-7E2*3, Aim-9P*4, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 19x 2.75 FFAR, M156 WP*2, LAU-68 7x .75, M156 WP*2, Aim-7E2*3, Aim-9P*4, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "2x Mk-83 - 1000lb GP Bomb LD (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "3x Mk-83 - 1000lb GP Bomb LD (MER) Ripple", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-83 - 1000lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 3 + } + ], + "enabled": true, + "code": "IRON: Mk-83*10, Mk-83*3 (Ripple), Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1,", + "name": "IRON: Mk-83*10, Mk-83*3 (Ripple), Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1,", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-10 - 2000lb Laser Guided Bomb", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-10*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-10*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) AGM-65B - Maverick B (TV Guided) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65B*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65B*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 2 + } + ], + "enabled": true, + "code": "A2A SHORT RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "A2A SHORT RANGE: Aim-7F*4, Aim-9P*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x AGM-65B - Maverick B (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65B*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65B*6, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "6x Mk-82 - 500lb GP Bomb LD (MER)", + "quantity": 3 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 (LD)*24, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: Mk-82 (LD)*24, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A ECM: Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A ECM: Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye II - Guided Weapon Mk 5 (TV Guided)", + "quantity": 2 + } + ], + "enabled": true, + "code": "SEAD + ATGM: AGM-45A*2, AGM-62 Walleye II*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + ATGM: AGM-45A*2, AGM-62 Walleye II*2, Aim-7F*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-82 - 500lb GP Bomb LD (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 (LD)*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "IRON: Mk-82 (LD)*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M", + "quantity": 4 + }, + { + "name": "AIM-7M", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A LONG RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A LONG RANGE: Aim-7M*4, Aim-9M*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-82 Snakeye - 500lb GP Bomb HD (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 Snakeye - 500lb GP Bomb HD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: Mk-82 Snakeye*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "IRON: Mk-82 Snakeye*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) AGM-65D - Maverick D (IIR ASM) (LAU-117)(Special Weapons Adapter) ", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-65D*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-65D*2, GBU-24*2, Aim-7E2*3, AIM-9L*4, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "2x AGM-65A - Maverick A (TV Guided) (LAU-88)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-65A*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-65A*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 Snakeye - 500lb GP Bomb HD (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + IRON: SUU-23*2, Mk-82 Snakeye*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD + IRON: SUU-23*2, Mk-82 Snakeye*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-52B - 220 x HE/Frag bomblets (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "2x CBU-52B - 220 x HE/Frag bomblets (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*10, Aim-7E2*4, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-52B*10, Aim-7E2*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x CBU-87 - 202 x CEM Cluster Bomb (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + Cluster: SUU-23*2, CBU-87*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD + Cluster: SUU-23*2, CBU-87*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-52B - 220 x HE/Frag bomblets (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "(Special Weapons Adapter) 2x CBU-52B - 220 x HE/Frag bomblets (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*10, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-52B*10, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts M156, Wht Phos (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*6, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "name": "_AFAC: LAU-3 pod - 19x2.75 FFAR, M156 WP*6, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60), Sgt Fl 600 GAL*1", + "roles": [ + "FAC-A", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 - 500lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER + IRON: Mk-20*6, Mk-82 (LD)*4 Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER + IRON: Mk-20*6, Mk-82 (LD)*4 Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye I - Guided Weapon Mk 1 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-12*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AGM-62 Walleye II - Guided Weapon Mk 5 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-62 Walleye II*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-62 Walleye II*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-8 HOBOS*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-8 HOBOS*4, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD: AGM-45A*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 370 Gal*2", + "name": "SEAD: AGM-45A*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 370 Gal*2", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AGM-45A Shrike ARM (LAU-34)", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "SEAD: AGM-45A*4, Aim-7E2*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1, Sargent Fl. Fuel Tank 370 Gal*2", + "name": "SEAD: AGM-45A*4, Aim-7E2*3, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1, Sargent Fl. Fuel Tank 370 Gal*2", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9M", + "quantity": 4 + }, + { + "name": "AIM-7M", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A ECM: Aim-7M*3, Aim-9M*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A ECM: Aim-7M*3, Aim-9M*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 2 + }, + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A HEATERS: Aim-9J*4, ALE-40 (30-60)*1", + "name": "_A2A HEATERS: Aim-9J*4, ALE-40 (30-60)*1", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "3x BLU-107/B Durandal - 219kg Concrete Piercing Chute Retarded Bomb w/Booster (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "CONRETE PIERCING: BLU-107/B Durandal*6, Aim-7E2*3, ALE-40 (30-60)*1", + "name": "CONRETE PIERCING: BLU-107/B Durandal*6, Aim-7E2*3, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9J Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A MEDIUM RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A MEDIUM RANGE: Aim-7E*4, Aim-9J*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-62 Walleye I - Guided Weapon Mk 1 (TV Guided)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "ATGM + GUIDED: AGM-62 Walleye I*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "GBU-24B/B Paveway III - 2000lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "AN/AVQ-23 Pave Spike (Fast/Smart Track) - Targeting Pod Rack", + "quantity": 1 + }, + { + "name": "GBU-8 HOBOS - 2000 lb TV Guided Bomb", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "GUIDED: GBU-8 HOBOS*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "name": "GUIDED: GBU-8 HOBOS*2, GBU-24*2, Aim-7E2*3, AN/AVQ-23 Pave Spike*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x CBU-52B - 220 x HE/Frag bomblets (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + Cluster: SUU-23*2, CBU-52B*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD + Cluster: SUU-23*2, CBU-52B*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-52B - 220 x HE/Frag bomblets (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "CLUSTER: CBU-52B*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "6x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (MER)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: Mk-20*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: Mk-20*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "CBU-87 - 202 x CEM Cluster Bomb", + "quantity": 2 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-87*12, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER: CBU-87*12, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "CBU-52B - 220 x HE/Frag bomblets", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "2x CBU-52B - 220 x HE/Frag bomblets (TER)", + "quantity": 2 + }, + { + "name": "", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-52B*6, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "CLUSTER: CBU-52B*6, Aim-7E2*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "4x CBU-87 - 202 x CEM Cluster Bomb (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-87*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-87*10, Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "6x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-82 Snakeye - 500lb GP Bomb HD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "CLUSTER + IRON: Mk-20*6, Mk-82 Snakeye*4 Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "CLUSTER + IRON: Mk-20*6, Mk-82 Snakeye*4 Aim-7E2*3, Aim-9L*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "SUU-23", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "(Special Weapons Adapter) 2x Mk-20 Rockeye - 490lbs CBU, 247 x HEAT Bomblets (TER)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + Cluster: SUU-23*2, Mk-20*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "name": "_GUNPOD + Cluster: SUU-23*2, Mk-20*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "3x LAU-3 pod - 19 x 2.75\" FFAR, UnGd Rkts Mk5, HEAT (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "SUU-23", + "quantity": 1 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + } + ], + "enabled": true, + "code": "_GUNPOD + ROCKETS: SUU-23*1, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "_GUNPOD + ROCKETS: SUU-23*1, LAU-3 19x 2.75 FFAR, Mk-5 HEAT*6, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9P Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "A2A ECM: Aim-7F*3, Aim-9P*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "name": "A2A ECM: Aim-7F*3, Aim-9P*4, ALQ-131 ECM*1, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "GBU-12 - 500lb Laser Guided Bomb", + "quantity": 2 + }, + { + "name": "(Special Weapons Adapter) AGM-45A Shrike ARM (LAU-34)", + "quantity": 2 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7F", + "quantity": 3 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + } + ], + "enabled": true, + "code": "SEAD + GUIDED: AGM-45A*2, GBU-12*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "name": "SEAD + GUIDED: AGM-45A*2, GBU-12*2, Aim-7F*3, Aim-9L*4, ALQ-131*1, ALE-40 (30-60)*1, Sargent Fl. Fuel Tank 600 Gal*1", + "roles": [ + "SEAD", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A Refueling Practice: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2 empty", + "name": "_A2A Refueling Practice: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 370 GAL*2 empty", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_A2A Refueling Practice: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2 empty", + "name": "_A2A Refueling Practice: Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL*1, Sargent Fletcher Fuel Tank 370 GAL*2 empty", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP" + ] + }, + { + "items": [ + { + "name": "3x M117 - 750lb GP Bomb LD (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "5x M117 - 750lb GP Bomb LD (MER)", + "quantity": 1 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "3x M117 - 750lb GP Bomb LD (TER)", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "IRON: M-117*17, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "name": "IRON: M-117*17, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + }, + { + "name": "AGM-12C Bullpup - MCLOS missile", + "quantity": 2 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-12C Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-12C Bullpup*2, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 3 + }, + { + "name": "ALQ-131 - ECM Pod Rack", + "quantity": 1 + }, + { + "name": "AGM-12C Bullpup - MCLOS missile", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "", + "quantity": 4 + } + ], + "enabled": true, + "code": "ATGM: AGM-12C Bullpup*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "name": "ATGM: AGM-12C Bullpup*4, Aim-7E2*3, ALQ-131 ECM*1, ALE-40 (30-60)*1, Srgt Fletcher Fl. Tank 370 GAL*2", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-1A/A x 27x19 (513) BLU-4B Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "1x CBU-1A/A x 27x19 (513) BLU-4B Bomblets, HE (MER)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-1A/A (BLU-4B*513)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-1A/A (BLU-4B*513)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-2/A x 19x19 (361) BLU-3 Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "1x CBU-2/A x 19x19 (361) BLU-3 Bomblets, HE (MER)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-2A/A (BLU-3*361)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-2A/A (BLU-3*361)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-2B/A x 22x19 (418) BLU-3B Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "1x CBU-2B/A x 22x19 (418) BLU-3B Bomblets, HE (MER)", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-2B/A (BLU-3B*418)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "name": "CLUSTER: CBU-2B/A (BLU-3B*418)*5, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-1A/A x 27x19 (513) BLU-4B Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-1A/A (BLU-4B*513)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "name": "CLUSTER: CBU-1A/A (BLU-4B*513)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-2/A x 19x19 (361) BLU-3 Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-2A/A (BLU-3*361)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "name": "CLUSTER: CBU-2A/A (BLU-3*361)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2x CBU-2B/A x 22x19 (418) BLU-3B Bomblets, HE (MER)", + "quantity": 2 + }, + { + "name": "AIM-7E-2 Sparrow Semi-Active Radar", + "quantity": 4 + }, + { + "name": "ALE-40 Dispensers (30 Flares + 60 Chaff)", + "quantity": 1 + }, + { + "name": "AIM-9L Sidewinder IR AAM", + "quantity": 4 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + } + ], + "enabled": true, + "code": "CLUSTER: CBU-2B/A (BLU-3B*418)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "name": "CLUSTER: CBU-2B/A (BLU-3B*418)*4, Aim-7E2*4, Aim-9L*4, ALE-40 (30-60)*1, Sargent Fletcher Fuel Tank 600 GAL", + "roles": [ + "CAS", + "Strike", + "Strike", + "Runway Attack", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 6 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons", + "quantity": 2 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1, Sargent Fletcher Fuel Tank 370 gallons*2", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1, Sargent Fletcher Fuel Tank 370 gallons*2", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "Sargent Fletcher Fuel Tank 370 gallons (empty)", + "quantity": 2 + }, + { + "name": "", + "quantity": 6 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 370 gallons*2 empty", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 370 gallons*2 empty", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 8 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons (empty)", + "quantity": 1 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1 empty", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1 empty", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + }, + { + "items": [ + { + "name": "", + "quantity": 6 + }, + { + "name": "Sargent Fletcher Fuel Tank 600 gallons (empty)", + "quantity": 1 + }, + { + "name": "Sargent Fletcher Fuel Tank 370 gallons (empty)", + "quantity": 2 + } + ], + "enabled": true, + "code": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1, Sargent Fletcher Fuel Tank 370 gallons*2 empty", + "name": "_Z_Clean, Sargent Fletcher Fuel Tank 600 gallons*1, Sargent Fletcher Fuel Tank 370 gallons*2 empty", + "roles": [ + "CAP", + "Escort", + "CAP", + "CAP", + "CAS", + "Strike", + "Strike", + "Runway Attack", + "FAC-A", + "Antiship Strike", + "Reconnaissance", + "SEAD" + ] + } + ], + "filename": "f-4.png", + "description": "2 Jet engine, swept wing, 2 crew. Phantom", + "abilities": "Drogue AAR", + "canTargetPoint": true, + "canRearm": false, + "length": 58.3 + }, + "Falcon_Gyrocopter": { + "name": "Falcon_Gyrocopter", + "coalition": "", + "era": "", + "label": "FALCON_GYROCOPTER", + "shortLabel": "FALCON_GYROCOPTER", + "type": "Falcon_Gyrocopter", + "enabled": false, + "liveries": {}, + "category": "aircraft" + }, + "F-5E-3_FC": { + "name": "F-5E-3_FC", + "coalition": "", + "era": "", + "label": "F-5E-3", + "shortLabel": "F-5E-3", + "type": "F_5E_3_FC", + "enabled": false, + "liveries": {}, + "category": "aircraft" + }, + "F-86F_FC": { + "name": "F-86F_FC", + "coalition": "", + "era": "", + "label": "F-86F SABRE", + "shortLabel": "F-86F SABRE", + "type": "F_86F_FC", + "enabled": false, + "liveries": {}, + "category": "aircraft" + }, + "MiG-15bis_FC": { + "name": "MiG-15bis_FC", + "coalition": "", + "era": "", + "label": "MIG-15BIS", + "shortLabel": "MIG-15BIS", + "type": "MiG_15bis_FC", + "enabled": false, + "liveries": {}, + "category": "aircraft" + }, + "Mirage-F1AD": { + "name": "Mirage-F1AD", + "coalition": "", + "era": "", + "label": "MIRAGE-F1AD", + "shortLabel": "MIRAGE-F1AD", + "type": "Mirage_F1AD", + "enabled": false, + "liveries": {}, + "category": "aircraft" + }, + "Mirage-F1AZ": { + "name": "Mirage-F1AZ", + "coalition": "", + "era": "", + "label": "MIRAGE-F1AZ", + "shortLabel": "MIRAGE-F1AZ", + "type": "Mirage_F1AZ", + "enabled": false, + "liveries": {}, + "category": "aircraft" + } +} \ No newline at end of file diff --git a/scripts/python/API/databases/groundunitdatabase.json b/scripts/python/API/databases/groundunitdatabase.json new file mode 100644 index 00000000..23a6a6c1 --- /dev/null +++ b/scripts/python/API/databases/groundunitdatabase.json @@ -0,0 +1,13423 @@ +{ + "1L13 EWR": { + "name": "1L13 EWR", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Box Spring 1L13 EWR", + "shortLabel": "Box spring", + "filename": "", + "type": "Radar (EWR)", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 300000, + "engagementRange": 0, + "description": "Box Spring 1L13 early warning radar built on the back of a trailer", + "abilities": "EWR, Radar, Fixed", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-ewr" + }, + "2B11 mortar": { + "name": "2B11 mortar", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "2B11 mortar", + "shortLabel": "2B11 mortar", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 7000, + "engagementRange": 7000, + "description": "120mm mortar. Fixed. 30m min range, 7km max.", + "abilities": "Indirect Fire", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1, + "muzzleVelocity": 325, + "aimTime": 300, + "shotsToFire": 2, + "markerFile": "groundunit-artillery", + "tags": "120mm", + "indirectFire": true, + "shotsBaseInterval": 10, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "2S6 Tunguska": { + "name": "2S6 Tunguska", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-19 Tunguska", + "shortLabel": "19", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 18000, + "engagementRange": 8000, + "description": "SA-19 Tunguska 2K22 optical SAM. Tracked radar 30 mm AAA gun with optically guided (SACLOS) missiles. Range/alt max: 8km, 14,000 ft.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 1000, + "barrelHeight": 2, + "aimTime": 7, + "shotsToFire": 10, + "cost": null, + "tags": "Optical, Radar, CA", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "", + "canAAA": true + }, + "55G6 EWR": { + "name": "55G6 EWR", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Tall Rack 55G6 EWR", + "shortLabel": "Tall Rack", + "filename": "", + "type": "Radar (EWR)", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "Tall rack 55G6 early warning radar built on the back of a trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-ewr" + }, + "5p73 s-125 ln": { + "name": "5p73 s-125 ln", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-3 Launcher", + "shortLabel": "5p73 s-125 ln", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 18000, + "description": "4 SA-3 missiles on a static emplacement. Requires grouping with SA-3 components", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "", + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-3 SAM Battery" + }, + "AAV7": { + "name": "AAV7", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "AAV7", + "shortLabel": "AAV7", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Amphibious assault vehicle 7. Tracked. Turret mounted 12.7mm machine gun and 40mm grenade launcher.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": false, + "canRearm": false, + "barrelHeight": 3, + "muzzleVelocity": 900, + "aimTime": 10, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc" + }, + "ATMZ-5": { + "name": "ATMZ-5", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ATMZ-5", + "shortLabel": "ATMZ-5 Fuel", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler truck. Wheeled", + "abilities": "Refuel", + "canTargetPoint": false, + "canRearm": false, + "tags": "Military, Refueling, CA", + "markerFile": "groundunit-truck" + }, + "ATZ-10": { + "name": "ATZ-10", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ATZ-10", + "shortLabel": "ATZ-10 Fuel", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler truck. Wheeled", + "abilities": "Refuel", + "canTargetPoint": false, + "canRearm": false, + "tags": "Military, Refueling, FARP", + "markerFile": "groundunit-truck" + }, + "BMD-1": { + "name": "BMD-1", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BMD-1", + "shortLabel": "BMD-1", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "iran - camo": { + "name": "IRAN - camo", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "barrelHeight": 1.95, + "muzzleVelocity": 665, + "acquisitionRange": 3500, + "engagementRange": 1000, + "description": "BMD-1 IFV. Tracked. Amphibious. 73 mm gun, AT-3 Sagger wire guided missile.", + "abilities": "Combined arms, Amphibious, Transport", + "canTargetPoint": true, + "canRearm": false, + "shotsToFire": 5, + "aimTime": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "BMP-1": { + "name": "BMP-1", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BMP-1", + "shortLabel": "BMP-1", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 3500, + "engagementRange": 1000, + "description": "BMP-1 IFV. Tracked. Amphibious. 73 mm gun, AT-3 Sagger wire guided missile.", + "abilities": "Combined arms, Amphibious, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1.95, + "muzzleVelocity": 665, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "BMP-2": { + "name": "BMP-2", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "BMP-2", + "shortLabel": "BMP-2", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "barrelHeight": 1.95, + "muzzleVelocity": 950, + "acquisitionRange": 3500, + "engagementRange": 1000, + "description": "BMP-2 IFV. Tracked. Amphibious. 30 mm gun, AT-5 Spandrel wire guided missile.", + "abilities": "Combined arms, Amphibious, Transport, AA", + "canTargetPoint": true, + "canRearm": false, + "aimTime": 6, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "indirectFire": false, + "canAAA": true + }, + "BMP-3": { + "name": "BMP-3", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "BMP-3", + "shortLabel": "BMP-3", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "BMP-2 IFV. Tracked. Amphibious. 100 mm gun. 30 mm gun, AT-10 Stabber wire guided missile.", + "abilities": "Combined arms, Amphibious, Transport, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.3, + "muzzleVelocity": 1080, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "BRDM-2": { + "name": "BRDM-2", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BRDM-2", + "shortLabel": "BRDM-2", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "BRDM-2 light armour tactical vehicle. Wheeled. Amphibious. 14.5 mm gun.", + "abilities": "Combined arms, Amphibious, AA", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 1005, + "barrelHeight": 2.25, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 6, + "shotsBaseScatter": 10, + "alertnessTimeConstant": 4 + }, + "BTR-80": { + "name": "BTR-80", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "BTR-80", + "shortLabel": "BTR-80", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "light green spring": { + "name": "Light Green Spring", + "countries": "All" + }, + "light green winter": { + "name": "Light Green Winter", + "countries": "All" + }, + "light green summer": { + "name": "Light_Green_Summer", + "countries": "All" + }, + "military police autumn": { + "name": "Military Police Autumn", + "countries": "All" + }, + "military police winter": { + "name": "Military Police Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "military police summer": { + "name": "Military Police Summer", + "countries": "All" + }, + "green summer": { + "name": "Green_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "light green autumn": { + "name": "Light Green Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "green winter": { + "name": "Green_Winter", + "countries": "All" + }, + "green autumn": { + "name": "Green_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "green spring": { + "name": "Green_Spring", + "countries": "All" + }, + "military police spring": { + "name": "Military Police Spring", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "BTR 80 APC. Wheeled. Amphibious. 14.5 mm gun and 7.62 mm coax.", + "abilities": "Combined arms, Amphibious, Transport, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.2, + "muzzleVelocity": 900, + "aimTime": 6, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "BTR_D": { + "name": "BTR_D", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BTR_D", + "shortLabel": "BTR_D", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 5000, + "description": "BTR_D. Tracked. Amphibious. AT-5 Spandrel wire guided missile.", + "abilities": "Combined arms, Amphibious, Transport", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-apc" + }, + "Bunker": { + "name": "Bunker", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Bunker", + "shortLabel": "Bunker", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "Concrete bunker. Structure. Fixed Position. Light machine guns.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Challenger2": { + "name": "Challenger2", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Challenger 2", + "shortLabel": "Challenger 2", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm rifled main gun (APFSDS and HESH), 7.62 mm coax machine gun.", + "abilities": "Combined arms", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1.8, + "muzzleVelocity": 1050, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-tank", + "shotsBaseInterval": 6, + "targetingRange": 100, + "aimMethodRange": 3500, + "alertnessTimeConstant": 3, + "shotsBaseScatter": 5 + }, + "Cobra": { + "name": "Cobra", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "Otokar Cobra", + "shortLabel": "Cobra", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Armoured car, MRAP. Wheeled. Amphibious. 12.7 mm machine gun.", + "abilities": "Combined arms, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 6, + "shotsBaseScatter": 10, + "alertnessTimeConstant": 4, + "canAAA": false + }, + "Dog Ear radar": { + "name": "Dog Ear radar", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-13 Dog Ear", + "shortLabel": "Dog Ear", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 35000, + "engagementRange": 0, + "description": "9S80-1 Sborka. Tracked. Fire control Radar that can integrate with missile and gun systems.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Search Radar", + "markerFile": "groundunit-sam-radar" + }, + "GAZ-3307": { + "name": "GAZ-3307", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "GAZ-3307", + "shortLabel": "GAZ-3307", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian truck. Wheeled. Single axle", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "GAZ-3308": { + "name": "GAZ-3308", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "GAZ-3308", + "shortLabel": "GAZ-3308", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck. Wheeled. Single axle. Canvas covered cargo bay", + "abilities": "Rearm", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck" + }, + "GAZ-66": { + "name": "GAZ-66", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "GAZ-66", + "shortLabel": "GAZ-66", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck. Wheeled. Single axle. Open cargo bay", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck" + }, + "Gepard": { + "name": "Gepard", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Gepard", + "shortLabel": "Gepard", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "barrelHeight": 2.35, + "muzzleVelocity": 1440, + "acquisitionRange": 8000, + "engagementRange": 2000, + "description": "Gepard. Tracked. 35mm radar detection and guided guns.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "aimTime": 7, + "shotsToFire": 5, + "cost": null, + "tags": "Radar, CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "shotsBaseScatter": 5, + "targetingRange": 300, + "aimMethodRange": 6000, + "shotsBaseInterval": 15, + "alertnessTimeConstant": 15 + }, + "Grad-URAL": { + "name": "Grad-URAL", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BM-21 Grad", + "shortLabel": "Grad", + "filename": "", + "type": "Artillery", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 19000, + "description": "BM-21 Grad Wheeled. Multiple launch rocket system, 122mm rockets. 5 km min range, 18 km max.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery", + "tags": "122 mm, MLRS", + "indirectFire": true, + "shotsToFire": 2, + "shotsBaseInterval": 60, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10, + "aimTime": 120 + }, + "HEMTT TFFT": { + "name": "HEMTT TFFT", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "HEMTT TFFT", + "shortLabel": "HEMTT TFFT", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military Fire truck. Wheeled. ", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "Hawk SAM Battery": { + "name": "Hawk SAM Battery", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Hawk SAM Battery", + "shortLabel": "Hk", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 90000, + "engagementRange": 45000, + "description": "Hawk radar SAM site MIM-23. Range/alt max: 40 km, 60,000 ft. Min: 2km. HAWK stands for 'Homing all the way killer'.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "Hk" + }, + "Hawk cwar": { + "name": "Hawk cwar", + "coalition": "blue", + "era": "Early Cold War", + "category": "groundunit", + "label": "Hawk Continous Wave Acquisition Radar", + "shortLabel": "Hawk cwar", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 70000, + "engagementRange": 0, + "description": "Hawk site Aquisition Radar", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "Hawk ln": { + "name": "Hawk ln", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Hawk Launcher", + "shortLabel": "Hawk ln", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": ["UK"] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": ["SUI"] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": ["ABH", "NETH", "RSO", "RUS", "BEL", "ISR", "CAN", "SPN", "NOR", "TUR", "FRA", "UKR", "ITA", "GER", "GRG", "USA", "UK", "DEN"] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": ["SUI"] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": ["UK"] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": ["USA"] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": ["FIN"] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": ["UK"] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": ["FIN"] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": ["UK"] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": ["UK"] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": ["USA"] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": ["UK"] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": ["UK"] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": ["UK"] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": ["USA"] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": ["USA"] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": ["UK"] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": ["ARE"] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": ["SUI"] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": ["USA"] + }, + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": ["SUI"] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": ["FIN"] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": ["UK"] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": ["USA"] + } + }, + "acquisitionRange": 0, + "engagementRange": 45000, + "description": "Hawk site missile laucher. 3 missiles. Needs rest of site to fuction", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "Hawk SAM Battery" + }, + "Hawk pcp": { + "name": "Hawk pcp", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Hawk Platoon Command Post", + "shortLabel": "Hawk pcp", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Hawk site command post. Medium sized trailer.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk sr": { + "name": "Hawk sr", + "coalition": "blue", + "era": "Early Cold War", + "category": "groundunit", + "label": "Hawk Search Radar", + "shortLabel": "Hawk sr", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": ["UK"] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": ["SUI"] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": ["ABH", "NETH", "RSO", "RUS", "BEL", "ISR", "CAN", "SPN", "NOR", "TUR", "FRA", "UKR", "ITA", "GER", "GRG", "USA", "UK", "DEN"] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": ["SUI"] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": ["UK"] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": ["USA"] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": ["FIN"] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": ["UK"] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": ["FIN"] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": ["UK"] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": ["UK"] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": ["USA"] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": ["UK"] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": ["UK"] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": ["UK"] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": ["USA"] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": ["USA"] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": ["UK"] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": ["ARE"] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": ["SUI"] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": ["USA"] + }, + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": ["SUI"] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": ["FIN"] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": ["UK"] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": ["USA"] + } + }, + "acquisitionRange": 90000, + "engagementRange": 0, + "description": "Hawk site search Radar. Medium sized trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam-radar" + }, + "Hawk tr": { + "name": "Hawk tr", + "coalition": "blue", + "era": "Early Cold War", + "category": "groundunit", + "label": "Hawk Track Radar", + "shortLabel": "Hawk tr", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": ["UK"] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": ["SUI"] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": ["ABH", "NETH", "RSO", "RUS", "BEL", "ISR", "CAN", "SPN", "NOR", "TUR", "FRA", "UKR", "ITA", "GER", "GRG", "USA", "UK", "DEN"] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": ["SUI"] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": ["UK"] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": ["USA"] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": ["FIN"] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": ["UK"] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": ["FIN"] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": ["UK"] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": ["UK"] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": ["USA"] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": ["UK"] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": ["UK"] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": ["UK"] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": ["USA"] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": ["USA"] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": ["UK"] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": ["ARE"] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": ["SUI"] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": ["USA"] + }, + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": ["SUI"] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "AUS", + "GRG", + "USA", + "ISR", + "TUR", + "NOR", + "NETH", + "BEL", + "CAN", + "UKR", + "ITA", + "UK", + "DEN", + "ABH", + "RSO", + "RUS", + "FRA", + "SPN", + "GER", + "INS" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": ["FIN"] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": ["UK"] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": ["USA"] + } + }, + "acquisitionRange": 90000, + "engagementRange": 0, + "description": "Hawk site track Radar. Medium sized trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "Hummer": { + "name": "Hummer", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "HMMWV Unarmed", + "shortLabel": "HMMWV", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "M-1025 HMMWV (Humvee). Wheeled. Unarmed.", + "abilities": "Combined arms, Transport", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA, Unarmed", + "markerFile": "groundunit-tactical" + }, + "IKARUS Bus": { + "name": "IKARUS Bus", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "IKARUS Bus", + "shortLabel": "IKARUS Bus", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian Bus. Yellow. Bendy bus", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "Igla manpad INS": { + "name": "Igla manpad INS", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-18 Igla", + "shortLabel": "18", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "SA-18 Igla 9K38 IR MANPADS. Range/alt max: 5 km, 12,000 ft.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA, MANPADS", + "markerFile": "groundunit-sam" + }, + "Infantry AK": { + "name": "Infantry AK", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "AK-74 (Type 1)", + "shortLabel": "AK-74", + "filename": "", + "type": "Infantry", + "enabled": true, + "muzzleVelocity": 900, + "barrelHeight": 0.9, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Russian solider carrying AK-74.", + "abilities": "AA, Embark", + "canTargetPoint": true, + "canRearm": false, + "aimTime": 3, + "shotsToFire": 5, + "tags": "Russian type 1", + "markerFile": "groundunit-infantry", + "canAAA": true, + "aimMethodRange": 2000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "liveries": { + "insurgent 10": { + "name": "Insurgent 10", + "countries": "All" + }, + "insurgent 5": { + "name": "Insurgent 5", + "countries": "All" + }, + "insurgent caucasus 3": { + "name": "Insurgent caucasus 3", + "countries": "All" + }, + "insurgent caucasus 1": { + "name": "Insurgent Caucasus 1", + "countries": "All" + }, + "insurgent 12": { + "name": "Insurgent 12", + "countries": "All" + }, + "insurgent caucasus 2": { + "name": "Insurgent caucasus 2", + "countries": "All" + }, + "insurgent 11": { + "name": "Insurgent 11", + "countries": "All" + }, + "insurgent 9": { + "name": "Insurgent 9", + "countries": "All" + }, + "insurgent 3": { + "name": "Insurgent 3", + "countries": "All" + }, + "insurgent 2": { + "name": "Insurgent 2", + "countries": "All" + }, + "insurgent 4": { + "name": "Insurgent 4", + "countries": "All" + }, + "insurgent 6": { + "name": "Insurgent 6", + "countries": "All" + }, + "insurgent caucasus 4": { + "name": "Insurgent caucasus 4", + "countries": "All" + }, + "obl": { + "name": "OBL", + "countries": "All" + }, + "insurgent 8": { + "name": "Insurgent 8", + "countries": "All" + }, + "insurgent 7": { + "name": "Insurgent 7", + "countries": "All" + } + } + }, + "KAMAZ Truck": { + "name": "KAMAZ Truck", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "KAMAZ Truck", + "shortLabel": "KAMAZ Truck", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck, 2 axle, wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "Repair, FARP" + }, + "Kub 1S91 str": { + "name": "Kub 1S91 str", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-6 Straight flush", + "shortLabel": "Kub 1S91 str", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 70000, + "engagementRange": 0, + "description": "SA-6/Kub search and track Radar, tracked.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "Kub 2P25 ln": { + "name": "Kub 2P25 ln", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-6 Launcher", + "shortLabel": "Kub 2P25 ln", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 25000, + "description": "SA-6/Kub launcher. 3 missiles. Tracked. Needs rest of site to function", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-6 SAM Battery" + }, + "LAV-25": { + "name": "LAV-25", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "LAV-25 IFV", + "shortLabel": "LAV-25", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "green": { + "name": "green", + "countries": "All" + }, + "aus_summer": { + "name": "AUS_Summer", + "countries": "All" + }, + "sand": { + "name": "sand", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "aus_winter": { + "name": "AUS_Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "LAV-25 Infantry fighter vehicle. Wheeled. Amphibious. 25 mm gun , 2 x 7.62 mm machine gun.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.28, + "muzzleVelocity": 1100, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2800, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "LAZ Bus": { + "name": "LAZ Bus", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "LAZ Bus", + "shortLabel": "LAZ Bus", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian bus. Single Axle. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "Leclerc": { + "name": "Leclerc", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leclerc", + "shortLabel": "Leclerc", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore main gun (APFSDS and HEAT), 7.62 mm coax machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 500, + "barrelHeight": 1.6, + "shotsBaseInterval": 5, + "shotsToFire": 5, + "tags": "CA", + "aimTime": 5, + "aimMethodRange": 300, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3 + }, + "Leopard-2": { + "name": "Leopard-2", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leopard-2", + "shortLabel": "Leopard-2", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "neth_summer": { + "name": "NETH_summer", + "countries": "All" + }, + "spn_summer": { + "name": "SPN_Summer", + "countries": "All" + }, + "den_summer": { + "name": "DEN_summer", + "countries": "All" + }, + "can_winter": { + "name": "CAN_winter", + "countries": "All" + }, + "fin_spring": { + "name": "FIN_spring", + "countries": "All" + }, + "can_summer": { + "name": "CAN_summer", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_summer", + "countries": "All" + }, + "den_spring": { + "name": "DEN_spring", + "countries": "All" + }, + "neth_winter": { + "name": "NETH_winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_autumn", + "countries": "All" + }, + "de_desert_spring": { + "name": "spring", + "countries": "All" + }, + "de_desert_winter": { + "name": "winter", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_spring", + "countries": "All" + }, + "de_summer": { + "name": "summer", + "countries": "All" + }, + "spn_winter": { + "name": "SPN_Winter", + "countries": "All" + }, + "de_autumn": { + "name": "winter", + "countries": "All" + }, + "can_autumn": { + "name": "CAN_autumn", + "countries": "All" + }, + "fin_autumn": { + "name": "FIN_autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_winter", + "countries": "All" + }, + "desert_spring": { + "name": "Desert_spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "de_desert_summer": { + "name": "DE_Desert_summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "can_spring": { + "name": "CAN_spring", + "countries": "All" + }, + "desert_winter": { + "name": "Desert_winter", + "countries": "All" + }, + "fin_winter": { + "name": "FIN_winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "den_autumn": { + "name": "DEN_autumn", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "de_winter": { + "name": "winter", + "countries": "All" + }, + "desert_autumn": { + "name": "Desert_autumn", + "countries": "All" + }, + "fin_summer": { + "name": "FIN_summer", + "countries": "All" + }, + "de_spring": { + "name": "spring", + "countries": "All" + }, + "den_winter": { + "name": "DEN_winter", + "countries": "All" + }, + "desert_summer": { + "name": "Desert_summer", + "countries": "All" + }, + "de_desert_autumn": { + "name": "autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore main gun (APFSDS and HEAT), 7.62 mm machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 800, + "barrelHeight": 2.5, + "shotsBaseInterval": 6, + "shotsToFire": 5, + "tags": "CA", + "aimTime": 7, + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 4, + "canAAA": true + }, + "Leopard1A3": { + "name": "Leopard1A3", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leopard1A3", + "shortLabel": "Leopard1A3", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 105 mm rifled main gun (APDS and HEAT), 7.62 mm coaxial machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 560, + "barrelHeight": 2.49, + "shotsBaseInterval": 6, + "shotsToFire": 5, + "aimTime": 5, + "tags": "CA", + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "M 818": { + "name": "M 818", + "coalition": "blue", + "era": "Early Cold War", + "category": "groundunit", + "label": "M 818", + "shortLabel": "M 818", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Heavy utility truck. Wheeled. Used for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "CA, Power, Re-Arming, Repair" + }, + "M-1 Abrams": { + "name": "M-1 Abrams", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "M-1 Abrams", + "shortLabel": "M-1 Abrams", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "summer": { + "name": "Desert_summer", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore M256 main gun (APFSDS and HEAT), 7.62 mm machine gun.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 500, + "barrelHeight": 2.5, + "shotsBaseInterval": 7, + "shotsToFire": 5, + "aimTime": 5, + "aimMethodRange": 300, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3, + "canAAA": false + }, + "M-109": { + "name": "M-109", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M-109 Paladin", + "shortLabel": "M-109", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 22000, + "description": "M-109 Paladin. Tracked. Turreted self propelled 155mm howitzer. 30m min range, 22km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "155mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "M-113": { + "name": "M-113", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M-113", + "shortLabel": "M-113", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "desert_med": { + "name": "Desert", + "countries": "All" + }, + "spring_med": { + "name": "spring", + "countries": "All" + }, + "grc_winter_med": { + "name": "GRC_winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_summer", + "countries": "All" + }, + "summer_med": { + "name": "summer", + "countries": "All" + }, + "grc_autumn_med": { + "name": "GRC_autumn", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_autumn", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_spring", + "countries": "All" + }, + "green_med": { + "name": "green", + "countries": "All" + }, + "autumn_med": { + "name": "autumn", + "countries": "All" + }, + "grc_summer_med": { + "name": "GRC_summer", + "countries": "All" + }, + "green": { + "name": "green", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_winter", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "grc_spring_med": { + "name": "GRC_spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "winter_med": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "M-113. Tracked. Amphibious. 12.7 mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.8, + "muzzleVelocity": 950, + "aimTime": 2.5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "M-2 Bradley": { + "name": "M-2 Bradley", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "M-2A2 Bradley IFV", + "shortLabel": "M-2 Bradley", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 4000, + "engagementRange": 1000, + "description": "M-2A2 Bradley Infantry fighting vehicle. Tracked. Amphibious. 25 mm gun, 7.62 mm machine gun, BGM-71 TOW missile.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.44, + "muzzleVelocity": 1000, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3800, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "M-60": { + "name": "M-60", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M-60", + "shortLabel": "M-60", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + } + }, + "acquisitionRange": 4000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 105 mm rifled M68 main gun (APDS and HEAT), 7.62 mm machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 600, + "barrelHeight": 2.8, + "shotsBaseInterval": 12, + "shotsToFire": 5, + "aimTime": 5, + "tags": "CA", + "aimMethodRange": 2500, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "M1043 HMMWV Armament": { + "name": "M1043 HMMWV Armament", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "HMMWV .50 cal", + "shortLabel": "HMMWV M2", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "M1043 HMMWV (Humvee). Wheeled. 12.7 mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "aimTime": 3, + "shotsToFire": 5, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true, + "barrelHeight": 2, + "muzzleVelocity": 900 + }, + "M1045 HMMWV TOW": { + "name": "M1045 HMMWV TOW", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "HMMWV TOW", + "shortLabel": "HMMWV TOW", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "M1045 HMMWV (Humvee). Wheeled. BGM-71 TOW missile.", + "abilities": "Combined arms, Transport", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical" + }, + "M1097 Avenger": { + "name": "M1097 Avenger", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "M1097 Avenger", + "shortLabel": "97", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 5200, + "engagementRange": 4500, + "description": "M1097 Avenger IR SAM. Range/alt max: 5 km, 15,000 ft. Contains 8 x Stinger missiles.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "IR, CA", + "markerFile": "groundunit-sam" + }, + "M1126 Stryker ICV": { + "name": "M1126 Stryker ICV", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "Stryker MG", + "shortLabel": "Stryker MG", + "filename": "", + "type": "APC", + "enabled": true, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "M1126 Stryker. Wheeled. 12.7mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 3, + "muzzleVelocity": 900, + "aimTime": 2.7, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "M1128 Stryker MGS": { + "name": "M1128 Stryker MGS", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "M1128 Stryker MGS", + "shortLabel": "M1128 Stryker MGS", + "filename": "", + "type": "Tactical Vehicle", + "enabled": true, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "M1128 Stryker Mobile Gun System. Wheeled. 105 mm gun and 7.6mm machine gun.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 3, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "M1134 Stryker ATGM": { + "name": "M1134 Stryker ATGM", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "Stryker ATGM", + "shortLabel": "Stryker ATGM", + "filename": "", + "type": "APC", + "enabled": true, + "acquisitionRange": 4000, + "engagementRange": 3800, + "description": "M1134 Stryker. Wheeled. 7.62 mm machine gun. BGM-71 TOW missile.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "aimTime": 5, + "muzzleVelocity": 900, + "barrelHeight": 2.8, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "M48 Chaparral": { + "name": "M48 Chaparral", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M48 Chaparral", + "shortLabel": "48", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "usa_winter": { + "name": "USA_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "isr_autumn": { + "name": "ISR_Autumn", + "countries": "All" + }, + "usa_autumn": { + "name": "USA_Autumn", + "countries": "All" + }, + "usa_spring": { + "name": "USA_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "isr_winter": { + "name": "ISR_Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "isr_spring": { + "name": "ISR_Spring", + "countries": "All" + }, + "usa_summer": { + "name": "USA_Summer", + "countries": "All" + }, + "isr_summer": { + "name": "ISR_Summer", + "countries": "All" + } + }, + "acquisitionRange": 10000, + "engagementRange": 8500, + "description": "M48 Chaparral IR SAM. Range/alt max: 9 km, 13,000 ft. 4 x AIM 9 Sidewinder missiles.", + "abilities": "Combined arms,", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA", + "markerFile": "groundunit-sam" + }, + "M6 Linebacker": { + "name": "M6 Linebacker", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "M6 Linebacker", + "shortLabel": "M6", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 6000, + "engagementRange": 4000, + "description": "M6 Linebacker IR SAM. Range/alt max: 5 km, 15,000 ft. 4 x Stinger on M2 Bradley.", + "abilities": "Combined arms,", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA", + "markerFile": "groundunit-sam" + }, + "M978 HEMTT Tanker": { + "name": "M978 HEMTT Tanker", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M978 HEMTT Tanker", + "shortLabel": "M978 HEMTT Tanker", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Heavy Expanded Mobility Tactical Truck. Wheeled. Refueling for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Refueling, FARP" + }, + "MAZ-6303": { + "name": "MAZ-6303", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "MAZ-6303", + "shortLabel": "MAZ-6303", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Logistical Military Truck. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "MCV-80": { + "name": "MCV-80", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Warrior IFV MCV-80", + "shortLabel": "Warrior", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 4000, + "engagementRange": 1000, + "description": "Warrior MCV-80 Infantry Fighting Vehicle. Tracked. 30 mm gun and 7.62 mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.21, + "muzzleVelocity": 1100, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 3500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "MLRS": { + "name": "MLRS", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "M270", + "shortLabel": "M270", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 30000, + "description": "M270 Multiple Launch Rocket System. Tracked. Fires M26 270 mm DPICM rockets. Min range 10km, max 35km. Note cluster munition can be very laggy with many shots.", + "abilities": "Combined arms, Indirect Fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "270mm, MLRS, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 60, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "MTLB": { + "name": "MTLB", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "MT-LB", + "shortLabel": "MT-LB", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "MT-LB. Tracked. Amphibious. 7.62 mm machine gun.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.05, + "muzzleVelocity": 800, + "aimTime": 3, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "Marder": { + "name": "Marder", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Marder IFV", + "shortLabel": "Marder", + "filename": "", + "type": "APC", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Marder Infantry Fighting Vehicle. Tracked. Amphibious. 20 mm gun and 7.62 mm machine gun.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.82, + "muzzleVelocity": 900, + "aimTime": 9, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "Osa 9A33 ln": { + "name": "Osa 9A33 ln", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-8 Launcher", + "shortLabel": "Osa 9A33 ln", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 10300, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-8 SAM Battery" + }, + "Paratrooper AKS-74": { + "name": "Paratrooper AKS-74", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "AKS-74", + "shortLabel": "AKS-74", + "filename": "", + "type": "Infantry", + "enabled": true, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Russian paratrooper carrying AKS-74.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.9, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "Russian Para", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Paratrooper RPG-16": { + "name": "Paratrooper RPG-16", + "coalition": "red", + "era": "Modern", + "category": "groundunit", + "label": "RPG-16", + "shortLabel": "Para RPG-16", + "filename": "", + "type": "Infantry", + "enabled": true, + "acquisitionRange": 1500, + "engagementRange": 300, + "description": "Russian paratrooper carrying RPG-16.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.9, + "muzzleVelocity": 295, + "aimTime": 5, + "shotsToFire": 1, + "tags": "Russian Para", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 50, + "aimMethodRange": 750, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Patriot AMG": { + "name": "Patriot AMG", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "Patriot Antenna Mast Group", + "shortLabel": "Patriot AMG", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot ECS": { + "name": "Patriot ECS", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "Patriot Engagement Control Station", + "shortLabel": "Patriot ECS", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot EPP": { + "name": "Patriot EPP", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Patriot Electric Power Plant", + "shortLabel": "Patriot EPP", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot cp": { + "name": "Patriot cp", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Patriot Command Post", + "shortLabel": "Patriot cp", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot ln": { + "name": "Patriot ln", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Patriot Launcher", + "shortLabel": "Patriot ln", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 100000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "Patriot site" + }, + "Patriot site": { + "name": "Patriot site", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Patriot SAM Battery", + "shortLabel": "Pt", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 98000, + "description": "Patriot radar SAM site. Range/alt max: 150 km, 105,000 ft. Min: 5km. ", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "Pt" + }, + "Patriot str": { + "name": "Patriot str", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Patriot Search/Track Radar", + "shortLabel": "Patriot str", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "Predator GCS": { + "name": "Predator GCS", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Predator GCS", + "shortLabel": "Predator GCS", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "USAF Standard", + "countries": ["USA"] + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Ground Control Station", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "Predator TrojanSpirit": { + "name": "Predator TrojanSpirit", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Predator TrojanSpirit", + "shortLabel": "Predator TrojanSpirit", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Unmanned Aerial Vehicle (UAV) System", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "RLS_19J6": { + "name": "RLS_19J6", + "coalition": "Red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-5 Thin Shield", + "shortLabel": "RLS 19J6", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 150000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "RPC_5N62V": { + "name": "RPC_5N62V", + "coalition": "Red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-5 Square Pair", + "shortLabel": "RPC 5N62V", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "syria_spring": { + "name": "S-200_Radar_Syria_Spring", + "countries": "All" + }, + "desert_winter": { + "name": "S-200_Radar_Desert_Winter", + "countries": "All" + }, + "syria_autumn": { + "name": "S-200_Radar_Syria_Autumn", + "countries": "All" + }, + "syria_summer": { + "name": "S-200_Radar_Syria_Summer", + "countries": "All" + }, + "syria_winter": { + "name": "S-200_Radar_Syria_Winter", + "countries": "All" + }, + "cam_autumn": { + "name": "S-200_Radar_Cam_Autumn", + "countries": "All" + }, + "green_spring": { + "name": "S-200_Radar_Green_Spring", + "countries": "All" + }, + "cam_winter": { + "name": "S-200_Radar_Cam_Winter", + "countries": "All" + }, + "cam_spring": { + "name": "S-200_Radar_Cam_Spring", + "countries": "All" + }, + "desert_autumn": { + "name": "S-200_Radar_Desert_Autumn", + "countries": "All" + }, + "cam_summer": { + "name": "S-200_Radar_Cam_Summer", + "countries": "All" + }, + "desert_spring": { + "name": "S-200_Radar_Desert_Spring", + "countries": "All" + }, + "green_autumn": { + "name": "S-200_Radar_Green_Autumn", + "countries": "All" + }, + "green_winter": { + "name": "S-200_Radar_Green_Winter", + "countries": "All" + }, + "green_summer": { + "name": "S-200_Radar_Green_Summer", + "countries": "All" + }, + "desert_summer": { + "name": "S-200_Radar_Desert_Summer", + "countries": "All" + } + }, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Roland ADS": { + "name": "Roland ADS", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Roland ADS", + "shortLabel": "RO", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 12000, + "engagementRange": 8000, + "description": "Roland ADS radar and optical SAM. Range/alt max: 11 km, 18,000 ft. Tracked vehicle.", + "abilities": "Combined arms,", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar, Optical, CA", + "markerFile": "groundunit-sam" + }, + "Roland Radar": { + "name": "Roland Radar", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Roland Search Radar", + "shortLabel": "Roland Radar", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 35000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "S-200_Launcher": { + "name": "S-200_Launcher", + "coalition": "Red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-5 Launcher", + "shortLabel": "S-200 Launcher", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "syria_spring": { + "name": "S-200_Launcher_Syria_Spring", + "countries": "All" + }, + "desert_winter": { + "name": "S-200_Launcher_Desert_Winter", + "countries": "All" + }, + "syria_autumn": { + "name": "S-200_Launcher_Syria_Autumn", + "countries": "All" + }, + "syria_summer": { + "name": "S-200_Launcher_Syria_Summer", + "countries": "All" + }, + "syria_winter": { + "name": "S-200_Launcher_Syria_Winter", + "countries": "All" + }, + "cam_autumn": { + "name": "S-200_Cam_Autumn", + "countries": "All" + }, + "green_spring": { + "name": "S-200_Launcher_Green_Spring", + "countries": "All" + }, + "cam_winter": { + "name": "S-200_Launcher_Cam_Winter", + "countries": "All" + }, + "cam_spring": { + "name": "S-200_Launcher_Cam_Spring", + "countries": "All" + }, + "desert_autumn": { + "name": "S-200_Launcher_Desert_Autumn", + "countries": "All" + }, + "cam_summer": { + "name": "S-200_Launcher_Cam_Summer", + "countries": "All" + }, + "desert_spring": { + "name": "S-200_Launcher_Desert_Spring", + "countries": "All" + }, + "green_autumn": { + "name": "S-200_Launcher_Green_Autumn", + "countries": "All" + }, + "green_winter": { + "name": "S-200_Launcher_Green_Winter", + "countries": "All" + }, + "green_summer": { + "name": "S-200_Launcher_Green_Summer", + "countries": "All" + }, + "desert_summer": { + "name": "S-200_Launcher_Desert_Summer", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 255000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-5 SAM Battery" + }, + "S-300PS 40B6M tr": { + "name": "S-300PS 40B6M tr", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Tin Shield", + "shortLabel": "S-300PS 40B6M tr", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "S-300PS 40B6MD sr": { + "name": "S-300PS 40B6MD sr", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Clam Shell", + "shortLabel": "S-300PS 40B6MD sr", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 60000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "S-300PS 54K6 cp": { + "name": "S-300PS 54K6 cp", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Command Post", + "shortLabel": "S-300PS 54K6 cp", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 5P85C ln": { + "name": "S-300PS 5P85C ln", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Launcher", + "shortLabel": "S-300PS 5P85C ln", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 120000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "5P85C", + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-10 SAM Battery" + }, + "S-300PS 5P85D ln": { + "name": "S-300PS 5P85D ln", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Launcher", + "shortLabel": "S-300PS 5P85D ln", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 120000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "5P85D", + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-10 SAM Battery" + }, + "S-300PS 64H6E sr": { + "name": "S-300PS 64H6E sr", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 Big Bird", + "shortLabel": "S-300PS 64H6E sr", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "SA-10 SAM Battery": { + "name": "SA-10 SAM Battery", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-10 SAM Battery", + "shortLabel": "10", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 300000, + "engagementRange": 52000, + "description": "SA-10 Grumble radar SAM site S-300. Range/alt max: 52 km, 100,000 ft.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "10" + }, + "SA-11 Buk CC 9S470M1": { + "name": "SA-11 Buk CC 9S470M1", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-11 Command Post", + "shortLabel": "SA-11 Buk CC 9S470M1", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-11 Buk LN 9A310M1": { + "name": "SA-11 Buk LN 9A310M1", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-11 Launcher", + "shortLabel": "SA-11 Buk LN 9A310M1", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 50000, + "engagementRange": 35000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-11 SAM Battery" + }, + "SA-11 Buk SR 9S18M1": { + "name": "SA-11 Buk SR 9S18M1", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-11 Snown Drift", + "shortLabel": "SA-11 Buk SR 9S18M1", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-11 SAM Battery": { + "name": "SA-11 SAM Battery", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-11 SAM Battery", + "shortLabel": "11", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 98000, + "engagementRange": 33000, + "description": "SA-11 Gadfly radar SAM site 9K37. Range/alt max: 42 km, 82,000 ft.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "11" + }, + "SA-18 Igla manpad": { + "name": "SA-18 Igla manpad", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-18 Igla \"Grouse\" C2", + "shortLabel": "18", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": false, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "MANPADS", + "markerFile": "groundunit-sam" + }, + "SA-18 Igla-S manpad": { + "name": "SA-18 Igla-S manpad", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-18 Igla \"Grouse\" C2", + "shortLabel": "18", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": false, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "MANPADS", + "markerFile": "groundunit-sam" + }, + "SA-2 SAM Battery": { + "name": "SA-2 SAM Battery", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-2 SAM Battery", + "shortLabel": "2", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 160000, + "engagementRange": 42000, + "description": "SA-2 Guideline radar SAM site S-75. Range/alt max: 24 km, 66,000 ft.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "2" + }, + "SA-3 SAM Battery": { + "name": "SA-3 SAM Battery", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-3 SAM Battery", + "shortLabel": "3", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 160000, + "engagementRange": 18000, + "description": "SA-3 Goa radar SAM site S-125. Range/alt max: 35 km, 60,000 ft.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "3" + }, + "SA-5 SAM Battery": { + "name": "SA-5 SAM Battery", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-5 SAM Battery", + "shortLabel": "5", + "range": "Long", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 400000, + "engagementRange": 250000, + "description": "SA-5 Gammon radar SAM site S-200. Range/alt max: 300 km, 120,000 ft. Min 60km.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "5" + }, + "SA-6 SAM Battery": { + "name": "SA-6 SAM Battery", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-6 SAM Battery", + "shortLabel": "6", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "description": "SA-6 Gainful radar SAM site 2K12. Range/alt max: 55 km, 50,000 ft. Tracked vehicle.", + "abilities": "", + "acquisitionRange": 68000, + "engagementRange": 22000, + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar", + "markerFile": "groundunit-sam", + "unitWhenGrouped": "6" + }, + "SAU 2-C9": { + "name": "SAU 2-C9", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SAU Nona", + "shortLabel": "SAU Nona", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 7000, + "description": "2S9 Nona. Tracked. 120mm howitzer. 30m min range, 7km max. Doesn't let you use the gun in CA.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "120mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "SAU Akatsia": { + "name": "SAU Akatsia", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SAU Akatsiya", + "shortLabel": "SAU Akatsiya", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 17000, + "description": "SAU Akatsiya. Tracked. Self propelled 152mm howitzer. 30m min range, 17km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "152mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "SAU Gvozdika": { + "name": "SAU Gvozdika", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SAU Gvozdika", + "shortLabel": "SAU Gvozdika", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "2S1 SAU Gvozdika. Tracked. 122m howitzer. 1km min range, 15km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "122mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "SAU Msta": { + "name": "SAU Msta", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SAU Msta", + "shortLabel": "SAU Msta", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 23500, + "description": "2S19 Msta. Tracked. 152.4mm howitzer. 1km min range, 24km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "152mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "SKP-11": { + "name": "SKP-11", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "SKP-11", + "shortLabel": "SKP-11", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Repair and recovery vehicle. Wheeled. Comms for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Comms" + }, + "SNR_75V": { + "name": "SNR_75V", + "coalition": "Red", + "era": "Early Cold War", + "category": "groundunit", + "label": "SA-2 Fan Song", + "shortLabel": "SNR 75V", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "S_75M_Volhov": { + "name": "S_75M_Volhov", + "coalition": "Red", + "era": "Early Cold War", + "category": "groundunit", + "label": "SA-2 Launcher", + "shortLabel": "S75M Volhov", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 43000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-launcher", + "unitWhenGrouped": "SA-2 SAM Battery" + }, + "Sandbox": { + "name": "Sandbox", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Sandbox", + "shortLabel": "Sandbox", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Smerch": { + "name": "Smerch", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "BM-30 Smerch (Cluster)", + "shortLabel": "BM-30 Smerch", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 70000, + "description": "BM-30 9A52 Smerch. Wheeled. Multiple launch rocket system, 300 mm cluster rockets. 20km min range, 71 km max. Cluster munitions can be very laggy en masse.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "300mm, MLRS, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Soldier AK": { + "name": "Soldier AK", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "AK-74 (Type 4)", + "shortLabel": "AK-74", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "us-1": { + "name": "US", + "countries": "All" + }, + "us-2": { + "name": "US-2", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "muzzleVelocity": 900, + "barrelHeight": 1, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Solider carrying AK-74.", + "abilities": "AA, Embark", + "canTargetPoint": true, + "canRearm": false, + "aimTime": 2.5, + "shotsToFire": 5, + "tags": "Russian type 4", + "markerFile": "groundunit-infantry", + "canAAA": true, + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Soldier M249": { + "name": "Soldier M249", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "M249", + "shortLabel": "M249", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "us-1": { + "name": "US", + "countries": "All" + }, + "us-2": { + "name": "US-2", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Solider carrying M249.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 915, + "aimTime": 5, + "shotsToFire": 5, + "barrelHeight": 0.25, + "tags": "US", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Soldier M4 GRG": { + "name": "Soldier M4 GRG", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M4", + "shortLabel": "M4", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "us acu-4": { + "name": "US ACU-4", + "countries": "All" + }, + "us desert-4": { + "name": "US Desert-4", + "countries": "All" + }, + "us forest-3": { + "name": "US Forest-3", + "countries": "All" + }, + "us acu-2": { + "name": "US ACU-2", + "countries": "All" + }, + "us acu-3": { + "name": "US ACU-3", + "countries": "All" + }, + "us acu-1": { + "name": "US ACU-1", + "countries": "All" + }, + "us forest-1": { + "name": "US Forest-1", + "countries": "All" + }, + "us forest-2": { + "name": "US Forest-2", + "countries": "All" + }, + "us forest-4": { + "name": "US Forest-4", + "countries": "All" + }, + "us desert-2": { + "name": "US Desert-2", + "countries": "All" + }, + "us desert-3": { + "name": "US Desert-3", + "countries": "All" + }, + "us desert-1": { + "name": "US Desert-1", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Solider carrying M4.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.95, + "muzzleVelocity": 910, + "aimTime": 5, + "shotsToFire": 5, + "tags": "Georgia", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Soldier M4": { + "name": "Soldier M4", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "M4", + "shortLabel": "M4", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "us-1": { + "name": "US", + "countries": "All" + }, + "us-2": { + "name": "US-2", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Solider carrying M4.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1, + "muzzleVelocity": 910, + "aimTime": 5, + "shotsToFire": 5, + "tags": "US", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Soldier RPG": { + "name": "Soldier RPG", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "RPG", + "shortLabel": "Soldier RPG", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "us-1": { + "name": "US", + "countries": "All" + }, + "us-2": { + "name": "US-2", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 1500, + "engagementRange": 300, + "description": "Solider carrying RPG-16.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.8, + "muzzleVelocity": 295, + "aimTime": 5, + "shotsToFire": 1, + "tags": "Russian", + "markerFile": "groundunit-infantry", + "canAAA": false, + "targetingRange": 50, + "aimMethodRange": 750, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Stinger comm dsr": { + "name": "Stinger comm dsr", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Stinger", + "shortLabel": "Stinger", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": false, + "liveries": { + "multicam": { + "name": "multicam", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "MANPADS, IR", + "markerFile": "groundunit-sam" + }, + "Stinger comm": { + "name": "Stinger comm", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Stinger", + "shortLabel": "Stinger", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": false, + "liveries": { + "multicam": { + "name": "multicam", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA, MANPADS", + "markerFile": "groundunit-sam" + }, + "Strela-1 9P31": { + "name": "Strela-1 9P31", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-9 Gaskin", + "shortLabel": "9", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 4200, + "description": "SA-9 Gaskin Strela 1. Range/alt max: 5 km, 12,000 ft.", + "abilities": "Combined arms, Amphibious", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA", + "markerFile": "groundunit-sam" + }, + "Strela-10M3": { + "name": "Strela-10M3", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-13 Gopher", + "shortLabel": "13", + "range": "Short", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 8000, + "engagementRange": 5000, + "description": "SA-13 Gopher Strela 10. Range/alt max: 5 km, 12,000 ft.", + "abilities": "Combined arms, Amphibious", + "canTargetPoint": false, + "canRearm": false, + "tags": "Optical, Radar, CA", + "markerFile": "groundunit-sam" + }, + "Suidae": { + "name": "Suidae", + "coalition": "", + "era": "Modern", + "category": "groundunit", + "label": "Suidae", + "shortLabel": "Suidae", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "The destroyer of all. Pre-Dates all living and un-living creatures.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Prehistoric" + }, + "T-55": { + "name": "T-55", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "T-55", + "shortLabel": "T-55", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 4000, + "engagementRange": 1000, + "description": "Medium tank. Tracked. 100 mm D-10T rifled gun (APFSDS and HEAT), 7.62 mm SGMT machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "tags": "CA", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.3, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 9, + "aimMethodRange": 2500, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 6, + "canAAA": false + }, + "T-72B": { + "name": "T-72B", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "T-72B", + "shortLabel": "T-72B", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 125 mm 2A46M smoothbore gun (APFSDS and HEAT), 7.62 mm PKT machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 8, + "shotsBaseScatter": 5, + "barrelHeight": 2.5, + "muzzleVelocity": 700, + "aimMethodRange": 2500, + "alertnessTimeConstant": 4, + "canAAA": false, + "tags": "CA" + }, + "T-80UD": { + "name": "T-80UD", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "T-80UD", + "shortLabel": "T-80UD", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "iran - 02": { + "name": "Iran - 02", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "iran - 01": { + "name": "Iran - 01", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 125 mm 2A46M-1 smoothbore gun (APFSDS and HEAT), 7.62 mm PKT machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 800, + "barrelHeight": 2.32, + "shotsToFire": 5, + "aimTime": 5, + "shotsBaseInterval": 6, + "tags": "CA", + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": false + }, + "T-90": { + "name": "T-90", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "T-90", + "shortLabel": "T-90", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 6000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 125 mm 2A46M smoothbore gun (APFSDS and HEAT), 7.62 mm PKT machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.7, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 8, + "tags": "CA", + "canAAA": false, + "alertnessTimeConstant": 3, + "shotsBaseScatter": 5, + "aimMethodRange": 3000 + }, + "TPZ": { + "name": "TPZ", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "TPz Fuchs", + "shortLabel": "TPz Fuchs", + "filename": "", + "type": "APC", + "enabled": true, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "TPz Fuchs. Wheeled. 7.62 mm machine gun.", + "abilities": "Combined arms, Transport, Amphibious", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.8, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": false + }, + "Tigr_233036": { + "name": "Tigr_233036", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": " LUV Tigr", + "shortLabel": " LUV Tigr", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Utility vehicle. Wheeled. Multi-Axle.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Tor 9A331": { + "name": "Tor 9A331", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SA-15 Gauntlet", + "shortLabel": "15", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 25000, + "engagementRange": 12000, + "description": "SA-15 Gauntlet 9K330 Tor. Range/alt max: 12 km, 20,000 ft.", + "abilities": "Combined arms,", + "canTargetPoint": false, + "canRearm": false, + "tags": "Radar, CA", + "markerFile": "groundunit-sam" + }, + "Trolley bus": { + "name": "Trolley bus", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Trolley bus", + "shortLabel": "Trolley bus", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian. Public transportation bus. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "UAZ-469": { + "name": "UAZ-469", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "UAZ-469", + "shortLabel": "UAZ-469", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "red_summer": { + "name": "RED_Summer", + "countries": "All" + }, + "orange_spring": { + "name": "ORANGE_Spring", + "countries": "All" + }, + "orange_autumn": { + "name": "ORANGE_Autumn", + "countries": "All" + }, + "orange_summer": { + "name": "ORANGE_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "red_spring": { + "name": "RED_Spring", + "countries": "All" + }, + "orange_winter": { + "name": "ORANGE_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "red_winter": { + "name": "RED_Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "red_autumn": { + "name": "RED_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Light utility vehicle. Wheeled. 4x4", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Uragan_BM-27": { + "name": "Uragan_BM-27", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Bm-27 Uragan", + "shortLabel": "Uragan", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 37000, + "description": "Uragan BM-27. Wheeled. 220 mm rocket artillery. 11km min range, 37 km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "220mm, Rocket, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Ural ATsP-6": { + "name": "Ural ATsP-6", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Ural ATsP-6", + "shortLabel": "Ural ATsP-6", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military fire truck. Wheeled. ", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + } + }, + "Ural-375 PBU": { + "name": "Ural-375 PBU", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Ural-375 PBU", + "shortLabel": "Ural-375 PBU", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military command vehicle. Wheeled. Re-arming for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Re-Arming, FARP" + }, + "Ural-375 ZU-23 Insurgent": { + "name": "Ural-375 ZU-23 Insurgent", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Ural-375 with ZU-23 Insurgent", + "shortLabel": "Ural-375 ZU-23 Insurgent", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "Ural ZU-23. Truck mounted ZU-23 23 mm gun manually aimed.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "shotsToFire": 5, + "aimTime": 6, + "muzzleVelocity": 1000, + "barrelHeight": 3, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 100, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 5 + }, + "Ural-375 ZU-23": { + "name": "Ural-375 ZU-23", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Ural-375 with ZU-23", + "shortLabel": "Ural-375 ZU-23", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "Ural ZU-23. Truck mounted ZU-23 AAA 23 mm gun manually aimed.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "cost": null, + "barrelHeight": 3, + "muzzleVelocity": 1000, + "aimTime": 6, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 5, + "aimMethodRange": 4000, + "targetingRange": 100 + }, + "Ural-375": { + "name": "Ural-375", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Ural-375", + "shortLabel": "Ural-375", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military cargo truck. Wheeled. Refueling and Re-Arming for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "CA, Refueling, Re-Arming, FARP" + }, + "Ural-4320 APA-5D": { + "name": "Ural-4320 APA-5D", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Ural-4320 APA-5D", + "shortLabel": "Ural-4320 APA-5D", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military cargo truck. Wheeled. 6x6", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck" + }, + "Ural-4320-31": { + "name": "Ural-4320-31", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Ural-4320-31", + "shortLabel": "Ural-4320-31", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "abilities": "", + "description": "Military cargo truck. Wheeled. 6x6. Repair for FARPs", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "Repair, FARP" + }, + "Ural-4320T": { + "name": "Ural-4320T", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Ural-4320T", + "shortLabel": "Ural-4320T", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter_green": { + "name": "winter", + "countries": "All" + }, + "summer_green": { + "name": "summer_green", + "countries": "All" + }, + "spring_green": { + "name": "spring_green", + "countries": "All" + }, + "desert": { + "name": "desert", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "autumn_green": { + "name": "autumn_green", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "abilities": "", + "description": "Military cargo truck. Wheeled. 6x6. Repair for FARPs", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "Repair, FARP" + }, + "VAZ Car": { + "name": "VAZ Car", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "VAZ Car", + "shortLabel": "VAZ Car", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian car. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "Vulcan": { + "name": "Vulcan", + "coalition": "blue", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Vulcan", + "shortLabel": "Vulcan", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "usa_winter": { + "name": "USA_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "isr_autumn": { + "name": "ISR_Autumn", + "countries": "All" + }, + "usa_autumn": { + "name": "USA_Autumn", + "countries": "All" + }, + "usa_spring": { + "name": "USA_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "isr_winter": { + "name": "ISR_Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "isr_spring": { + "name": "ISR_Spring", + "countries": "All" + }, + "usa_summer": { + "name": "USA_Summer", + "countries": "All" + }, + "isr_summer": { + "name": "ISR_Summer", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "M113 Vulcan. Tracked M113 APC with radar guided Vulcan 20 mm cannon.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "cost": null, + "barrelHeight": 2.5, + "muzzleVelocity": 900, + "aimTime": 8, + "shotsToFire": 5, + "tags": "Radar, CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 100, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 5 + }, + "ZIL-131 KUNG": { + "name": "ZIL-131 KUNG", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZIL-131 KUNG", + "shortLabel": "ZIL-131 KUNG", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck. Wheeled. KUNG Narrow specialized Body. 6x6. Repair for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Repair, FARP" + }, + "ZIL-4331": { + "name": "ZIL-4331", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZIL-4331", + "shortLabel": "ZIL-4331", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "spring": { + "name": "RUS_Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck. Wheeled. 6x6", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "ZSU-23-4 Shilka": { + "name": "ZSU-23-4 Shilka", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "ZSU-23-4 Shilka", + "shortLabel": "ZSU-23-4 Shilka", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + } + }, + "acquisitionRange": 8000, + "engagementRange": 2000, + "description": "ZSU-23-4 Shilka. Tracked. 4 x 23 mm radar guided autocannons.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1.8, + "muzzleVelocity": 1000, + "aimTime": 13, + "shotsToFire": 5, + "cost": null, + "tags": "Radar, CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "ZU-23 Closed Insurgent": { + "name": "ZU-23 Closed Insurgent", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZU-23 Closed Insurgent", + "shortLabel": "ZU-23 Closed Insurgent", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "ZSU-23. Fixed. Manually aimed AAA 23 mm autocannons. Sandbags.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2, + "muzzleVelocity": 1000, + "aimTime": 9, + "shotsToFire": 5, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 5 + }, + "ZU-23 Emplacement Closed": { + "name": "ZU-23 Emplacement Closed", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZU-23 Emplacement Closed", + "shortLabel": "ZU-23 Emplacement Closed", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "ZSU-23. Fixed. Manually aimed AAA 23 mm autocannons. Sandbags.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "shotsToFire": 5, + "aimTime": 6, + "muzzleVelocity": 1000, + "barrelHeight": 1.5, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "ZU-23 Emplacement": { + "name": "ZU-23 Emplacement", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZU-23 Emplacement", + "shortLabel": "ZU-23 Emplacement", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "ZSU-23. Fixed. Manually aimed AAA 23 mm autocannons.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "shotsToFire": 5, + "aimTime": 6, + "muzzleVelocity": 1000, + "barrelHeight": 1.5, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "ZU-23 Insurgent": { + "name": "ZU-23 Insurgent", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZU-23 Insurgent", + "shortLabel": "ZU-23 Insurgent", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "ZSU-23. Fixed. Manually aimed AAA 23 mm autocannons.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "shotsToFire": 5, + "aimTime": 6, + "muzzleVelocity": 1000, + "barrelHeight": 1.5, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "aimMethodRange": 4000, + "targetingRange": 100 + }, + "ZiL-131 APA-80": { + "name": "ZiL-131 APA-80", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZiL-131 APA-80", + "shortLabel": "ZiL-131 APA-80", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck. Wheeled. Arctic Self-Loading Device. Power for FARPs", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "Power, FARP" + }, + "house1arm": { + "name": "house1arm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "house1arm", + "shortLabel": "house1arm", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "house2arm": { + "name": "house2arm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "house2arm", + "shortLabel": "house2arm", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "houseA_arm": { + "name": "houseA_arm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "houseA_arm", + "shortLabel": "houseA_arm", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "outpost": { + "name": "outpost", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "outpost", + "shortLabel": "outpost", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "liveries": { + "green": { + "name": "Green", + "countries": "All" + } + } + }, + "outpost_road": { + "name": "outpost_road", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "outpost_road", + "shortLabel": "outpost_road", + "filename": "", + "type": "Structure", + "enabled": false, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "liveries": { + "green": { + "name": "Green", + "countries": "All" + } + } + }, + "p-19 s-125 sr": { + "name": "p-19 s-125 sr", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SA-3 Flat Face B", + "shortLabel": "Flat Face B", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "snr s-125 tr": { + "name": "snr s-125 tr", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "SA-3 Low Blow", + "shortLabel": "snr s-125 tr", + "range": "Medium", + "filename": "sam.png", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "SpGH_Dana": { + "name": "SpGH_Dana", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "SpGH Dana 152mm", + "shortLabel": "SpGH Dana", + "type": "Artillery", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 18400, + "description": "SpGH Dana 77. Wheeled. Self propelled 152mm howitzer. 1km min range, 18km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "tags": "152mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Grad_FDDM": { + "name": "Grad_FDDM", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "MT-LBu ACRV", + "shortLabel": "MT-LBu ARCV", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 18500, + "description": "MT-LBu IV12 series tracked. Artillery command / recon vehicle, not an arty piece, speeds up artillery fire time in game when grouped.", + "abilities": "Combined arms, AA, Fast Artillery", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 3, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 2, + "tags": "Command, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "shotsBaseInterval": 10, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Infantry AK Ins": { + "name": "Infantry AK Ins", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "AK-74 (Insurgent)", + "shortLabel": "AK-74 (Ins)", + "type": "Infantry", + "enabled": true, + "liveries": { + "insurgent 10": { + "name": "Insurgent 10", + "countries": "All" + }, + "insurgent 5": { + "name": "Insurgent 5", + "countries": "All" + }, + "insurgent caucasus 3": { + "name": "Insurgent caucasus 3", + "countries": "All" + }, + "insurgent caucasus 1": { + "name": "Insurgent Caucasus 1", + "countries": "All" + }, + "insurgent 12": { + "name": "Insurgent 12", + "countries": "All" + }, + "insurgent caucasus 2": { + "name": "Insurgent caucasus 2", + "countries": "All" + }, + "insurgent 11": { + "name": "Insurgent 11", + "countries": "All" + }, + "insurgent 9": { + "name": "Insurgent 9", + "countries": "All" + }, + "insurgent 3": { + "name": "Insurgent 3", + "countries": "All" + }, + "insurgent 2": { + "name": "Insurgent 2", + "countries": "All" + }, + "insurgent 4": { + "name": "Insurgent 4", + "countries": "All" + }, + "insurgent 6": { + "name": "Insurgent 6", + "countries": "All" + }, + "insurgent caucasus 4": { + "name": "Insurgent caucasus 4", + "countries": "All" + }, + "obl": { + "name": "OBL", + "countries": "All" + }, + "insurgent 8": { + "name": "Insurgent 8", + "countries": "All" + }, + "insurgent 7": { + "name": "Insurgent 7", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Insurgent solider carrying AK-74.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.9, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "Insurgent", + "markerFile": "groundunit-infantry", + "canAAA": false, + "aimMethodRange": 2000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "MLRS FDDM": { + "name": "MLRS FDDM", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "HMMWV MLRS ACRV", + "shortLabel": "HMMWV ACRV", + "type": "Artillery", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "A Humvee artillery command/ recon vehicle, not an arty piece, speeds up MLRS fire time in game when grouped. 12.7 mm machine gun.", + "abilities": "Combined arms, AA, Fast Artillery", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 2, + "barrelHeight": 2.49, + "tags": "Arty Command/Recon, CA", + "markerFile": "groundunit-artillery", + "indirectFire": false, + "shotsBaseInterval": 10, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Infantry AK ver2": { + "name": "Infantry AK ver2", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "AK-74 (Type 2)", + "shortLabel": "AK-74", + "type": "Infantry", + "enabled": true, + "liveries": { + "insurgent 10": { + "name": "Insurgent 10", + "countries": "All" + }, + "insurgent 5": { + "name": "Insurgent 5", + "countries": "All" + }, + "insurgent caucasus 3": { + "name": "Insurgent caucasus 3", + "countries": "All" + }, + "insurgent caucasus 1": { + "name": "Insurgent Caucasus 1", + "countries": "All" + }, + "insurgent 12": { + "name": "Insurgent 12", + "countries": "All" + }, + "insurgent caucasus 2": { + "name": "Insurgent caucasus 2", + "countries": "All" + }, + "insurgent 11": { + "name": "Insurgent 11", + "countries": "All" + }, + "insurgent 9": { + "name": "Insurgent 9", + "countries": "All" + }, + "insurgent 3": { + "name": "Insurgent 3", + "countries": "All" + }, + "insurgent 2": { + "name": "Insurgent 2", + "countries": "All" + }, + "insurgent 4": { + "name": "Insurgent 4", + "countries": "All" + }, + "insurgent 6": { + "name": "Insurgent 6", + "countries": "All" + }, + "insurgent caucasus 4": { + "name": "Insurgent caucasus 4", + "countries": "All" + }, + "obl": { + "name": "OBL", + "countries": "All" + }, + "insurgent 8": { + "name": "Insurgent 8", + "countries": "All" + }, + "insurgent 7": { + "name": "Insurgent 7", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Russian solider carrying AK-74.", + "abilities": "AA, Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.9, + "muzzleVelocity": 900, + "aimTime": 3, + "shotsToFire": 5, + "tags": "Russian type 2", + "markerFile": "groundunit-infantry", + "canAAA": true, + "aimMethodRange": 2000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Infantry AK ver3": { + "name": "Infantry AK ver3", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "AK-74 (Type 3)", + "shortLabel": "AK-74", + "type": "Infantry", + "enabled": true, + "liveries": { + "insurgent 10": { + "name": "Insurgent 10", + "countries": "All" + }, + "insurgent 5": { + "name": "Insurgent 5", + "countries": "All" + }, + "insurgent caucasus 3": { + "name": "Insurgent caucasus 3", + "countries": "All" + }, + "insurgent caucasus 1": { + "name": "Insurgent Caucasus 1", + "countries": "All" + }, + "insurgent 12": { + "name": "Insurgent 12", + "countries": "All" + }, + "insurgent caucasus 2": { + "name": "Insurgent caucasus 2", + "countries": "All" + }, + "insurgent 11": { + "name": "Insurgent 11", + "countries": "All" + }, + "insurgent 9": { + "name": "Insurgent 9", + "countries": "All" + }, + "insurgent 3": { + "name": "Insurgent 3", + "countries": "All" + }, + "insurgent 2": { + "name": "Insurgent 2", + "countries": "All" + }, + "insurgent 4": { + "name": "Insurgent 4", + "countries": "All" + }, + "insurgent 6": { + "name": "Insurgent 6", + "countries": "All" + }, + "insurgent caucasus 4": { + "name": "Insurgent caucasus 4", + "countries": "All" + }, + "obl": { + "name": "OBL", + "countries": "All" + }, + "insurgent 8": { + "name": "Insurgent 8", + "countries": "All" + }, + "insurgent 7": { + "name": "Insurgent 7", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 300, + "description": "Russian solider carrying AK-74.", + "abilities": "Embark", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 0.9, + "muzzleVelocity": 900, + "aimTime": 5, + "shotsToFire": 5, + "tags": "Russian type 3", + "markerFile": "groundunit-infantry", + "canAAA": false, + "aimMethodRange": 2000, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Smerch_HE": { + "name": "Smerch_HE", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "BM-30 Smerch (HE)", + "shortLabel": "BM-30 Smerch", + "type": "Artillery", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 70000, + "description": "BM-30 9A52 Smerch. Wheeled. Multiple launch rocket system, 300 mm 9M55F rockets. 20km min range, 71 km max.", + "abilities": "Combined Arms, Indirect Fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "300mm, MLRS, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Soldier stinger": { + "name": "Soldier stinger", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FIM-92 Stinger", + "shortLabel": "St", + "type": "SAM Site", + "enabled": true, + "liveries": { + "isr": { + "name": "Desert", + "countries": ["AUSAF"] + }, + "grg": { + "name": "Digital green (Georgia)", + "countries": ["AUSAF"] + }, + "grc": { + "name": "Digital green", + "countries": ["hide"] + }, + "digital_grey": { + "name": "Digital grey", + "countries": ["ISR", "USA", "AUSAF"] + }, + "desert": { + "name": "Desert", + "countries": ["AUSAF", "USA"] + }, + "default": { + "name": "Default", + "countries": ["hide"] + }, + "ins": { + "name": "Striped green", + "countries": ["AUSAF"] + }, + "digital_green": { + "name": "Digital green", + "countries": ["AUSAF", "USA"] + }, + "usa": { + "name": "Digital grey", + "countries": ["AUSAF", "hide"] + } + }, + "acquisitionRange": 5000, + "engagementRange": 4500, + "description": "Stinger IR MANPADS FIM-92. Range/alt max: 5 km, 15,000 ft.", + "abilities": "Combined arms,", + "canTargetPoint": false, + "canRearm": false, + "tags": "IR, CA, MANPADS", + "markerFile": "groundunit-sam" + }, + "SA-18 Igla-S comm": { + "name": "SA-18 Igla-S comm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SA-18 Igla \"Grouse\" C2", + "shortLabel": "18", + "type": "SAM Site", + "enabled": false, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "MANPADS", + "markerFile": "groundunit-sam" + }, + "TACAN_beacon": { + "name": "TACAN_beacon", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Beacon TACAN Portable TTS 3030", + "shortLabel": "Beacon TACAN Portable TTS 3030", + "type": "Structure", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Merkava_Mk4": { + "name": "Merkava_Mk4", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Merkava IV", + "shortLabel": "Merkava IV", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore MG253 main gun (APFSDS and HEAT), 7.62 mm machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 3.1, + "shotsBaseInterval": 6, + "shotsToFire": 5, + "aimTime": 5, + "tags": "CA", + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "canAAA": false, + "alertnessTimeConstant": 3 + }, + "LiAZ Bus": { + "name": "LiAZ Bus", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Bus LiAZ-677", + "shortLabel": "Bus LiAZ-677", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "KrAZ6322": { + "name": "KrAZ6322", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Truck KrAZ-6322 6x6", + "shortLabel": "Truck KrAZ-6322 6x6", + "type": "Unarmed", + "enabled": true, + "liveries": { + "ukr_autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_summer": { + "name": "Summer", + "countries": "All" + }, + "grg_spring": { + "name": "Spring", + "countries": "All" + }, + "grg_winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_winter": { + "name": "Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grg_summer": { + "name": "Summer", + "countries": "All" + }, + "desert - camo": { + "name": "Desert camo", + "countries": "All" + }, + "grg_autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military cargo truck. Wheeled. 6x6", + "abilities": "", + "canTargetPoint": false, + "canRearm": true, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "JTAC": { + "name": "JTAC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "JTAC", + "shortLabel": "JTAC", + "type": "Infantry", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-infantry" + }, + "Electric locomotive": { + "name": "Electric locomotive", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "VL80 Electric", + "shortLabel": "VL80 Electric", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Loco" + }, + "Locomotive": { + "name": "Locomotive", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "CHME3T", + "shortLabel": "CHME3T", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Loco" + }, + "Coach cargo": { + "name": "Coach cargo", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Freight Van", + "shortLabel": "Freight Van", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Coach cargo open": { + "name": "Coach cargo open", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Open Wagon", + "shortLabel": "Open Wagon", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Coach a tank blue": { + "name": "Coach a tank blue", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Car blue", + "shortLabel": "Car blue", + "type": "Train", + "enabled": false, + "liveries": { + "green": { + "name": "Green", + "countries": "All" + }, + "lightblue": { + "name": "LightBlue", + "countries": "All" + }, + "tan": { + "name": "Tan", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Coach a tank yellow": { + "name": "Coach a tank yellow", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Car yellow", + "shortLabel": "Car yellow", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Coach a passenger": { + "name": "Coach a passenger", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Passenger Car", + "shortLabel": "Passenger Car", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Coach a platform": { + "name": "Coach a platform", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Coach Platform", + "shortLabel": "Coach Platform", + "type": "Train", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "tacr2a": { + "name": "tacr2a", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "RAF Rescue", + "shortLabel": "RAF Rescue", + "type": "Unarmed", + "enabled": true, + "liveries": { + "light green spring": { + "name": "Light Green Spring", + "countries": "All" + }, + "light green winter": { + "name": "Light Green Winter", + "countries": "All" + }, + "light green summer": { + "name": "Light_Green_Summer", + "countries": "All" + }, + "military police autumn": { + "name": "Military Police Autumn", + "countries": "All" + }, + "military police winter": { + "name": "Military Police Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "military police summer": { + "name": "Military Police Summer", + "countries": "All" + }, + "green summer": { + "name": "Green_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "light green autumn": { + "name": "Light Green Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "green winter": { + "name": "Green_Winter", + "countries": "All" + }, + "green autumn": { + "name": "Green_Autumn", + "countries": "All" + }, + "desert2": { + "name": "Desert2", + "countries": "All" + }, + "green spring": { + "name": "Green_Spring", + "countries": "All" + }, + "military police spring": { + "name": "Military Police Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Fire and Rescue vehicle. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "LARC-V": { + "name": "LARC-V", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LARC-V", + "shortLabel": "LARC-V", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 500, + "engagementRange": 0, + "description": "Amphibious cargo vehicle.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "KS-19": { + "name": "KS-19", + "coalition": "", + "era": "Early Cold War", + "category": "groundunit", + "label": "KS-19 100mm", + "shortLabel": "KS-19 100mm", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 21000, + "description": "KS-19. 100 mm AAA gun. Fixed manually aimed large calibre anti aircraft gun.", + "abilities": "AA", + "canTargetPoint": false, + "canRearm": false, + "muzzleVelocity": 600, + "aimTime": 50, + "shotsToFire": 10, + "barrelHeight": 5, + "cost": null, + "markerFile": "groundunit-aaa", + "canAAA": true, + "targetingRange": 100, + "aimMethodRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 5, + "flak": true + }, + "SON_9": { + "name": "SON_9", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Fire Can SON-9", + "shortLabel": "Fire Can SON-9", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 92600, + "engagementRange": null, + "description": "SON-9 Fire Can. Gun laying radar, not AAA. Can be used to direct fire of up to 4 AAA guns if grouped with them.", + "abilities": "Fire Director", + "canTargetPoint": false, + "canRearm": false, + "cost": null, + "tags": "Radar", + "markerFile": "groundunit-aaa", + "canAAA": false + }, + "Scud_B": { + "name": "Scud_B", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SS-1C Scud-B", + "shortLabel": "Scud-B", + "type": "Artillery", + "enabled": true, + "liveries": { + "irq_spring": { + "name": "Spring", + "countries": ["IRQ"] + }, + "irn_autumn": { + "name": "Autumn", + "countries": ["IRN"] + }, + "irq_autumn": { + "name": "Autumn", + "countries": ["IRQ"] + }, + "winter": { + "name": "Winter", + "countries": ["SUN", "RUS"] + }, + "irn_summer": { + "name": "Summer", + "countries": ["IRN"] + }, + "autumn": { + "name": "Autumn", + "countries": ["SUN", "RUS"] + }, + "irq_winter": { + "name": "Winter", + "countries": ["IRQ"] + }, + "summer": { + "name": "Summer", + "countries": ["SUN", "RUS"] + }, + "irn_winter": { + "name": "Winter", + "countries": ["IRN"] + }, + "irq_summer": { + "name": "Summer", + "countries": ["IRQ"] + }, + "spring": { + "name": "Spring", + "countries": ["SUN", "RUS"] + }, + "irn_spring": { + "name": "Spring", + "countries": ["IRN"] + } + }, + "acquisitionRange": 0, + "engagementRange": 283000, + "description": "SS-1C Scud-B wheeled vehicle firing R-17 tactical ballistic missile. 50 km min range, 300 km max. Approx 700 m CEP. Long setup time, check if the stabilisers are moving to see if launch command worked.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "tags": "Ballistic Missile", + "markerFile": "groundunit-artillery", + "aimTime": 300, + "shotsToFire": 1, + "shotsBaseInterval": 300, + "shotsBaseScatter": 1, + "alertnessTimeConstant": 10 + }, + "HL_DSHK": { + "name": "HL_DSHK", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Technical DSHK 12.7mm", + "shortLabel": "Technical DSHK 12.7mm", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Technical. Car with DSHK 12.7 mm gun manually aimed.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "barrelHeight": 2, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true, + "muzzleVelocity": 900 + }, + "HL_KORD": { + "name": "HL_KORD", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Technical KORD 12.7mm", + "shortLabel": "Technical KORD 12.7mm", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Technical. Car with KORD 12.7 mm gun manually aimed.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true, + "barrelHeight": 2, + "muzzleVelocity": 900 + }, + "tt_DSHK": { + "name": "tt_DSHK", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Pickup DSHK 12.7mm", + "shortLabel": "Pickup DSHK 12.7mm", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 300, + "engagementRange": 1000, + "description": "Technical. Car with DSHK 12.7 mm gun manually aimed.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true, + "barrelHeight": 2, + "muzzleVelocity": 900 + }, + "tt_KORD": { + "name": "tt_KORD", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Pickup KORD 12.7mm", + "shortLabel": "Pickup KORD 12.7mm", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Technical. Car with KORD 12.7 mm gun manually aimed.", + "abilities": "Combined arms,", + "canTargetPoint": true, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical", + "targetingRange": 100, + "aimMethodRange": 2500, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true, + "barrelHeight": 2, + "muzzleVelocity": 900 + }, + "HL_ZU-23": { + "name": "HL_ZU-23", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Technical with ZU-23", + "shortLabel": "Technical with ZU-23", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "Technical. Car with ZSU-23 23 mm gun manually aimed.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "cost": null, + "barrelHeight": 2, + "muzzleVelocity": 1000, + "aimTime": 6, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 4000, + "targetingRange": 200, + "shotsBaseInterval": 15, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "tt_ZU-23": { + "name": "tt_ZU-23", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Pickup with ZU-23", + "shortLabel": "Pickup with ZU-23", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "Box car with ZU-23 AAA 23mm gun manually aimed.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": true, + "cost": null, + "barrelHeight": 2, + "muzzleVelocity": 1000, + "aimTime": 6, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 15, + "aimMethodRange": 4500, + "targetingRange": 100 + }, + "HL_B8M1": { + "name": "HL_B8M1", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Technical B8M1", + "shortLabel": "Technical B8M1", + "type": "Artillery", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 4900, + "description": "Technical with a B8M1 80mm rocket pod on the back. 1km min range, max 15km.", + "abilities": "Combined Arms, Indirect Fire.", + "canTargetPoint": true, + "canRearm": false, + "tags": "Rocket, CA", + "markerFile": "groundunit-artillery", + "shotsToFire": 2, + "shotsBaseInterval": 30, + "aimTime": 120, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10, + "indirectFire": true + }, + "tt_B8M1": { + "name": "tt_B8M1", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Pickup B8M1", + "shortLabel": "Pickup B8M1", + "type": "Artillery", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 5000, + "description": "Pickup truck with B8M1 80mm rocket launcher. 1km min range, 15km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "80mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "NASAMS_Radar_MPQ64F1": { + "name": "NASAMS_Radar_MPQ64F1", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM NASAMS SR MPQ64F1", + "shortLabel": "SAM NASAMS SR MPQ64F1", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 50000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "NASAMS_Command_Post": { + "name": "NASAMS_Command_Post", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM NASAMS C2", + "shortLabel": "SAM NASAMS C2", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "NASAMS_LN_B": { + "name": "NASAMS_LN_B", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM NASAMS LN AIM-120B", + "shortLabel": "SAM NASAMS LN AIM-120B", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "NASAMS_LN_C": { + "name": "NASAMS_LN_C", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM NASAMS LN AIM-120C", + "shortLabel": "SAM NASAMS LN AIM-120C", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M4_Sherman": { + "name": "M4_Sherman", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Tk M4 Sherman", + "shortLabel": "Tk M4 Sherman", + "type": "Tank", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "Medium tank. Tracked. 75 mm gun (AP and HE), 0.50 caliber coax machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 650, + "barrelHeight": 2.74, + "shotsBaseInterval": 5, + "tags": "CA", + "shotsToFire": 5, + "aimTime": 5, + "aimMethodRange": 2000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 8, + "canAAA": false + }, + "M2A1_halftrack": { + "name": "M2A1_halftrack", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "M2A1 Halftrack", + "shortLabel": "M2A1 Halftrack", + "type": "APC", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "M2 A1. Half tracked. 12.7 mm and 7.7 mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.6, + "muzzleVelocity": 900, + "aimTime": 3, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "FPS-117 Dome": { + "name": "FPS-117 Dome", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "AN/FPS-117 EWR", + "shortLabel": "AN/FPS-117 (Dome)", + "type": "Radar (EWR)", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "AN/FPS-117 early warning radar in a domed building", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Dome", + "markerFile": "groundunit-ewr" + }, + "FPS-117 ECS": { + "name": "FPS-117 ECS", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "AN/FPS-117 ECS", + "shortLabel": "ECS", + "type": "Radar (EWR)", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "AN/FPS-117 engagement control station, this is not a radar", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "C&C", + "markerFile": "groundunit-ewr" + }, + "FPS-117": { + "name": "FPS-117", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "AN/FPS-117 EWR", + "shortLabel": "AN/FPS-117", + "type": "Radar (EWR)", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 463000, + "engagementRange": 0, + "description": "AN/FPS-117 early warning radar on a large metal platform", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-ewr" + }, + "RD_75": { + "name": "RD_75", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SA-2 S-75 RD-75 Amazonka RF", + "shortLabel": "SAM SA-2 S-75 RD-75 Amazonka RF", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZSU_57_2": { + "name": "ZSU_57_2", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ZSU-57-2", + "shortLabel": "ZSU-57-2", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 10000, + "engagementRange": 9000, + "description": "ZSU-57-2. Tracked self propelled optically guided AA gun. 2 x 57 mm auto cannon.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 1000, + "barrelHeight": 3, + "aimTime": 15, + "shotsToFire": 5, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimMethodRange": 100, + "targetingRange": 100, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "S-60_Type59_Artillery": { + "name": "S-60_Type59_Artillery", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "S-60 57mm", + "shortLabel": "S-60 57mm", + "type": "AAA", + "enabled": true, + "liveries": { + "syr": { + "name": "Syrian", + "countries": ["SYR"] + }, + "default": { + "name": "Green", + "countries": "All" + } + }, + "acquisitionRange": 6000, + "engagementRange": 6000, + "description": "AZP S-60. Fixed. Automatic anti aircraft gun 57mm.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 1000, + "aimTime": 10, + "shotsToFire": 5, + "barrelHeight": 2, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "alertnessTimeConstant": 5, + "shotsBaseScatter": 5, + "shotsBaseInterval": 5, + "aimMethodRange": 5000, + "targetingRange": 2000 + }, + "generator_5i57": { + "name": "generator_5i57", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Diesel Power Station 5I57A", + "shortLabel": "Diesel Power Station 5I57A", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Diesel Power station.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "T-72B3": { + "name": "T-72B3", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "T-72B3", + "shortLabel": "T-72B3", + "type": "Tank", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 125 mm 2A46M smoothbore gun (APFSDS and HEAT), 7.62 mm PKT coaxial machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.7, + "shotsBaseInterval": 8, + "shotsToFire": 5, + "aimTime": 3, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3, + "aimMethodRange": 3000, + "canAAA": true, + "tags": "" + }, + "PT_76": { + "name": "PT_76", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "LT PT-76", + "shortLabel": "LT PT-76", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "Amphibious Light tank. Tracked. 76.2 mm D-56T smoothbore gun (AP and HE), 7.62 mm coaxial machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "tags": "CA, Amphibious", + "targetingRange": 100, + "muzzleVelocity": 625, + "barrelHeight": 1.85, + "shotsBaseInterval": 9, + "shotsToFire": 5, + "aimTime": 5, + "aimMethodRange": 2000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 9 + }, + "BTR-82A": { + "name": "BTR-82A", + "coalition": "red", + "era": "Modern", + "category": "groundunit", + "label": "BTR-82A", + "shortLabel": "BTR-82A", + "type": "APC", + "enabled": true, + "liveries": { + "light green spring": { + "name": "Light Green Spring", + "countries": "All" + }, + "light green winter": { + "name": "Light Green Winter", + "countries": "All" + }, + "light green summer": { + "name": "Light_Green_Summer", + "countries": "All" + }, + "military police autumn": { + "name": "Military Police Autumn", + "countries": "All" + }, + "military police winter": { + "name": "Military Police Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "military police summer": { + "name": "Military Police Summer", + "countries": "All" + }, + "green summer": { + "name": "Green_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "light green autumn": { + "name": "Light Green Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "green winter": { + "name": "Green_Winter", + "countries": "All" + }, + "green autumn": { + "name": "Green_Autumn", + "countries": "All" + }, + "desert2": { + "name": "Desert2", + "countries": "All" + }, + "green spring": { + "name": "Green_Spring", + "countries": "All" + }, + "military police spring": { + "name": "Military Police Spring", + "countries": "All" + } + }, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "BTR 82A APC. Wheeled. Amphibious. 30 mm gun.", + "abilities": "Combined arms, Amphibious, Transport, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.8, + "muzzleVelocity": 900, + "aimTime": 4, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2500, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5, + "canAAA": true + }, + "ATZ-5": { + "name": "ATZ-5", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ATZ-5", + "shortLabel": "ATZ-5 Fuel", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler truck. Wheeled. Refueling for FARPs", + "abilities": "Combined arms, Refuel", + "canTargetPoint": false, + "canRearm": false, + "tags": "Military, CA, Refueling, FARP", + "markerFile": "groundunit-truck" + }, + "AA8": { + "name": "AA8", + "coalition": "", + "era": "Early Cold War", + "category": "groundunit", + "label": "Fire truck AA-7", + "shortLabel": "Fire truck", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Fire truck. Wheeled. Red", + "abilities": "Combined Arms", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-truck" + }, + "TZ-22_KrAZ": { + "name": "TZ-22_KrAZ", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Refueler TZ-22 Tractor", + "shortLabel": "Refueler TZ-22 Tractor (KrAZ-258B1)", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler vehicle. Wheeled. Tractor. Only the cab portion no trailers", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-truck" + }, + "ATZ-60_Maz": { + "name": "ATZ-60_Maz", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "ATZ-60 Maz", + "shortLabel": "ATZ-60 Maz", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "winter", + "countries": "All" + }, + "dg_spring": { + "name": "DG_spring", + "countries": "All" + }, + "dg_summer": { + "name": "DG_summer", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "dg_autumn": { + "name": "DG_autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "dg_winter": { + "name": "DG_winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Wheeled truck. Only the cab portion no trailers.", + "abilities": "Combined arms", + "canTargetPoint": false, + "canRearm": false, + "tags": "Military, CA", + "markerFile": "groundunit-truck" + }, + "ZIL-135": { + "name": "ZIL-135", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Truck ZIL-135", + "shortLabel": "Truck ZIL-135", + "type": "Unarmed", + "enabled": false, + "liveries": { + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "spring": { + "name": "RUS_Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "S_75_ZIL": { + "name": "S_75_ZIL", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "S-75 Tractor", + "shortLabel": "S-75 Tractor (ZIL-131)", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler vehicle. Wheeled. Tractor. Only the cab portion no trailers", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-truck" + }, + "rapier_fsa_launcher": { + "name": "rapier_fsa_launcher", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM Rapier LN", + "shortLabel": "SAM Rapier LN", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 6800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "rapier_fsa_optical_tracker_unit": { + "name": "rapier_fsa_optical_tracker_unit", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM Rapier Tracker", + "shortLabel": "SAM Rapier Tracker", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 20000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "rapier_fsa_blindfire_radar": { + "name": "rapier_fsa_blindfire_radar", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM Rapier Blindfire TR", + "shortLabel": "SAM Rapier Blindfire TR", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "bofors40": { + "name": "bofors40", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Bofors 40mm", + "shortLabel": "Bofor", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 3000, + "description": "Bofors gun. Fixed anti aircraft 40mm gun. Manually aimed.", + "abilities": "Combined arms, AA", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1.35, + "muzzleVelocity": 850, + "aimTime": 8, + "shotsToFire": 2, + "cost": null, + "tags": "CA", + "markerFile": "groundunit-aaa", + "canAAA": true, + "shotsBaseScatter": 5, + "shotsBaseInterval": 10, + "alertnessTimeConstant": 15, + "targetingRange": 200, + "aimMethodRange": 4000 + }, + "Chieftain_mk3": { + "name": "Chieftain_mk3", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Chieftain Mk.3", + "shortLabel": "Chieftain Mk.3", + "type": "Tank", + "enabled": true, + "liveries": { + "desert_winter": { + "name": "desert winter", + "countries": "All" + }, + "cam_autumn": { + "name": "Cam autumn", + "countries": "All" + }, + "cam_winter": { + "name": "Cam winter", + "countries": "All" + }, + "cam_spring": { + "name": "Cam spring", + "countries": "All" + }, + "desert_autumn": { + "name": "desert autumn", + "countries": "All" + }, + "cam_summer": { + "name": "Cam summer", + "countries": "All" + }, + "desert_spring": { + "name": "desert spring", + "countries": "All" + }, + "desert_summer": { + "name": "desert summer", + "countries": "All" + } + }, + "acquisitionRange": 4000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm rifled main gun (APFSDS and HESH), 7.62 mm coax machine gun.", + "abilities": "Combined arms", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 1.7, + "muzzleVelocity": 800, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-tank", + "shotsBaseInterval": 7, + "targetingRange": 100, + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 2 + }, + "Bedford_MWD": { + "name": "Bedford_MWD", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Truck Bedford", + "shortLabel": "Truck Bedford", + "type": "Unarmed", + "enabled": true, + "liveries": { + "2tafambulance": { + "name": "2TAFMED", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "rafambulance": { + "name": "RAF_Ambulance", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military cargo truck. Wheeled.", + "abilities": "Combined arms, Rearm", + "canTargetPoint": false, + "canRearm": true, + "tags": "Military, CA", + "markerFile": "groundunit-truck" + }, + "Land_Rover_101_FC": { + "name": "Land_Rover_101_FC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Truck Land Rover 101 FC", + "shortLabel": "Truck Land Rover 101 FC", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Light utility truck. Wheeled. 4x4 ", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Land_Rover_109_S3": { + "name": "Land_Rover_109_S3", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LUV Land Rover 109", + "shortLabel": "LUV Land Rover 109", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Light utility vehicle. Wheeled.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "hy_launcher": { + "name": "hy_launcher", + "coalition": "red", + "era": "Mid Cold War", + "category": "groundunit", + "label": "SS-N 2 Silkworm", + "shortLabel": "SS-N 2 Silkworm", + "type": "Artillery", + "enabled": true, + "liveries": { + "irq": { + "name": "IRQ_Yellow", + "countries": "All" + }, + "irn": { + "name": "IRN_Yellow", + "countries": "All" + }, + "default": { + "name": "Green", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 100000, + "description": "SS-N 2 Silkworm anti ship missile launcher. Max range 100 km. Must be grouped with SS-N 2 search radar to function.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "tags": "Missile Launcher", + "markerFile": "groundunit-artillery", + "unitWhenGrouped": "N2", + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 10, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "Silkworm_SR": { + "name": "Silkworm_SR", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SS-N 2 Silkworm Radar", + "shortLabel": "SS-N 2 SR", + "type": "Artillery", + "enabled": true, + "liveries": { + "default": { + "name": "Default", + "countries": "All" + } + }, + "acquisitionRange": 200000, + "engagementRange": 0, + "description": "SS-N 2 Silkworm anti ship search radar. Must be grouped with SS N-2 missile launcher.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Missile Search Radar", + "markerFile": "groundunit-artillery", + "unitWhenGrouped": "N2" + }, + "ES44AH": { + "name": "ES44AH", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "ES44AH", + "shortLabel": "ES44AH", + "type": "Train", + "enabled": false, + "liveries": { + "noflag": { + "name": "NoFlag", + "countries": "All" + }, + "winter_noflag": { + "name": "Winter_NoFlag", + "countries": "All" + }, + "winter_orange": { + "name": "Winter_orange", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "blue": { + "name": "Blue", + "countries": "All" + }, + "winter_blue": { + "name": "Winter_blue", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "orange": { + "name": "Orange", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Loco" + }, + "Boxcartrinity": { + "name": "Boxcartrinity", + "coalition": "", + "era": "Mid Cold War", + "category": "groundunit", + "label": "Flatcar", + "shortLabel": "Flatcar", + "type": "Train", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Train carriage flatcar, modern train container (red)", + "abilities": "Train, Carriage", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Tankcartrinity": { + "name": "Tankcartrinity", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Cartrinity", + "shortLabel": "Cartrinity", + "type": "Train", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "Wellcarnsc": { + "name": "Wellcarnsc", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Well Car", + "shortLabel": "Well Car", + "type": "Train", + "enabled": false, + "liveries": { + "winter_nobrand": { + "name": "Winter_nobrand", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "nobrand": { + "name": "Nobrand", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Carriage" + }, + "flak18": { + "name": "flak18", + "coalition": "", + "era": "WW2", + "category": "groundunit", + "label": "8.8cm Flak 18", + "shortLabel": "8.8cm Flak 18", + "type": "AAA", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "aimTime": 50, + "shotsToFire": 5, + "acquisitionRange": 15000, + "engagementRange": 12000, + "description": "The flak 88. Fixed anti aircraft gun famously also used as an anti-tank gun. 88mm flak gun.", + "abilities": "AA", + "canTargetPoint": true, + "canRearm": false, + "muzzleVelocity": 880, + "barrelHeight": 2.1, + "cost": 40000, + "markerFile": "groundunit-aaa", + "canAAA": true, + "shotsBaseInterval": 10, + "shotsBaseScatter": 5, + "aimMethodRange": 100, + "targetingRange": 100, + "alertnessTimeConstant": 15, + "flak": true + }, + "Pz_IV_H": { + "name": "Pz_IV_H", + "coalition": "red", + "era": "WW2", + "category": "groundunit", + "label": "Tk PzIV H", + "shortLabel": "Tk PzIV H", + "type": "Tank", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "Medium tank. Tracked. 75 mm KwK 40 L/48 gun (AP and HE), 7.92 mm MG34 coaxial machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.68, + "shotsBaseInterval": 4, + "shotsToFire": 5, + "aimTime": 5, + "tags": "CA", + "aimMethodRange": 2000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 9 + }, + "Leopard-2A5": { + "name": "Leopard-2A5", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leopard-2A5", + "shortLabel": "Leopard-2A5", + "type": "Tank", + "enabled": true, + "liveries": { + "desert_winter": { + "name": "Desert_winter", + "countries": "All" + }, + "kfor_summer": { + "name": "Kfor_summer", + "countries": "All" + }, + "kfor_autumn": { + "name": "Kfor_autumn", + "countries": "All" + }, + "kfor_spring": { + "name": "Kfor_spring", + "countries": "All" + }, + "winter": { + "name": "summer", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "desert_autumn": { + "name": "Desert_autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "desert_spring": { + "name": "Desert_spring", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "desert_summer": { + "name": "Desert_summer", + "countries": "All" + }, + "kfor_winter": { + "name": "Kfor_summer", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore L/55 main gun (APFSDS and HEAT), 7.62 mm coaxial machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "aimMethodRange": 3000, + "barrelHeight": 2.7, + "muzzleVelocity": 700, + "aimTime": 3, + "shotsToFire": 5, + "shotsBaseInterval": 6, + "tags": "CA", + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3, + "canAAA": true + }, + "leopard-2A4": { + "name": "leopard-2A4", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leopard-2A4", + "shortLabel": "Leopard-2A4", + "type": "Tank", + "enabled": true, + "liveries": { + "fin_spring": { + "name": "FIN_spring", + "countries": "All" + }, + "chl_spring": { + "name": "CHL_spring", + "countries": "All" + }, + "woodland_autumn": { + "name": "woodland_autumn", + "countries": "All" + }, + "woodland_summer": { + "name": "woodland_summer", + "countries": "All" + }, + "hel_winter": { + "name": "HEL_winter", + "countries": "All" + }, + "woodland_spring": { + "name": "woodland_spring", + "countries": "All" + }, + "hel_autumn": { + "name": "HEL_autumn", + "countries": "All" + }, + "chl_summer": { + "name": "CHL_summer", + "countries": "All" + }, + "fin_autumn": { + "name": "FIN_autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "hel_spring": { + "name": "HEL_spring", + "countries": "All" + }, + "chl_winter": { + "name": "CHL_winter", + "countries": "All" + }, + "fin_winter": { + "name": "FIN_winter", + "countries": "All" + }, + "hel_summer": { + "name": "HEL_summer", + "countries": "All" + }, + "woodland_winter": { + "name": "CHL_winter", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "chl_autumn": { + "name": "CHL_autumn", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "fin_summer": { + "name": "FIN_summer", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore L/44 main gun (APFSDS and HEAT), 7.62 mm machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.7, + "shotsBaseInterval": 7, + "tags": "CA", + "aimTime": 6, + "shotsToFire": 5, + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3, + "canAAA": true + }, + "leopard-2A4_trs": { + "name": "leopard-2A4_trs", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "Leopard-2A4 Trs", + "shortLabel": "Leopard-2A4 Trs", + "type": "Tank", + "enabled": true, + "liveries": { + "winter_woodland": { + "name": "Winter_Woodland", + "countries": "All" + }, + "autumn_woodland": { + "name": "Autumn_Woodland", + "countries": "All" + }, + "tur_winter_desert": { + "name": "TUR_Winter_Desert", + "countries": ["TUR"] + }, + "tur_autumn_desert": { + "name": "TUR_Autumn_Desert", + "countries": ["TUR"] + }, + "tur_autumn_camo": { + "name": "TUR_Autumn_Woodland", + "countries": ["TUR"] + }, + "tur_spring_camo": { + "name": "TUR_Spring_Woodland", + "countries": ["TUR"] + }, + "tur_summer_desert": { + "name": "TUR_Summer_Desert", + "countries": ["TUR"] + }, + "tur_summer_camo": { + "name": "TUR_Summer_Woodland", + "countries": ["TUR"] + }, + "tur_winter_camo": { + "name": "TUR_Winter_Woodland", + "countries": ["TUR"] + }, + "tur_spring_desert": { + "name": "TUR_Spring_Desert", + "countries": ["TUR"] + }, + "spring_woodland": { + "name": "Spring_Woodland", + "countries": "All" + }, + "summer_woodland": { + "name": "Summer_Woodland", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 120 mm smoothbore L/44 main gun (APFSDS and HEAT), 7.62 mm machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.7, + "shotsBaseInterval": 7, + "shotsToFire": 5, + "aimTime": 8, + "tags": "CA", + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 3, + "canAAA": true + }, + "Sd_Kfz_251": { + "name": "Sd_Kfz_251", + "coalition": "red", + "era": "WW2", + "category": "groundunit", + "label": "Sd.Kfz.251 Halftrack", + "shortLabel": "Sd.Kfz.251 Halftrack", + "type": "APC", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 2500, + "engagementRange": 1000, + "description": "Sd.Kfz.251. Half tracked. 7.92 mm machine gun.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.2, + "muzzleVelocity": 765, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 2000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "Blitz_36-6700A": { + "name": "Blitz_36-6700A", + "coalition": "red", + "era": "WW2", + "category": "groundunit", + "label": "Truck Opel Blitz", + "shortLabel": "Truck Opel Blitz", + "type": "Unarmed", + "enabled": true, + "liveries": { + "camoambulance": { + "name": "CamoAmbulance", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "greyambulance": { + "name": "GreyAmbulance", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military cargo truck. Wheeled.", + "abilities": "Combined arms, Rearm", + "canTargetPoint": false, + "canRearm": true, + "tags": "Military, CA", + "markerFile": "groundunit-truck" + }, + "T155_Firtina": { + "name": "T155_Firtina", + "coalition": "blue", + "era": "Modern", + "category": "groundunit", + "label": "SPH T155 Firtina", + "shortLabel": "T155 Firtina", + "type": "Artillery", + "enabled": true, + "liveries": { + "woodland_winter": { + "name": "winter", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "woodland_autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "woodland_summer": { + "name": "summer", + "countries": "All" + }, + "woodland_spring": { + "name": "spring", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 40000, + "description": "SPH T155 Firtina. Tracked. Self propelled 155mm howitzer. 1km min range, 40km max.", + "abilities": "Combined arms, Indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "155mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "VAB_Mephisto": { + "name": "VAB_Mephisto", + "coalition": "blue", + "era": "Late Cold War", + "category": "groundunit", + "label": "VAB Mephisto", + "shortLabel": "VAB Mephisto", + "type": "Tactical Vehicle", + "enabled": true, + "liveries": { + "desert_winter": { + "name": "Desert Winter", + "countries": "All" + }, + "woodland_winter": { + "name": "Woodland Winter", + "countries": "All" + }, + "woodland_autumn": { + "name": "Woodland Autumn", + "countries": "All" + }, + "desert_autumn": { + "name": "Desert Autumn", + "countries": "All" + }, + "woodland_summer": { + "name": "Woodland Summer", + "countries": "All" + }, + "desert_spring": { + "name": "Desert Spring", + "countries": "All" + }, + "woodland_spring": { + "name": "Woodland Spring", + "countries": "All" + }, + "desert_summer": { + "name": "Desert Summer", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "VAB Mephisto. Wheeled vehicle armed with 4 x HOT 2 missiles.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "CA", + "markerFile": "groundunit-tactical" + }, + "ZTZ96B": { + "name": "ZTZ96B", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "Type 96B", + "shortLabel": "Type 96B", + "type": "Tank", + "enabled": true, + "liveries": { + "jungle camo": { + "name": "Jungle Camo", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 125 mm smoothbore gun (APFSDS and HEAT), 7.62 mm Type 86H-7 machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.9, + "muzzleVelocity": 700, + "aimTime": 5, + "shotsToFire": 5, + "markerFile": "groundunit-tank", + "shotsBaseInterval": 7, + "tags": "CA", + "targetingRange": 100, + "alertnessTimeConstant": 3, + "shotsBaseScatter": 5, + "aimMethodRange": 3000, + "canAAA": false + }, + "ZBD04A": { + "name": "ZBD04A", + "coalition": "red", + "era": "Late Cold War", + "category": "groundunit", + "label": "ZBD-04A IFV", + "shortLabel": "ZBD-04A", + "type": "APC", + "enabled": true, + "liveries": { + "generic jungle": { + "name": "Generic Jungle", + "countries": ["RED", "BLUE", "CHN", "UN"] + }, + "irgc": { + "name": "IRGC", + "countries": ["RED", "BLUE", "UN", "IRN"] + }, + "desert": { + "name": "Desert Camo", + "countries": ["RED", "BLUE", "CHN"] + }, + "generic desert": { + "name": "Generic Desert", + "countries": ["RED", "BLUE", "CHN", "UN"] + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Type 04 Infantry Fighting Vehicle. Tracked. 100 mm gun, 30 mm gun, AT-10 missile.", + "abilities": "Combined arms, Transport", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2.5, + "muzzleVelocity": 1000, + "aimTime": 5, + "shotsToFire": 5, + "tags": "CA", + "markerFile": "groundunit-apc", + "targetingRange": 100, + "aimMethodRange": 4000, + "shotsBaseInterval": 5, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 5 + }, + "HQ-7_LN_SP": { + "name": "HQ-7_LN_SP", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "HQ-7 Self-Propelled LN", + "shortLabel": "HQ-7 Self-Propelled LN", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 15000, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HQ-7_STR_SP": { + "name": "HQ-7_STR_SP", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "HQ-7 Self-Propelled STR", + "shortLabel": "HQ-7 Self-Propelled STR", + "type": "SAM Site Parts", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-sam-radar" + }, + "PLZ05": { + "name": "PLZ05", + "coalition": "red", + "era": "Modern", + "category": "groundunit", + "label": "PLZ-05", + "shortLabel": "PLZ-05", + "type": "Artillery", + "enabled": true, + "liveries": { + "generic jungle": { + "name": "Generic Jungle", + "countries": ["RED", "BLUE", "CHN", "UN"] + }, + "irgc": { + "name": "IRGC", + "countries": ["RED", "BLUE", "UN", "IRN"] + }, + "generic desert": { + "name": "Generic Desert", + "countries": ["RED", "BLUE", "CHN", "UN"] + } + }, + "acquisitionRange": 0, + "engagementRange": 22000, + "description": "PLZ-05 or the Type 05 tracked self propelled howitzer. 155 mm main gun with 12.7 mm machine gun. 1km min range, 22km max.", + "abilities": "Combined arms, indirect fire", + "canTargetPoint": true, + "canRearm": false, + "tags": "155mm, CA", + "markerFile": "groundunit-artillery", + "indirectFire": true, + "aimTime": 120, + "shotsToFire": 2, + "shotsBaseInterval": 30, + "shotsBaseScatter": 15, + "alertnessTimeConstant": 10 + }, + "TYPE-59": { + "name": "TYPE-59", + "coalition": "red", + "era": "Early Cold War", + "category": "groundunit", + "label": "Type 59", + "shortLabel": "Type 59", + "type": "Tank", + "enabled": true, + "liveries": { + "pla camo": { + "name": "PLA Army", + "countries": ["CHN"] + } + }, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "Main battle tank. Tracked. 100 mm Type 59 rifled gun (AP and HE), 7.62 mm Type 59T machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank", + "targetingRange": 100, + "muzzleVelocity": 700, + "barrelHeight": 2.5, + "aimTime": 5, + "shotsToFire": 5, + "shotsBaseInterval": 10, + "tags": "CA", + "aimMethodRange": 3000, + "shotsBaseScatter": 5, + "alertnessTimeConstant": 6, + "canAAA": false + }, + "Kubelwagen_82": { + "name": "Kubelwagen_82", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LUV Kubelwagen Jeep", + "shortLabel": "LUV Kubelwagen Jeep", + "type": "Unarmed", + "enabled": true, + "liveries": { + "camoambulance": { + "name": "CamoAmbulance", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "greyambulance": { + "name": "GreyAmbulance", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Light utility vehicle. Wheeled.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Sd_Kfz_2": { + "name": "Sd_Kfz_2", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LUV Kettenrad", + "shortLabel": "LUV Kettenrad", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Light utility vehicle. Tracked.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Sd_Kfz_7": { + "name": "Sd_Kfz_7", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tractor Sd.Kfz.7 Art'y Tractor", + "shortLabel": "Tractor Sd.Kfz.7 Art'y Tractor", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Artillery tractor. Tracked.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Horch_901_typ_40_kfz_21": { + "name": "Horch_901_typ_40_kfz_21", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LUV Horch 901 Staff Car", + "shortLabel": "LUV Horch 901 Staff Car", + "type": "Unarmed", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Staff Car. Wheeled. Transportation of military personnel and officers", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck", + "tags": "CA" + }, + "Tiger_I": { + "name": "Tiger_I", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Tiger 1", + "shortLabel": "Tk Tiger 1", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Tiger_II_H": { + "name": "Tiger_II_H", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Tiger II", + "shortLabel": "Tk Tiger II", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Pz_V_Panther_G": { + "name": "Pz_V_Panther_G", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Panther G", + "shortLabel": "Tk Panther G (Pz V)", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "tags": "Pz V", + "markerFile": "groundunit-tank" + }, + "Jagdpanther_G1": { + "name": "Jagdpanther_G1", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun Jagdpanther TD", + "shortLabel": "Self Propelled Gun Jagdpanther TD", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "JagdPz_IV": { + "name": "JagdPz_IV", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun Jagdpanzer IV TD", + "shortLabel": "Self Propelled Gun Jagdpanzer IV TD", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Stug_IV": { + "name": "Stug_IV", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun StuG IV AG", + "shortLabel": "Self Propelled Gun StuG IV AG", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "SturmPzIV": { + "name": "SturmPzIV", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun Brummbaer AG", + "shortLabel": "Self Propelled Gun Brummbaer AG", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 4500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Wespe124": { + "name": "Wespe124", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SPH Sd.Kfz.124 Wespe 105mm", + "shortLabel": "SPH Sd.Kfz.124 Wespe 105mm", + "type": "Artillery", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 10500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery" + }, + "Sd_Kfz_234_2_Puma": { + "name": "Sd_Kfz_234_2_Puma", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Scout Puma AC", + "shortLabel": "Scout Puma AC", + "type": "Armoured Car", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "KDO_Mod40": { + "name": "KDO_Mod40", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA Kdo.G.40", + "shortLabel": "AAA Kdo.G.40", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": false + }, + "Flakscheinwerfer_37": { + "name": "Flakscheinwerfer_37", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SL Flakscheinwerfer 37", + "shortLabel": "SL Flakscheinwerfer 37", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 15000, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": true, + "flak": true + }, + "Maschinensatz_33": { + "name": "Maschinensatz_33", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Maschinensatz 33 Gen", + "shortLabel": "Maschinensatz 33 Gen", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": false + }, + "soldier_mauser98": { + "name": "soldier_mauser98", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Infantry Mauser 98", + "shortLabel": "Infantry Mauser 98", + "type": "Infantry", + "enabled": false, + "liveries": { + "isr": { + "name": "Desert", + "countries": ["AUSAF"] + }, + "grg": { + "name": "Digital green (Georgia)", + "countries": ["AUSAF"] + }, + "grc": { + "name": "Digital green", + "countries": ["hide"] + }, + "digital_grey": { + "name": "Digital grey", + "countries": ["ISR", "USA", "AUSAF"] + }, + "desert": { + "name": "Desert", + "countries": ["AUSAF", "USA"] + }, + "default": { + "name": "Default", + "countries": ["hide"] + }, + "ins": { + "name": "Striped green", + "countries": ["AUSAF"] + }, + "digital_green": { + "name": "Digital green", + "countries": ["AUSAF", "USA"] + }, + "usa": { + "name": "Digital grey", + "countries": ["AUSAF", "hide"] + } + }, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-infantry" + }, + "SK_C_28_naval_gun": { + "name": "SK_C_28_naval_gun", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Gun 15cm SK C/28 Naval in Bunker", + "shortLabel": "Gun 15cm SK C/28 Naval in Bunker", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 20000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery", + "indirectFire": true + }, + "fire_control": { + "name": "fire_control", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Bunker with Fire Control Center", + "shortLabel": "Bunker with Fire Control Center", + "type": "SAM Site Parts", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1100, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Stug_III": { + "name": "Stug_III", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun StuG III G AG", + "shortLabel": "Self Propelled Gun StuG III G AG", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Elefant_SdKfz_184": { + "name": "Elefant_SdKfz_184", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun Elefant TD", + "shortLabel": "Self Propelled Gun Elefant TD", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "v1_launcher": { + "name": "v1_launcher", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "V-1 Launch Ramp", + "shortLabel": "V-1 Launch Ramp", + "type": "Missile System", + "enabled": false, + "liveries": { + "irq": { + "name": "IRQ_Yellow", + "countries": "All" + }, + "irn": { + "name": "IRN_Yellow", + "countries": "All" + }, + "default": { + "name": "Green", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "FuMG-401": { + "name": "FuMG-401", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FuMG-401 Freya LZ", + "shortLabel": "FuMG-401 Freya LZ", + "type": "Radar (EWR)", + "enabled": false, + "liveries": { + "grey_summer": { + "name": "Grey_Summer", + "countries": "All" + }, + "grey_spring": { + "name": "Grey_Spring", + "countries": "All" + }, + "grey_winter": { + "name": "Grey_Winter", + "countries": "All" + }, + "grey_autumn": { + "name": "Grey_Autumn", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "FuSe-65": { + "name": "FuSe-65", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FuSe-65 Würzburg-Riese", + "shortLabel": "FuSe-65 Würzburg-Riese", + "type": "Radar (EWR)", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 60000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Pak40": { + "name": "Pak40", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FH Pak 40 75mm", + "shortLabel": "FH Pak 40 75mm", + "type": "Artillery", + "enabled": false, + "liveries": { + "summer": { + "name": "summer", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery" + }, + "LeFH_18-40-105": { + "name": "LeFH_18-40-105", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FH LeFH-18 105mm", + "shortLabel": "FH LeFH-18 105mm", + "type": "Artillery", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 10500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery", + "indirectFire": true + }, + "Cromwell_IV": { + "name": "Cromwell_IV", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Cromwell IV", + "shortLabel": "Tk Cromwell IV", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "M4A4_Sherman_FF": { + "name": "M4A4_Sherman_FF", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Tk M4A4 Sherman Firefly", + "shortLabel": "Tk M4A4 Sherman Firefly", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "soldier_wwii_br_01": { + "name": "soldier_wwii_br_01", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Infantry SMLE No.4 Mk-1", + "shortLabel": "Infantry SMLE No.4 Mk-1", + "type": "Infantry", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-infantry" + }, + "Centaur_IV": { + "name": "Centaur_IV", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Centaur IV CS", + "shortLabel": "Tk Centaur IV CS", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "Churchill_VII": { + "name": "Churchill_VII", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Churchill VII", + "shortLabel": "Churchill VII", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "Tank. Tracked. 95 mm main gun, 7.92 mm coax machine gun.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "barrelHeight": 2, + "muzzleVelocity": 800, + "aimTime": 5, + "shotsToFire": 100, + "markerFile": "groundunit-tank" + }, + "Daimler_AC": { + "name": "Daimler_AC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Car Daimler Armored", + "shortLabel": "Car Daimler Armored", + "type": "Armoured Car", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Tetrarch": { + "name": "Tetrarch", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tk Tetrach", + "shortLabel": "Tk Tetrach", + "type": "Armoured Car", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "QF_37_AA": { + "name": "QF_37_AA", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA QF 3.7\"", + "shortLabel": "AAA QF 3.7\"", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 9000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimTime": 6 + }, + "Allies_Director": { + "name": "Allies_Director", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "Allies Rangefinder", + "shortLabel": "Allies Rangefinder (DRT)", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "Rangefinder from WW2 for guns", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "DRT", + "markerFile": "groundunit-truck" + }, + "CCKW_353": { + "name": "CCKW_353", + "coalition": "blue", + "era": "WW2", + "category": "groundunit", + "label": "GMC 6x6 'Jimmy'", + "shortLabel": "GMC 6x6", + "type": "Unarmed", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "GMC 6x6 'Jimmy' wheeled truck aka 2 1/2 ton truck.", + "abilities": "Rearm,", + "canTargetPoint": false, + "canRearm": true, + "tags": "Military, Rearm", + "markerFile": "groundunit-truck" + }, + "Willys_MB": { + "name": "Willys_MB", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Car Willys Jeep", + "shortLabel": "Car Willys Jeep", + "type": "Unarmed", + "enabled": false, + "liveries": { + "2taf-raf-ambulance": { + "name": "2TAF-RAF-Ambulance", + "countries": "All" + }, + "army-ambulance": { + "name": "ARMY-Ambulance", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "2taf-rcaf-ambulance": { + "name": "2TAF-RCAF-AMBULANCE", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "raf-early-ambulance": { + "name": "RAF-EARLY-Ambulance", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "M12_GMC": { + "name": "M12_GMC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SPH M12 GMC 155mm", + "shortLabel": "SPH M12 GMC 155mm", + "type": "Artillery", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 18300, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery" + }, + "M30_CC": { + "name": "M30_CC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Ammo M30 Cargo Carrier", + "shortLabel": "Ammo M30 Cargo Carrier", + "type": "Unarmed", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "soldier_wwii_us": { + "name": "soldier_wwii_us", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Infantry M1 Garand", + "shortLabel": "Infantry M1 Garand", + "type": "Infantry", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-infantry" + }, + "M10_GMC": { + "name": "M10_GMC", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Self Propelled Gun M10 GMC TD", + "shortLabel": "Self Propelled Gun M10 GMC TD", + "type": "Tank", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-tank" + }, + "M8_Greyhound": { + "name": "M8_Greyhound", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Scout M8 Greyhound AC", + "shortLabel": "Scout M8 Greyhound AC", + "type": "Armoured Car", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M2A1-105": { + "name": "M2A1-105", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "FH M2A1 105mm", + "shortLabel": "FH M2A1 105mm", + "type": "Artillery", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 11500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-artillery", + "indirectFire": true + }, + "M4_Tractor": { + "name": "M4_Tractor", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tractor M4 High Speed", + "shortLabel": "Tractor M4 High Speed", + "type": "Unarmed", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "markerFile": "groundunit-truck" + }, + "M45_Quadmount": { + "name": "M45_Quadmount", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA M45 Quadmount HB 12.7mm", + "shortLabel": "AAA M45 Quadmount HB 12.7mm", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimTime": 6 + }, + "M1_37mm": { + "name": "M1_37mm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA M1 37mm", + "shortLabel": "AAA M1 37mm", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "autumn", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 5700, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "markerFile": "groundunit-aaa", + "canAAA": true, + "aimTime": 5 + }, + "DR_50Ton_Flat_Wagon": { + "name": "DR_50Ton_Flat_Wagon", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "DR 50-ton flat wagon", + "shortLabel": "DR 50-ton flat wagon", + "type": "Train", + "enabled": false, + "liveries": { + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Car" + }, + "DRG_Class_86": { + "name": "DRG_Class_86", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "DRG Class 86", + "shortLabel": "DRG Class 86", + "type": "Train", + "enabled": false, + "liveries": { + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Loco" + }, + "German_covered_wagon_G10": { + "name": "German_covered_wagon_G10", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Wagon G10", + "shortLabel": "Wagon G10 (Germany)", + "type": "Carriage", + "enabled": false, + "liveries": { + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Germany" + }, + "German_tank_wagon": { + "name": "German_tank_wagon", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "Tank Car", + "shortLabel": "Tank Car (Germany)", + "type": "Carriage", + "enabled": false, + "liveries": { + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "tags": "Germany" + }, + "SA-18 Igla comm": { + "name": "SA-18 Igla comm", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "MANPADS SA-18 Igla \"Grouse\" C2", + "shortLabel": "MANPADS SA-18 Igla \"Grouse\" C2", + "type": "AirDefence", + "enabled": false, + "liveries": {} + }, + "flak30": { + "name": "flak30", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA Flak 38 20mm", + "shortLabel": "AAA Flak 38 20mm", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "flak": true + }, + "flak36": { + "name": "flak36", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA 8,8cm Flak 36", + "shortLabel": "AAA 8,8cm Flak 36", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "flak": true + }, + "flak37": { + "name": "flak37", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA 8,8cm Flak 37", + "shortLabel": "AAA 8,8cm Flak 37", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "flak": true + }, + "flak38": { + "name": "flak38", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA Flak-Vierling 38 Quad 20mm", + "shortLabel": "AAA Flak-Vierling 38 Quad 20mm", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "flak": true + }, + "flak41": { + "name": "flak41", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "AAA 8,8cm Flak 41", + "shortLabel": "AAA 8,8cm Flak 41", + "type": "AAA", + "enabled": false, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + } + }, + "flak": true + }, + "HEMTT_C-RAM_Phalanx": { + "name": "HEMTT_C-RAM_Phalanx", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "LPWS C-RAM", + "shortLabel": "LPWS C-RAM", + "type": "AirDefence", + "enabled": false, + "liveries": {} + }, + "S-300PS 40B6MD sr_19J6": { + "name": "S-300PS 40B6MD sr_19J6", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM SA-10 S-300 \"Grumble\" Tin Shield SR", + "shortLabel": "SAM SA-10 S-300 \"Grumble\" Tin Shield SR", + "type": "AirDefence", + "enabled": false, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + } + }, + "S-300PS 5H63C 30H6_tr": { + "name": "S-300PS 5H63C 30H6_tr", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "SAM SA-10 S-300 \"Grumble\" Flap Lid-B TR", + "shortLabel": "SAM SA-10 S-300 \"Grumble\" Flap Lid-B TR", + "type": "AirDefence", + "enabled": false, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + } + } + }, + "TugHarlan_drivable": { + "name": "TugHarlan_drivable", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "M92 Tug Harlan drivable", + "shortLabel": "M92 Tug Harlan drivable", + "type": "Unarmed", + "enabled": false, + "liveries": { + "green": { + "name": "green", + "countries": "All" + }, + "white": { + "name": "white", + "countries": "All" + } + } + }, + "B600_drivable": { + "name": "B600_drivable", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "M92 B600 drivable", + "shortLabel": "M92 B600 drivable", + "type": "Unarmed", + "enabled": false, + "liveries": { + "civil version": { + "name": "civil version", + "countries": "All" + } + } + }, + "MJ-1_drivable": { + "name": "MJ-1_drivable", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "M92 MJ-1 drivable", + "shortLabel": "M92 MJ-1 drivable", + "type": "Unarmed", + "enabled": false, + "liveries": { + "option 5": { + "name": "option 5", + "countries": "All" + }, + "option 4": { + "name": "option 4", + "countries": "All" + }, + "option 2": { + "name": "option 2", + "countries": "All" + }, + "option 3": { + "name": "option 3", + "countries": "All" + } + } + }, + "P20_drivable": { + "name": "P20_drivable", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "M92 P20 drivable", + "shortLabel": "M92 P20 drivable", + "type": "Unarmed", + "enabled": false, + "liveries": { + "the mig killers": { + "name": "The Mig Killers", + "countries": "All" + }, + "police": { + "name": "Police", + "countries": "All" + }, + "post service": { + "name": "Post Service", + "countries": "All" + }, + "swat": { + "name": "SWAT", + "countries": "All" + }, + "fire dept": { + "name": "Fire Dept", + "countries": "All" + } + } + }, + "r11_volvo_drivable": { + "name": "r11_volvo_drivable", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "M92 R11 Volvo drivable", + "shortLabel": "M92 R11 Volvo drivable", + "type": "Unarmed", + "enabled": false, + "liveries": { + "option 5": { + "name": "option 5", + "countries": "All" + }, + "option 4": { + "name": "option 4", + "countries": "All" + }, + "option 2": { + "name": "option 2", + "countries": "All" + }, + "option 3": { + "name": "option 3", + "countries": "All" + } + } + }, + "L118_Unit": { + "name": "L118_Unit", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "L118 Light Artillery Gun", + "shortLabel": "L118 Light Artillery Gun", + "type": "Artillery", + "enabled": false, + "liveries": {} + }, + "HQ-7_LN_P": { + "name": "HQ-7_LN_P", + "coalition": "", + "era": "", + "category": "groundunit", + "label": "HQ-7 LN (Player)", + "shortLabel": "HQ-7 LN (Player)", + "type": "AirDefence", + "enabled": false, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + } + } +} diff --git a/scripts/python/API/databases/helicopterdatabase.json b/scripts/python/API/databases/helicopterdatabase.json new file mode 100644 index 00000000..64a8f663 --- /dev/null +++ b/scripts/python/API/databases/helicopterdatabase.json @@ -0,0 +1,7733 @@ +{ + "AH-1W": { + "name": "AH-1W", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "AH-1W Cobra", + "shortLabel": "AH1", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70 WP", + "name": "14xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70 WP", + "name": "38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 14xHYDRA-70", + "name": "8xBGM-71, 14xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 14xHYDRA-70 WP", + "name": "8xBGM-71, 14xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 38xHYDRA-70 WP", + "name": "8xBGM-71, 38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70", + "name": "14xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70", + "name": "38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114", + "name": "8xAGM-114", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 4 + } + ], + "enabled": true, + "code": "28xHYDRA-70", + "name": "28xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 14xHYDRA-70", + "name": "8xAGM-114, 14xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70 WP", + "name": "8xAGM-114, 38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71", + "name": "8xBGM-71", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 14xHYDRA-70 WP", + "name": "8xAGM-114, 14xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "76xHYDRA-70", + "name": "76xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70", + "name": "8xAGM-114, 38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 38xHYDRA-70", + "name": "8xBGM-71, 38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + } + ], + "filename": "ah-1.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "turkey 1": { + "name": "Turkey", + "countries": [ + "TUR" + ] + }, + "standard": { + "name": "Standard", + "countries": [ + "ISR", + "USA" + ] + }, + "turkey 2": { + "name": "Turkey 2", + "countries": [ + "TUR" + ] + }, + "ah-1 bd iran": { + "name": "IRAN Cobra", + "countries": [ + "IRN" + ] + }, + "usa marines": { + "name": "Marines", + "countries": [ + "USA" + ] + }, + "usa x black": { + "name": "Black", + "countries": [ + "USA" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Cobra", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 53 + }, + "AH-64D_BLK_II": { + "name": "AH-64D_BLK_II", + "coalition": "blue", + "era": "Modern", + "category": "helicopter", + "label": "AH-64D Apache", + "shortLabel": "AH64", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "Fuel tank 230 gal", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * Fuel Tank 230 gal", + "name": "2 * Fuel Tank 230 gal", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "name": "2 * M261: M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 4 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "4 * Hellfire station: 4*AGM-114K", + "name": "4 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 4 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "4 * M261: M151 (6PD)", + "name": "4 * M261: M151 (6PD)", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + }, + { + "name": "Fuel tank 230 gal", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", + "name": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "Fuel tank 230 gal", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * Fuel Tank 230 gal, 2 * Hellfire station: 4*AGM-114K", + "name": "2 * Fuel Tank 230 gal, 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: A/B - M151; E - M274", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: A/B - M151 (6PD), E - M274 (6SK), 2 * Hellfire station: 4*AGM-114K", + "name": "2 * M261: A/B - M151 (6PD), E - M274 (6SK), 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: A/B - M151; E - M257", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: A/B - M151 (6PD), E - M257 (6IL), 2 * Hellfire station: 4*AGM-114K", + "name": "2 * M261: A/B - M151 (6PD), E - M257 (6IL), 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: C - M257; D/E - M151", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: C - M257 (6IL), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "name": "2 * M261: C - M257 (6IL), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: C - M274; D/E - M151", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: C - M274 (6SK), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "name": "2 * M261: C - M274 (6SK), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114K", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "name": "2 * M261: M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 4 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "4 * Hellfire station: 4*AGM-114L", + "name": "4 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "Fuel tank 230 gal", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * Fuel Tank 230 gal, 2 * Hellfire station: 4*AGM-114L", + "name": "2 * Fuel Tank 230 gal, 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: A/B - M151; E - M274", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: A/B - M151 (6PD), E - M274 (6SK), 2 * Hellfire station: 4*AGM-114L", + "name": "2 * M261: A/B - M151 (6PD), E - M274 (6SK), 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: A/B - M151; E - M257", + "quantity": 2 + }, + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: A/B - M151 (6PD), E - M257 (6IL), 2 * Hellfire station: 4*AGM-114L", + "name": "2 * M261: A/B - M151 (6PD), E - M257 (6IL), 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: C - M257; D/E - M151", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: C - M257 (6IL), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "name": "2 * M261: C - M257 (6IL), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114L Hellfire", + "quantity": 2 + }, + { + "name": "M261 - 19 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: C - M274; D/E - M151", + "quantity": 2 + }, + { + "name": "Internal Auxiliary Fuel tank 100 gal Combo Pak", + "quantity": 1 + }, + { + "name": "FCR", + "quantity": 1 + } + ], + "enabled": true, + "code": "2 * M261: C - M274 (6SK), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "name": "2 * M261: C - M274 (6SK), D/E - M151 (6PD), 2 * Hellfire station: 4*AGM-114L", + "roles": [ + "FAC-A", + "Antiship Strike", + "CAS", + "Escort", + "Strike" + ] + } + ], + "filename": "ah-64.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "south carolina national guard - 40332": { + "name": "Ghostriders, 1-151st ATKHB SCNG - 40332", + "countries": [ + "USA" + ] + }, + "saudi arabian national guard": { + "name": "Saudi Arabian National Guard", + "countries": [ + "SAU" + ] + }, + "301 squadron redskins netherlands": { + "name": "301 Squadron Redskins, Royal Netherlands Air Force", + "countries": [ + "NETH" + ] + }, + "12th combat aviation brigade griffins": { + "name": "12th Combat Aviation Brigade Griffins", + "countries": [ + "USA" + ] + }, + "662 squadron 3 regiment zj171 uk": { + "name": "662 Squadron 3 Regiment AAC UK - ZJ171", + "countries": [ + "UK" + ] + }, + "12th combat aviation brigade weathered": { + "name": "12th Combat Aviation Brigade Weathered", + "countries": [ + "USA" + ] + }, + "avengers 1-227th arb": { + "name": "A Company, Avengers, 1-227th ARB", + "countries": [ + "USA" + ] + }, + "iaf 113th hornet squadron": { + "name": "IAF 113th Hornet Squadron", + "countries": [ + "ISR" + ] + }, + "devils 1-1 arb": { + "name": "A Company, Devils, 1-1 ARB", + "countries": [ + "USA" + ] + }, + "indonesian army - 11th squadron by dendi wirson": { + "name": "Indonesian Army - 11th Squadron/Serbu by Dendi Wirson", + "countries": "All" + }, + "default": { + "name": "default livery", + "countries": "All" + }, + "25th_combat_aviation_brigade_by_lee1hy": { + "name": "2-6 CAV, 25th Combat Aviation Brigade", + "countries": [ + "USA" + ] + }, + "korea air force": { + "name": "Republic of Korea Army", + "countries": [ + "KOR" + ] + }, + "1st_bat_greek_pegasus_es1008": { + "name": "Pegasus Display Team - ES1008, Hellenic Army Aviation", + "countries": [ + "GRC" + ] + }, + "silver spurs 3-17 cav": { + "name": "A Troop, Silver Spurs, 3-17 CAV", + "countries": [ + "USA" + ] + }, + "664 squadron 9 regiment uk": { + "name": "664 Squadron 9 Regiment AAC UK", + "countries": [ + "UK" + ] + }, + "south carolina national guard - 40331": { + "name": "Ghostriders, 1-151st ATKHB SCNG - 40331", + "countries": [ + "USA" + ] + }, + "apache iaf grey": { + "name": "Indian Air Force - Gray", + "countries": [ + "IND" + ] + }, + "grim reapers 4-2 arb": { + "name": "B Company, Grim Reapers, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "wolfpack 1-82 arb": { + "name": "Wolfpack, 1-82 ARB", + "countries": [ + "USA" + ] + }, + "uae armed forces - od": { + "name": "UAE Armed Forces - Olive Drab", + "countries": [ + "ARE" + ] + }, + "archangel 4-2 arb": { + "name": "A Company, Archangel, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "south carolina national guard - drab tads": { + "name": "Ghostriders, 1-151st ATKHB SCNG - Drab TADS", + "countries": [ + "USA" + ] + }, + "gunslingers 2-159th arb": { + "name": "C Company, Gunslingers, 2-159th ARB", + "countries": [ + "USA" + ] + }, + "egypt air force": { + "name": "Egyptian Air Force", + "countries": [ + "EGY" + ] + }, + "jgsdf\u2014\u20141st_combat_helicopter_unit": { + "name": "1st Combat Helicopter Unit, Japanese Ground SDF", + "countries": [ + "JPN" + ] + }, + "1st attack helicopter battalion greece": { + "name": "1st Attack Helicopter Battalion, Hellenic Army Aviation", + "countries": [ + "GRC" + ] + }, + "slayers 4-2 arb": { + "name": "C Company, Slayers, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "south carolina national guard": { + "name": "Ghostriders, 1-151st ATKHB SCNG - Gray TADS", + "countries": [ + "USA" + ] + }, + "the air pirates 1-211th arb": { + "name": "A Company, The Air Pirates, 1-211th ARB UTNG", + "countries": [ + "USA" + ] + }, + "qatar qeaf": { + "name": "Qatar Emiri Air Force", + "countries": [ + "QAT" + ] + }, + "killer bees 1-130th arb ncng": { + "name": "B Company, Killer Bees, 1-130th ARB NCNG", + "countries": [ + "USA" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Apache", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 58.2 + }, + "Ka-50_3": { + "name": "Ka-50_3", + "coalition": "red", + "era": "Late Cold War", + "category": "helicopter", + "label": "Ka-50 Hokum A", + "shortLabel": "Ka50", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xIgla", + "name": "4xIgla", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "Kh-25ML (AS-10 Karen) - 300kg, ASM, Semi-Act Laser", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKh-25ML, 10xS-13, 4xIgla", + "name": "2xKh-25ML, 10xS-13, 4xIgla", + "roles": [ + "Antiship Strike", + "CAS" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 40xS-8KOM, 4xIgla", + "name": "12x9A4172, 40xS-8KOM, 4xIgla", + "roles": [ + "CAS", + "Escort" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 40xS-8OFP, 4xIgla", + "name": "12x9A4172, 40xS-8OFP, 4xIgla", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 40xS-13, 4xIgla", + "name": "12x9A4172, 40xS-13, 4xIgla", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8KOM, 4xIgla", + "name": "80xS-8KOM, 4xIgla", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8OFP, 4xIgla", + "name": "80xS-8OFP, 4xIgla", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 4 + } + ], + "enabled": true, + "code": "20xS-20, 4xIgla", + "name": "20xS-20, 4xIgla", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xUPK-23, 4xIgla", + "name": "4xUPK-23, 4xIgla", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13, 2xFAB-500, 4xIgla", + "name": "10xS-13, 2xFAB-500, 4xIgla", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13, 2xFAB-250, 4xIgla", + "name": "10xS-13, 2xFAB-250, 4xIgla", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8OM IL", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8OM, 4xIgla", + "name": "80xS-8OM, 4xIgla", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8TsM, 4xIgla", + "name": "80xS-8TsM, 4xIgla", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8OFP, 2xFuel, 4xIgla", + "name": "40xS-8OFP, 2xFuel, 4xIgla", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 2xFuel, 4xIgla", + "name": "12x9A4172, 2xFuel, 4xIgla", + "roles": [ + "Escort" + ] + } + ], + "filename": "ka-50.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "ka-50_desert_werewolf": { + "name": "Desert camo #018 Zhukovsky 1995 Werewolf", + "countries": [ + "RUS" + ] + }, + "ka-50_black_werewolf": { + "name": "Black #020 Farnborough 1992 Werewolf", + "countries": [ + "RUS" + ] + }, + "default": { + "name": "Standart camo Russian Air Force", + "countries": [ + "RUS" + ] + }, + "ka-50_black_h347_blackshark": { + "name": "Black H347 Le Bourget 1997 Black Shark", + "countries": [ + "RUS" + ] + }, + "ka-50_blackshark_torzhok": { + "name": "344th Center for Combat Employment Torzhok city Shark 1997", + "countries": [ + "RUS" + ] + }, + "ka-50_camo_chechnya_ussr": { + "name": "Standart camo n/a 2000-2001 Chechnya", + "countries": [ + "BLR", + "SUN", + "CUB", + "FRA", + "SWE", + "RSA", + "POL", + "UKR", + "KOR", + "CHL", + "ISR", + "THA", + "USA", + "AUS", + "FIN", + "AUSAF", + "SYR", + "QAT", + "OMN", + "ROU", + "TUR", + "TUN", + "LBY", + "BHR", + "ARE", + "CAN", + "NOR", + "YEM", + "EGY", + "UK", + "JOR", + "MYS", + "VEN", + "RSI", + "SRB", + "SUI", + "HUN", + "BRA", + "PHL", + "DZA", + "VNM", + "CHN", + "AUT", + "IND", + "KAZ", + "ABH", + "BGR", + "JPN", + "MAR", + "SVK", + "INS", + "HRV", + "IRQ", + "RSO", + "ETH", + "SPN", + "NETH", + "GRC", + "PRK", + "IDN", + "YUG", + "MEX", + "ITA", + "GER", + "BEL", + "DEN", + "IRN", + "CZE", + "GRG", + "RUS", + "HND", + "NZG", + "KWT", + "SAU", + "SDN", + "PAK" + ] + }, + "hokum b by stone sky": { + "name": "Hokum B by Stone Sky", + "countries": "All" + }, + "ka-50_standart_black_russianairforce": { + "name": "Standart black Russian Air Force", + "countries": [ + "RUS" + ] + }, + "ka-50_desert_blackshark": { + "name": "Desert camo #018 Zhukovsky 1997 Black Shark", + "countries": [ + "RUS" + ] + }, + "ka-50_black_neutral": { + "name": "Black neutral n/a", + "countries": "All" + } + }, + "type": "Helicopter", + "description": "2 engine, 1 crew attack helicopter. Blackshark", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 52.5 + }, + "Mi-24P": { + "name": "Mi-24P", + "coalition": "red", + "era": "Mid Cold War", + "category": "helicopter", + "label": "Mi-24P Hind", + "shortLabel": "Mi24", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xB8V20 (S-8KOM)+8xATGM 9M114", + "name": "2xB8V20 (S-8KOM)+8xATGM 9M114", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xB8V20 ( S-8KOM)+4xATGM 9M114", + "name": "2xB8V20 ( S-8KOM)+4xATGM 9M114", + "roles": [ + "CAS", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xB8V20 (S-8KOM)+4xATGM 9M114", + "name": "4xB8V20 (S-8KOM)+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xB8V20 (S-8KOM)+2xBombs-250+4xATGM 9M114", + "name": "2xB8V20 (S-8KOM)+2xBombs-250+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8OFP2 MPP", + "quantity": 2 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xB8V20 (S-8OFP2)+4xATGM 9M114", + "name": "2xB8V20 (S-8OFP2)+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "UB-32A-24 - 32 x UnGd Rkts, 57 mm S-5KO HEAT/Frag", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xUB-32A (S-5KO)+4xATGM 9M114", + "name": "4xUB-32A (S-5KO)+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "GUV-8700 w AP-30 - 30mm Grenade Launcher", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xGUV-1 AP30+4xATGM 9M114", + "name": "4xGUV-1 AP30+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "GUV-8700 w AP-30 - 30mm Grenade Launcher", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xGUV-1 AP30+4xATGM 9M114", + "name": "2xGUV-1 AP30+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "GUV-8700 w 1x12.7 mm & 2x7.62 mm Rotary HMG", + "quantity": 2 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xGUV-1 (GUN 12.7+2x7.62) +4xATGM 9M114", + "name": "2xGUV-1 (GUN 12.7+2x7.62) +4xATGM 9M114", + "roles": [ + "CAS", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU (96 AO 2.5RT)+8xATGM 9M114", + "name": "2xKMGU (96 AO 2.5RT)+8xATGM 9M114", + "roles": [ + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xB-13L+4xATGM 9M114", + "name": "2xB-13L+4xATGM 9M114", + "roles": [ + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "APU-68UM3 - S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xS-24B+4xATGM 9M114", + "name": "2xS-24B+4xATGM 9M114", + "roles": [ + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "APU-68UM3 - S-24B - 240mm UnGd Rkt, 235kg, HE/Frag, (Low Smk)", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xS-24B+4xATGM 9M114", + "name": "4xS-24B+4xATGM 9M114", + "roles": [ + "CAS", + "Antiship Strike", + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xBombs-500+4xATGM 9M114", + "name": "2xBombs-500+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xBombs-250+4ATGM 9M114", + "name": "4xBombs-250+4ATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-500 - 268 x PTAB-1M, 500kg CBU Light HEAT/AP", + "quantity": 2 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xRBK-500 (PTAB-1M)+4xATGM 9M114", + "name": "2xRBK-500 (PTAB-1M)+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "RBK-500U - 126 x OAB-2.5RT, 500kg CBU HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xRBK-500U (OAB 2.5RT)+4xATGM 9M114", + "name": "2xRBK-500U (OAB 2.5RT)+4xATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-250 - 42 x PTAB-2.5M, 250kg CBU Medium HEAT/AP", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xRBK-250 (42 PTAB 2.5M) +4ATGM 9M114", + "name": "4xRBK-250 (42 PTAB 2.5M) +4ATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "RBK-250-275 - 150 x AO-1SCh, 250kg CBU HE/Frag", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xRBK-250-275 (150 AO-1SCh)+4ATGM 9M114", + "name": "4xRBK-250-275 (150 AO-1SCh)+4ATGM 9M114", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 4 + }, + { + "name": "Missile Launcher Rack (Empty)", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xPTB-450 Fuel tank", + "name": "4xPTB-450 Fuel tank", + "roles": [ + "Strike" + ] + } + ], + "filename": "mi-24.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "Transport", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "rso": { + "name": "South Osetia KGB", + "countries": "All" + }, + "af 440 ovp": { + "name": "RF Air Force, 440th Helicopter Regiment", + "countries": [ + "RUS", + "SUN" + ] + }, + "united nations": { + "name": "United Nations", + "countries": "All" + }, + "af standard3 old": { + "name": "RF Air Force (weathered) type3", + "countries": [ + "RUS", + "SUN" + ] + }, + "syaaf": { + "name": "Syrian Air Force", + "countries": [ + "SYR" + ] + }, + "af ussr": { + "name": "USSR Air Force", + "countries": [ + "RUS", + "SUN" + ] + }, + "ukrainian army aviation": { + "name": "Ukrainian Army Aviation", + "countries": [ + "UKR" + ] + }, + "georgian air force": { + "name": "Georgian Air Force", + "countries": [ + "GRG" + ] + }, + "iqaf": { + "name": "Iraqi Army Air Corps", + "countries": [ + "IRQ" + ] + }, + "af syzran afb": { + "name": "RF Air Force, Syzran AFB", + "countries": [ + "RUS", + "SUN" + ] + }, + "russian air force": { + "name": "RF Air Force Standard", + "countries": [ + "RUS", + "SUN" + ] + }, + "af torzhok afb": { + "name": "RF Air Force, aerobatics team 'Berkuts'", + "countries": [ + "RUS", + "SUN" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Hind", + "abilities": "Transport", + "canTargetPoint": true, + "canRearm": false, + "length": 57.5 + }, + "Mi-26": { + "name": "Mi-26", + "coalition": "red", + "era": "Late Cold War", + "category": "helicopter", + "label": "Mi-26 Halo", + "shortLabel": "Mi26", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "mi-26.png", + "enabled": true, + "roles": [ + "Transport" + ], + "liveries": { + "china flying dragon aviation": { + "name": "China Flying Dragon Aviation", + "countries": [ + "CHN" + ] + }, + "united nations": { + "name": "United Nations", + "countries": "All" + }, + "7th separate brigade of aa (kalinov)": { + "name": "7th Separate Brigade of AA (Kalinov)", + "countries": [ + "UKR" + ] + }, + "russia_mvd": { + "name": "Russia_MVD", + "countries": [ + "RUS" + ] + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "RUS", + "SUN" + ] + }, + "algerian air force sl-22": { + "name": "Algerian AF SL-22 ", + "countries": [ + "DZA" + ] + }, + "russia_fsb": { + "name": "Russia_FSB", + "countries": [ + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 5 crew transport helicopter. Halo", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 131 + }, + "Mi-28N": { + "name": "Mi-28N", + "coalition": "red", + "era": "Modern", + "category": "helicopter", + "label": "Mi-28N Havoc", + "shortLabel": "M28", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250", + "name": "2xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFuel tank", + "name": "4xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8", + "name": "80xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xKMGU AP", + "name": "4xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xUPK-23", + "name": "4xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 2xKMGU AT", + "name": "16x9M114, 2xKMGU AT", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFAB-500", + "name": "4xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 2xFAB-500", + "name": "16x9M114, 2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8", + "name": "40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8 TsM", + "name": "40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AP", + "name": "2xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xUPK-23", + "name": "2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 2xUPK-23", + "name": "16x9M114, 2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-500", + "name": "2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 40xS-8", + "name": "16x9M114, 40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114", + "name": "16x9M114", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 4 + } + ], + "enabled": true, + "code": "20xS-13", + "name": "20xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 2xKMGU AP", + "name": "16x9M114, 2xKMGU AP", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFAB-250", + "name": "4xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xKMGU AT", + "name": "4xKMGU AT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 40xS-8 TsM", + "name": "16x9M114, 40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8 TsM", + "name": "80xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AT", + "name": "2xKMGU AT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 1 + } + ], + "enabled": true, + "code": "9x9M114", + "name": "9x9M114", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank", + "name": "2xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13", + "name": "10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250, 16x9M114", + "name": "2xFAB-250, 16x9M114", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 10xS-13", + "name": "16x9M114, 10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + } + ], + "filename": "mi-28.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "aaf sc-12": { + "name": "Algerian AF Desert SC-12", + "countries": [ + "DZA" + ] + }, + "aaf sc-11": { + "name": "Algerian AF Desert SC-11", + "countries": [ + "DZA" + ] + }, + "night": { + "name": "Night", + "countries": [ + "RUS" + ] + }, + "standard": { + "name": "Standard", + "countries": [ + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Havoc", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "length": 56.4 + }, + "Mi-8MT": { + "name": "Mi-8MT", + "coalition": "red", + "era": "Mid Cold War", + "category": "helicopter", + "label": "Mi-8MT Hip", + "shortLabel": "Mi8", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "4 x B8", + "name": "4 x B8", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "GUV-8700 w AP-30 - 30mm Grenade Launcher", + "quantity": 2 + } + ], + "enabled": true, + "code": "4 x B8 + 2GUV_AP-30 (GrL 30mm)", + "name": "4 x B8 + 2GUV_AP-30 (GrL 30mm)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "GUV-8700 w 1x12.7 mm & 2x7.62 mm Rotary HMG", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2 x UPK +2 x B8", + "name": "2 x UPK +2 x B8", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "GUV-8700 w AP-30 - 30mm Grenade Launcher", + "quantity": 2 + }, + { + "name": "GUV-8700 w 1x12.7 mm & 2x7.62 mm Rotary HMG", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2 xB8 + 2GUV_YaKB (MG-12.7+7.62)+ 2GUV_AP-30 (GrL 30mm)", + "name": "2 xB8 + 2GUV_YaKB (MG-12.7+7.62)+ 2GUV_AP-30 (GrL 30mm)", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-100 - 100kg GP Bomb LD", + "quantity": 6 + } + ], + "enabled": true, + "code": "6 x FAB-100", + "name": "6 x FAB-100", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2 x B8 + 2 x UPK-23-250", + "name": "2 x B8 + 2 x UPK-23-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "2 x UPK--23-250", + "name": "2 x UPK--23-250", + "roles": [ + "Strike" + ] + } + ], + "filename": "mi-8.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "Transport", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "russia_vvs_ma": { + "name": "RF Navy", + "countries": [ + "RUS" + ] + }, + "russia_vvs_grey_2": { + "name": "RF Army Gray", + "countries": [ + "RUS" + ] + }, + "united kingdom": { + "name": "Project curium", + "countries": [ + "UK" + ] + }, + "italy navy": { + "name": "Fictional NAVY", + "countries": [ + "ITA" + ] + }, + "ir afagir blue": { + "name": "AFAGIR Blue", + "countries": [ + "IRN" + ] + }, + "russia_un": { + "name": "RF UN", + "countries": [ + "RUS", + "UN" + ] + }, + "algerian af green evsan": { + "name": "Algerian AF Green EVSAN", + "countries": [ + "DZA" + ] + }, + "china un": { + "name": "PLA Army Aviation United Nations", + "countries": [ + "CHN" + ] + }, + "ir iranian special police forces": { + "name": "NAJA", + "countries": [ + "IRN" + ] + }, + "georgia": { + "name": "Georgian Standard", + "countries": [ + "GRG" + ] + }, + "china plaaa camo": { + "name": "PLA Army Aviation Camo", + "countries": [ + "CHN" + ] + }, + "russia_vertolety_russia": { + "name": "Civil Vertolety RUSSIA", + "countries": [ + "RUS" + ] + }, + "russia_naryan-mar": { + "name": "Civil_Russia Naryan-Mar", + "countries": [ + "RUS" + ] + }, + "standard": { + "name": "Standard", + "countries": "All" + }, + "russia_vvs_standard": { + "name": " RF Army Standard", + "countries": [ + "RUS" + ] + }, + "russia_gazprom": { + "name": "Civil Gazprom Avia", + "countries": [ + "RUS" + ] + }, + "belgium": { + "name": "Fictional Olive", + "countries": [ + "BEL" + ] + }, + "ir afagir sand": { + "name": "AFAGIR Sand", + "countries": [ + "IRN" + ] + }, + "spain": { + "name": "Fictional Spain AF", + "countries": [ + "SPN" + ] + }, + "rs1_bp_rs01": { + "name": "[RS1]BP Rescue", + "countries": "All" + }, + "algerian af green": { + "name": "Algerian AF Green", + "countries": [ + "DZA" + ] + }, + "bp_rs01": { + "name": "BP_RS01", + "countries": "All" + }, + "bulgarian af": { + "name": "Bulgarian Air Force", + "countries": [ + "BGR" + ] + }, + "russia_pf_ambulance": { + "name": "Russia Ambulance (PF)", + "countries": [ + "RUS" + ] + }, + "germany": { + "name": "Germany ARMY", + "countries": [ + "GER" + ] + }, + "france navy": { + "name": "Fictional NAVY", + "countries": [ + "FRA" + ] + }, + "russia_lii_gromov ra-25546": { + "name": "Civil Lii Gromov RA-25546", + "countries": [ + "RUS" + ] + }, + "italy army": { + "name": "Fictional ARMY", + "countries": [ + "ITA" + ] + }, + "netherlands army": { + "name": "Fictional ARMY", + "countries": [ + "NETH" + ] + }, + "russia_vertolety_russia_2": { + "name": "Civil Vertolety RUSSIA 22880", + "countries": [ + "RUS" + ] + }, + "russia_kazanvz": { + "name": "Civil KazanVZ", + "countries": [ + "RUS" + ] + }, + "russia_police": { + "name": "Civil Russia Police", + "countries": [ + "RUS" + ] + }, + "netherlands navy": { + "name": "Fictional NAVY", + "countries": [ + "NETH" + ] + }, + "china plaaa white": { + "name": "PLA Army Aviation White", + "countries": [ + "CHN" + ] + }, + "hellenic army aviation": { + "name": "Hellenic Army Aviation (Fictional)", + "countries": [ + "GRC" + ] + }, + "norway": { + "name": "Fictional NAVY", + "countries": [ + "NOR" + ] + }, + "russia_aeroflot": { + "name": "Civil AEROFLOT", + "countries": [ + "RUS", + "SUN" + ] + }, + "algerian af old desert": { + "name": "Algerian AF Old Desert", + "countries": [ + "DZA" + ] + }, + "russia_mvd_standard": { + "name": "RF MVD Standard", + "countries": [ + "RUS" + ] + }, + "russia_vvs_standard_2": { + "name": "RF Army Standart", + "countries": [ + "RUS" + ] + }, + "russia_fsb": { + "name": "RF FSB Standard", + "countries": [ + "RUS" + ] + }, + "south ossetia": { + "name": "Fictional RSO", + "countries": [ + "RSO" + ] + }, + "russia_utair": { + "name": "Civil Russia UTair", + "countries": [ + "RUS" + ] + }, + "turkey": { + "name": "JANDARMA", + "countries": [ + "TUR" + ] + }, + "abkhazia": { + "name": "Abkhazia", + "countries": [ + "ABH" + ] + }, + "france army": { + "name": "Fictional ARMY", + "countries": [ + "FRA" + ] + }, + "hellenic airforce sar": { + "name": "Hellenic Airforce - Search and Rescue (Fictional)", + "countries": [ + "GRC" + ] + }, + "russia_mvd_mozdok": { + "name": "RF MVD Mozdok", + "countries": [ + "RUS" + ] + }, + "algerian af vip": { + "name": "Algerian AF VIP", + "countries": [ + "DZA" + ] + }, + "israel": { + "name": "Fictional ARMY", + "countries": [ + "ISR" + ] + }, + "russia_vvs_grey": { + "name": "RF Army Gray", + "countries": [ + "RUS" + ] + }, + "algerian af new desert": { + "name": "Algerian AF New Desert", + "countries": [ + "DZA" + ] + }, + "insurgents": { + "name": "Standard", + "countries": [ + "INS" + ] + }, + "ukraine": { + "name": "Standard", + "countries": [ + "UKR" + ] + }, + "usa_afg": { + "name": "438th Air Expeditionary Wing", + "countries": [ + "USA" + ] + }, + "russia_army_weather": { + "name": "Russia Army Weather", + "countries": [ + "RUS", + "SUN" + ] + }, + "denmark": { + "name": "Fictional Olive", + "countries": [ + "DEN" + ] + }, + "czech air force dark camo": { + "name": "Czech Air Force ID-9XXX", + "countries": [ + "CZE" + ] + }, + "canada": { + "name": "Canada_Afghanistan", + "countries": [ + "CAN" + ] + }, + "australia": { + "name": "Fictional ARMY", + "countries": [ + "AUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 3 crew transport helicopter. Hip", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 60.7 + }, + "SA342L": { + "name": "SA342L", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "SA342L Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "GIAT M621 (240x Combat mix 4x AP 1x HE)", + "quantity": 1 + }, + { + "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", + "quantity": 1 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "M621, 8x SNEB68 EAP, IR Deflector, Sand Filter", + "name": "M621, 8x SNEB68 EAP, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "FN HMP400 (400rnds)", + "quantity": 2 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x HMP400, IR Deflector, Sand Filter", + "name": "2x HMP400, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x HOT-3 - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "4x HOT3, IR Deflector, Sand Filter", + "name": "4x HOT3, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ATAM - 2 x Mistral", + "quantity": 2 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "4x Mistral, IR Deflector, Sand Filter", + "name": "4x Mistral, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "ATAM - 1 x Mistral", + "quantity": 2 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x Mistral, IR Deflector, Sand Filter", + "name": "2x Mistral, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Smoke Generator - red", + "quantity": 1 + }, + { + "name": "Smoke Generator - blue", + "quantity": 1 + } + ], + "enabled": true, + "code": "Display Team Smoke, Red & Blue", + "name": "Display Team Smoke, Red & Blue", + "roles": [ + "CAS" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "uk navy red": { + "name": "UK Royal Navy Air 705 Squadron", + "countries": "All" + }, + "uk army batus": { + "name": "UK Army Air Corps BATUS", + "countries": "All" + }, + "nato_drab_us": { + "name": "US Army Olive Drab", + "countries": "All" + }, + "uk army gb": { + "name": "UK Army Air Corps Green/Black", + "countries": "All" + }, + "gen black": { + "name": "Generic Black - low vis", + "countries": "All" + }, + "fr alat hri kfor 1999": { + "name": "FR ALAT HRI KFOR 1999", + "countries": "All" + }, + "srb air force green": { + "name": "SRB Air Force Green", + "countries": "All" + }, + "swe_foa": { + "name": "SE Air Force FOA", + "countries": "All" + }, + "uk raf red": { + "name": "UK Royal Air Force N0. 2 FTS", + "countries": "All" + }, + "ger army gb": { + "name": "GER Army Green / Black", + "countries": "All" + }, + "us marines grey": { + "name": "US Marines Grey", + "countries": "All" + }, + "fr alat ce ealat": { + "name": "FR ALAT CE EALAT", + "countries": "All" + }, + "fr alat ce 1985": { + "name": "FR ALAT CE 1985", + "countries": "All" + }, + "fr alat sable daguet 1990": { + "name": "FR ALAT SABLE Daguet 1990", + "countries": "All" + }, + "syr airforce st": { + "name": "SYR Air Force Sand Teal", + "countries": "All" + }, + "nato_drab_nl": { + "name": "RNLAF Olive Drab", + "countries": "All" + }, + "fr alat hri 1981": { + "name": "FR ALAT HRI 1975", + "countries": "All" + }, + "rscs l gazelle": { + "name": "RSCS L Gazelle", + "countries": "All" + }, + "uk marines gg": { + "name": "UK Royal Marines Grey/Green", + "countries": "All" + }, + "cyp air force sand": { + "name": "CYP Air Force Sand", + "countries": "All" + }, + "gen olive drab": { + "name": "Generic Olive Drab", + "countries": "All" + }, + "uk army gg": { + "name": "UK Army Air Corps Grey/Green", + "countries": "All" + }, + "fr alat ce barkhane 2014": { + "name": "FR ALAT CE Barkhane 2014", + "countries": "All" + }, + "fr alat ce daguet 1990": { + "name": "FR ALAT CE Daguet 1990", + "countries": "All" + }, + "nato_drab_uk": { + "name": "UK Army Air Corps Olive Drab", + "countries": "All" + }, + "uk army batus orange": { + "name": "UK Army Air Corps BATUS Orange", + "countries": "All" + }, + "uk army granby": { + "name": "UK Desert Army Air Corps - Operation Granby", + "countries": "All" + }, + "yug air force gb": { + "name": "YUG Air Force Green Brown", + "countries": "All" + }, + "uk army gb un": { + "name": "UK Army Air Corps Green/Black UN", + "countries": "All" + }, + "fr alat ce opex": { + "name": "FR ALAT CE OPEX", + "countries": "All" + }, + "uk marines gb": { + "name": "UK Royal Marines Green/Black", + "countries": "All" + }, + "gen navy": { + "name": "Generic Navy - Grey", + "countries": "All" + }, + "fr alat sable djibouti 2003": { + "name": "FR ALAT SABLE Djibouti 2003", + "countries": "All" + }, + "leb air force gg": { + "name": "LEB Air Force Green / Grey", + "countries": "All" + }, + "fr alat hri daguet 1990": { + "name": "FR ALAT HRI Daguet 1990", + "countries": "All" + }, + "nato_drab_hel": { + "name": "Hellenic Airforce Olive Drab", + "countries": "All" + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "length": 39.2 + }, + "SA342M": { + "name": "SA342M", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "SA342M Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x HOT-3 - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAS}", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "4x HOT3, IR Deflector, Sand Filter", + "name": "4x HOT3, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "1 x HOT-3 - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "FAS}", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x HOT3, IR Deflector, Sand Filter", + "name": "2x HOT3, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Smoke Generator - red", + "quantity": 1 + }, + { + "name": "Smoke Generator - blue", + "quantity": 1 + } + ], + "enabled": true, + "code": "Display Team Smoke, Red & Blue", + "name": "Display Team Smoke, Red & Blue", + "roles": [ + "CAS" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "uk navy red": { + "name": "UK Royal Navy Air 705 Squadron", + "countries": "All" + }, + "uk army batus": { + "name": "UK Army Air Corps BATUS", + "countries": "All" + }, + "nato_drab_us": { + "name": "US Army Olive Drab", + "countries": "All" + }, + "uk army gb": { + "name": "UK Army Air Corps Green/Black", + "countries": "All" + }, + "gen black": { + "name": "Generic Black - low vis", + "countries": "All" + }, + "fr alat hri kfor 1999": { + "name": "FR ALAT HRI KFOR 1999", + "countries": "All" + }, + "srb air force green": { + "name": "SRB Air Force Green", + "countries": "All" + }, + "swe_foa": { + "name": "SE Air Force FOA", + "countries": "All" + }, + "uk raf red": { + "name": "UK Royal Air Force N0. 2 FTS", + "countries": "All" + }, + "ger army gb": { + "name": "GER Army Green / Black", + "countries": "All" + }, + "us marines grey": { + "name": "US Marines Grey", + "countries": "All" + }, + "fr alat ce ealat": { + "name": "FR ALAT CE EALAT", + "countries": "All" + }, + "fr alat ce 1985": { + "name": "FR ALAT CE 1985", + "countries": "All" + }, + "fr alat sable daguet 1990": { + "name": "FR ALAT SABLE Daguet 1990", + "countries": "All" + }, + "syr airforce st": { + "name": "SYR Air Force Sand Teal", + "countries": "All" + }, + "nato_drab_nl": { + "name": "RNLAF Olive Drab", + "countries": "All" + }, + "fr alat hri 1981": { + "name": "FR ALAT HRI 1975", + "countries": "All" + }, + "rscs m gazelle": { + "name": "RSCS M Gazelle", + "countries": "All" + }, + "uk marines gg": { + "name": "UK Royal Marines Grey/Green", + "countries": "All" + }, + "cyp air force sand": { + "name": "CYP Air Force Sand", + "countries": "All" + }, + "gen olive drab": { + "name": "Generic Olive Drab", + "countries": "All" + }, + "uk army gg": { + "name": "UK Army Air Corps Grey/Green", + "countries": "All" + }, + "fr alat ce barkhane 2014": { + "name": "FR ALAT CE Barkhane 2014", + "countries": "All" + }, + "fr alat ce daguet 1990": { + "name": "FR ALAT CE Daguet 1990", + "countries": "All" + }, + "nato_drab_uk": { + "name": "UK Army Air Corps Olive Drab", + "countries": "All" + }, + "uk army batus orange": { + "name": "UK Army Air Corps BATUS Orange", + "countries": "All" + }, + "uk army granby": { + "name": "UK Desert Army Air Corps - Operation Granby", + "countries": "All" + }, + "yug air force gb": { + "name": "YUG Air Force Green Brown", + "countries": "All" + }, + "uk army gb un": { + "name": "UK Army Air Corps Green/Black UN", + "countries": "All" + }, + "fr alat ce opex": { + "name": "FR ALAT CE OPEX", + "countries": "All" + }, + "uk marines gb": { + "name": "UK Royal Marines Green/Black", + "countries": "All" + }, + "gen navy": { + "name": "Generic Navy - Grey", + "countries": "All" + }, + "fr alat sable djibouti 2003": { + "name": "FR ALAT SABLE Djibouti 2003", + "countries": "All" + }, + "leb air force gg": { + "name": "LEB Air Force Green / Grey", + "countries": "All" + }, + "fr alat hri daguet 1990": { + "name": "FR ALAT HRI Daguet 1990", + "countries": "All" + }, + "nato_drab_hel": { + "name": "Hellenic Airforce Olive Drab", + "countries": "All" + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "length": 39.2 + }, + "SA342Mistral": { + "name": "SA342Mistral", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "SA342 Mistral Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Escort" + ] + }, + { + "items": [ + { + "name": "{MBDA_MistralD}", + "quantity": 2 + }, + { + "name": "{MBDA_MistralG}", + "quantity": 2 + } + ], + "enabled": true, + "code": "Mistral x 4", + "name": "Mistral x 4", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "{MBDA_MistralD}", + "quantity": 2 + }, + { + "name": "{MBDA_MistralG}", + "quantity": 2 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mistral x 4, IR Deflector", + "name": "Mistral x 4, IR Deflector", + "roles": [ + "Escort" + ] + }, + { + "items": [ + { + "name": "{MBDA_MistralD}", + "quantity": 2 + }, + { + "name": "{MBDA_MistralG}", + "quantity": 2 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mistral x 4, IR Deflector, Sand Filter", + "name": "Mistral x 4, IR Deflector, Sand Filter", + "roles": [ + "Escort" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "combat": { + "name": "Combat", + "countries": [ + "FRA" + ] + }, + "dutch fictional": { + "name": "RNLAF fictional", + "countries": [ + "NETH", + "" + ] + }, + "tiger meet 2": { + "name": "Tiger Meet 2", + "countries": [ + "FRA" + ] + }, + "training": { + "name": "Training", + "countries": [ + "FRA" + ] + }, + "greece cyprus fictional desert": { + "name": "Greece Cyprus Fictional Desert", + "countries": [ + "GRC" + ] + }, + "portuguese modern fictional": { + "name": "Portuguese modern Fictional", + "countries": [ + "", + "PRT", + "FRA" + ] + }, + "training ealat": { + "name": "Training EALAT", + "countries": [ + "FRA" + ] + }, + "syria fictional": { + "name": "Syria Fictional", + "countries": [ + "SYR" + ] + }, + "tiger meet": { + "name": "Tiger Meet", + "countries": [ + "FRA" + ] + }, + "uk fictional": { + "name": "UK Fictional", + "countries": [ + "UK" + ] + }, + "serbia fictional": { + "name": "Serbia Fictional", + "countries": [ + "SRB" + ] + }, + "us marines fictional": { + "name": "US Marines Fictional", + "countries": [ + "USA" + ] + }, + "cyprus air force": { + "name": "Cyprus air force", + "countries": [ + "", + "CYP" + ] + }, + "russia fictional": { + "name": "Russia Fictional", + "countries": [ + "RUS" + ] + }, + "germany fictional": { + "name": "Germany Fictional", + "countries": [ + "GER" + ] + }, + "yugoslav fictional": { + "name": "Yugoslav Fictional", + "countries": [ + "SRB" + ] + }, + "israel fictional": { + "name": "Israel Fictional", + "countries": [ + "ISR" + ] + }, + "combat sable": { + "name": "Combat desert", + "countries": [ + "FRA" + ] + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "length": 39.2 + }, + "SH-60B": { + "name": "SH-60B", + "coalition": "blue", + "era": "Late Cold War", + "category": "helicopter", + "label": "SH-60B Seahawk", + "shortLabel": "S60", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + }, + { + "items": [ + { + "name": "AGM-119B Penguin ASM", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-119", + "name": "AGM-119", + "roles": [ + "Antiship Strike" + ] + } + ], + "filename": "uh-60.png", + "enabled": true, + "roles": [ + "Antiship Strike", + "Transport" + ], + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + }, + "hellenic navy": { + "name": "Hellenic Navy", + "countries": [ + "GRC" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 3 crew transport helicopter. Seahawk", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 64.8 + }, + "UH-1H": { + "name": "UH-1H", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "UH-1H Huey", + "shortLabel": "UH1", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + }, + { + "items": [ + { + "name": "M134 - 6 x 7.62mm MiniGun left", + "quantity": 1 + }, + { + "name": "XM158 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 2 + }, + { + "name": "M134 - 6 x 7.62mm MiniGun right", + "quantity": 1 + } + ], + "enabled": true, + "code": "M134 Minigun*2, XM158*2", + "name": "M134 Minigun*2, XM158*2", + "roles": [ + "Strike", + "CAS", + "Transport", + "FAC-A" + ] + } + ], + "filename": "uh-1.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "Transport" + ], + "liveries": { + "us navy": { + "name": "US NAVY", + "countries": [ + "USA" + ] + }, + "italy marina militare s.n. 80951 7-20": { + "name": "Marina Militare s.n. 80951 7-20", + "countries": [ + "ITA" + ] + }, + "[civilian] nasa": { + "name": "[Civilian] NASA", + "countries": [ + "USA" + ] + }, + "army 4abn_a2_1969": { + "name": "4th Av Bn (A-2), 4th Infantry Div 1969-70", + "countries": [ + "AUSAF", + "USA" + ] + }, + "turkish air force": { + "name": "Turkish Air Force", + "countries": [ + "TUR" + ] + }, + "army 82nd medical detachment": { + "name": "82nd Medical Detachment (Air Ambulance) (1969)", + "countries": [ + "USAFA", + "USA" + ] + }, + "norwegian coast guard (235)": { + "name": "Norwegian Coast Guard (235)", + "countries": [ + "NOR" + ] + }, + "israel army": { + "name": "Israel Army", + "countries": [ + "ISR" + ] + }, + "australia raaf 1968": { + "name": "RAAF 1968", + "countries": [ + "AUS" + ] + }, + "usa red flag": { + "name": "USA Red Flag", + "countries": [ + "USA" + ] + }, + "rf air force grey": { + "name": "RF Air Force Grey", + "countries": [ + "RUS" + ] + }, + "royal netherlands af": { + "name": "Royal Netherlands AF", + "countries": [ + "NETH" + ] + }, + "italy 15b stormo s.a.r -soccorso": { + "name": "15\u0412\u00b0 Stormo S.A.R -Soccorso", + "countries": [ + "ITA" + ] + }, + "norwegian un": { + "name": "Norwegian UN", + "countries": [ + "UN", + "NOR" + ] + }, + "australia raaf 171 sqn": { + "name": "RAAF 171 Sqn", + "countries": [ + "AUS" + ] + }, + "georgian af camo": { + "name": "Georgian AF Camo", + "countries": [ + "GRG" + ] + }, + "xw-pfj air america": { + "name": "XW-PFJ Air America", + "countries": [ + "USA" + ] + }, + "us dos": { + "name": "US DOS", + "countries": [ + "USA" + ] + }, + "spanish un": { + "name": "Spanish UN", + "countries": [ + "UN", + "SPN" + ] + }, + "[civilian] medical": { + "name": "[Civilian] Medical", + "countries": [ + "USA" + ] + }, + "army 4abn_a3_396_1969": { + "name": "4th Av Bn (A-3), 4th Infantry Div 1969-70", + "countries": [ + "AUSAF", + "USA" + ] + }, + "army 4abn_b_1969": { + "name": "4th Av Bn (B Co.), 4th Infantry Div 1968-70", + "countries": [ + "AUSAF", + "USA" + ] + }, + "greek army aviation medic": { + "name": "Greek Army Aviation Medic", + "countries": [ + "GRC" + ] + }, + "rf air force broken": { + "name": "RF Air Force Broken", + "countries": [ + "RUS" + ] + }, + "us ft. rucker": { + "name": "US Ft. Rucker", + "countries": [ + "USA" + ] + }, + "australia royal navy": { + "name": "Royal Australian Navy", + "countries": [ + "AUS" + ] + }, + "[civilian] standard": { + "name": "Olive drab", + "countries": [ + "ABH", + "NOR", + "BEL", + "DEN", + "INS", + "UK", + "RSO", + "USA" + ] + }, + "french army": { + "name": "French Army", + "countries": [ + "FRA" + ] + }, + "luftwaffe": { + "name": "Luftwaffe", + "countries": [ + "GER" + ] + }, + "army standard": { + "name": "Army Standard", + "countries": [ + "USA" + ] + }, + "hellenic airforce sar": { + "name": "Hellenic Airforce - S.A.R.", + "countries": [ + "GRC" + ] + }, + "army 4abn_a1_1969": { + "name": "4th Av Bn (A-1) \"Lizard 7\", 4th Infantry Div 1969-70", + "countries": [ + "AUSAF", + "USA" + ] + }, + "canadian force": { + "name": "Canadian Force", + "countries": [ + "CAN" + ] + }, + "italy e.i. 4b regg. altair": { + "name": "E.I. 4\u0412\u00b0 Regg. ALTAIR", + "countries": [ + "ITA" + ] + }, + "spanish army": { + "name": "Spanish Army", + "countries": [ + "SPN" + ] + }, + "usa un": { + "name": "USA UN", + "countries": [ + "UN", + "USA" + ] + }, + "us army 1972": { + "name": "US ARMY 1972", + "countries": [ + "USA" + ] + }, + "georgian air force": { + "name": "Georgian Air Force", + "countries": [ + "GRG" + ] + }, + "greek army aviation": { + "name": "Greek Army Aviation", + "countries": [ + "GRC" + ] + }, + "rscs - black": { + "name": "RSCS", + "countries": "All" + }, + "[civilian] vip": { + "name": "[Civilian] VIP", + "countries": [ + "USA" + ] + }, + "algerian af bv-32": { + "name": "Algerian AF BV-32", + "countries": [ + "DZA" + ] + }, + "ukrainian army": { + "name": "Ukrainian Army", + "countries": [ + "UKR" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew transport helicopter. Huey", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 57.1 + }, + "UH-60A": { + "name": "UH-60A", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "UH-60A Blackhawk", + "shortLabel": "U60", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "filename": "uh-60.png", + "enabled": true, + "roles": [ + "Transport" + ], + "liveries": { + "israil_un": { + "name": "ISRAIL_UN", + "countries": [ + "ISR", + "UN" + ] + }, + "standard": { + "name": "standard", + "countries": [ + "TUR", + "FRA", + "ABH", + "GER", + "ITA", + "BEL", + "UKR", + "NOR", + "CAN", + "DEN", + "UK", + "RUS", + "GRG", + "USA", + "ISR", + "RSO", + "SPN", + "NETH" + ] + }, + "golden angels": { + "name": "Golden Angels", + "countries": [ + "USA" + ] + }, + "us navy - sh-60": { + "name": "US Navy SH-60", + "countries": [ + "USA" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 3 crew transport helicopter. Blackhawk", + "abilities": "Transport", + "canTargetPoint": false, + "canRearm": false, + "length": 64.8 + }, + "Mi-24V": { + "name": "Mi-24V", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "MI-24V", + "shortLabel": "Mi24", + "type": "Mi_24V", + "enabled": false, + "liveries": { + "standard 1": { + "name": "Russia Army Aviation", + "countries": [ + "RUS", + "SUN" + ] + }, + "abkhazia": { + "name": "Abkhazia", + "countries": [ + "ABH" + ] + }, + "standard": { + "name": "Standard (Georgia)", + "countries": [ + "GRG" + ] + }, + "standard 2 (faded and sun-bleached)": { + "name": "Russia Army Aviation (faded)", + "countries": [ + "RUS", + "SUN" + ] + }, + "algerian af new desert": { + "name": "Algerian AF New Desert", + "countries": [ + "DZA" + ] + }, + "algerian af old desert": { + "name": "Algerian AF Old Desert", + "countries": [ + "DZA" + ] + }, + "ukraine": { + "name": "Ukraine", + "countries": [ + "UKR" + ] + }, + "algerian af black": { + "name": "Algerian AF Black", + "countries": [ + "DZA" + ] + }, + "ukraine un": { + "name": "UN (Ukraine based)", + "countries": [ + "UN", + "UKR" + ] + }, + "russia_mvd": { + "name": "Russia MVD", + "countries": [ + "RUS" + ] + }, + "russia_fsb": { + "name": "Russia FSB", + "countries": [ + "RUS" + ] + }, + "south ossetia": { + "name": "Fictional RSO", + "countries": [ + "RSO" + ] + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-500", + "name": "2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13", + "name": "10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250", + "name": "2xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x9M114, 2xFuel tank", + "name": "4x9M114, 2xFuel tank", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "UB-32A - 32 x UnGd Rkts, 57 mm S-5KO HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "128xS-5", + "name": "128xS-5", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8 TsM", + "name": "80xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x9M114, 40xS-8 TsM", + "name": "4x9M114, 40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "UB-32A - 32 x UnGd Rkts, 57 mm S-5KO HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "64xS-5", + "name": "64xS-5", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + } + ], + "enabled": true, + "code": "8x9M114", + "name": "8x9M114", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "4x9M114, 80xS-8", + "name": "4x9M114, 80xS-8", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "UB-32A - 32 x UnGd Rkts, 57 mm S-5KO HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "4x9M114, 128xS-5", + "name": "4x9M114, 128xS-5", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AP", + "name": "2xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFuel tank", + "name": "4xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xUPK-23", + "name": "4xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x9M114, 10xS-13", + "name": "4x9M114, 10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 4 + } + ], + "enabled": true, + "code": "4x9M114, 80xS-8 TsM", + "name": "4x9M114, 80xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x9M114", + "name": "4x9M114", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8", + "name": "80xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8 TsM", + "name": "40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "8x9M114, 40xS-8 TsM", + "name": "8x9M114, 40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "8x9M114, 10xS-13", + "name": "8x9M114, 10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank", + "name": "2xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "4x9M114, 4xUPK-23", + "name": "4x9M114, 4xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xUPK-23", + "name": "2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "UB-32A - 32 x UnGd Rkts, 57 mm S-5KO HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "8x9M114, 64xS-5", + "name": "8x9M114, 64xS-5", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "8x9M114, 40xS-8", + "name": "8x9M114, 40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 4 + } + ], + "enabled": true, + "code": "20xS-13", + "name": "20xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8", + "name": "40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 4 + }, + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "8x9M114, 2xUPK-23", + "name": "8x9M114, 2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + } + ], + "length": 57.5 + }, + "Ka-27": { + "name": "Ka-27", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "KA-27", + "shortLabel": "Ka27", + "type": "Ka_27", + "enabled": false, + "liveries": { + "ukraine camo 1": { + "name": "Ukraine camo 1", + "countries": [ + "UKR" + ] + }, + "standard": { + "name": "standard", + "countries": [ + "RUS", + "DZA" + ] + }, + "china planaf": { + "name": "China PLANAF", + "countries": [ + "CHN" + ] + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "length": 37.73 + }, + "CH-53E": { + "name": "CH-53E", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "CH-53E", + "shortLabel": "CH53", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "type": "CH_53E", + "enabled": true, + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + } + }, + "length": 99, + "filename": "ch-53.png" + }, + "CH-47D": { + "name": "CH-47D", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "CH-47D Chinook", + "shortLabel": "CH47", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "type": "CH_47D", + "enabled": true, + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + }, + "ch-47_green neth": { + "name": "ch-47_green neth", + "countries": [ + "NETH" + ] + }, + "greek army": { + "name": "Greek Army", + "countries": [ + "GRC" + ] + }, + "ch-47_green spain": { + "name": "ch-47_green spain", + "countries": [ + "SPN" + ] + }, + "ch-47_green uk": { + "name": "ch-47_green uk", + "countries": [ + "UK" + ] + }, + "australia raaf": { + "name": "RAAF CH-47D", + "countries": [ + "AUS" + ] + } + }, + "length": 98.8, + "filename": "ch-47.png" + }, + "SH-3W": { + "name": "SH-3W", + "coalition": "blue", + "era": "Mid Cold War", + "category": "helicopter", + "label": "SH-3W Sea King", + "shortLabel": "SH3", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "type": "SH_3W", + "enabled": true, + "liveries": { + "standard": { + "name": "standard", + "countries": "All" + } + }, + "description": "2 engine, 2 crew scout helicopter. SH-3 Sea King.", + "length": 72.7, + "filename": "sh-3.png" + }, + "AH-64A": { + "name": "AH-64A", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "AH-64A", + "shortLabel": "AH64", + "type": "AH_64A", + "enabled": false, + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + }, + "ah-64_a_green isr": { + "name": "ah-64_a_green isr", + "countries": [ + "ISR" + ] + }, + "ah-64_a_green neth": { + "name": "ah-64_a_green neth", + "countries": [ + "NETH" + ] + }, + "standard dirty": { + "name": "standard dirty", + "countries": [ + "USA" + ] + }, + "greek army": { + "name": "greek army", + "countries": [ + "GRC" + ] + }, + "ah-64_a_green uk": { + "name": "ah-64_a_green uk", + "countries": [ + "UK" + ] + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114", + "name": "8xAGM-114", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70 WP", + "name": "38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "76xHYDRA-70", + "name": "76xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70 WP", + "name": "8xAGM-114, 38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70", + "name": "38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70", + "name": "8xAGM-114, 38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 4 + } + ], + "enabled": true, + "code": "AGM-114K*16", + "name": "AGM-114K*16", + "roles": [ + "Escort", + "CAS", + "Strike", + "Antiship Strike" + ] + } + ], + "length": 58.2 + }, + "AH-64D": { + "name": "AH-64D", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "AH-64D", + "shortLabel": "AH64", + "type": "AH_64D", + "enabled": false, + "liveries": { + "standard": { + "name": "standard", + "countries": [ + "USA" + ] + }, + "ah-64_d_isr": { + "name": "ah-64_d_isr", + "countries": [ + "ISR" + ] + }, + "ah-64_d_green neth": { + "name": "ah-64_d_green neth", + "countries": [ + "NETH" + ] + }, + "ah-64_d_green uk": { + "name": "ah-64_d_green uk", + "countries": [ + "UK" + ] + }, + "greek army": { + "name": "greek army", + "countries": [ + "GRC" + ] + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "76xHYDRA-70", + "name": "76xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70", + "name": "38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70 WP", + "name": "38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114", + "name": "8xAGM-114", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70 WP", + "name": "8xAGM-114, 38xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 4 + } + ], + "enabled": true, + "code": "AGM-114K*16", + "name": "AGM-114K*16", + "roles": [ + "Escort", + "CAS", + "Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 - 19 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70", + "name": "8xAGM-114, 38xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + } + ] + }, + "OH-58D": { + "name": "OH-58D", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "OH-58D", + "shortLabel": "58D", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "FAC-A" + ] + }, + { + "items": [ + { + "name": "AGM-114K * 2", + "quantity": 1 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 1 + } + ], + "enabled": true, + "code": "2xAGM-114, 7xHYDRA-70", + "name": "2xAGM-114, 7xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "AGM-114K * 2", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xAGM-114", + "name": "4xAGM-114", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "OH-58D Brauning", + "quantity": 1 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 1 + } + ], + "enabled": true, + "code": "M-3, 7xHYDRA-70", + "name": "M-3, 7xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "OH-58D Brauning", + "quantity": 1 + }, + { + "name": "AGM-114K * 2", + "quantity": 1 + } + ], + "enabled": true, + "code": "2xAGM-114, M-3", + "name": "2xAGM-114, M-3", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 Mk 5 HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70", + "name": "14xHYDRA-70", + "roles": [ + "Escort", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M156 SM", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70 WP", + "name": "14xHYDRA-70 WP", + "roles": [ + "FAC-A" + ] + } + ], + "type": "OH_58D", + "enabled": true, + "liveries": { + "us 6-16 g 356 iraq 2011": { + "name": "US Army 6-16 G Troop 'Grizzly' 356", + "countries": "All" + }, + "us 3-17 c 001 jasmine": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 001 'Jasmine'", + "countries": "All" + }, + "hr 393eh 332": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 332", + "countries": "All" + }, + "tun army": { + "name": "Tunisian Army", + "countries": "All" + }, + "hr 393eh 334": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 334", + "countries": "All" + }, + "hr 393eh 335": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 335", + "countries": "All" + }, + "us 6-17 c 367": { + "name": "US Army 6-17 C Troop 'Crazy Horse' 367", + "countries": "All" + }, + "de army fictional": { + "name": "German Army (fictional)", + "countries": "All" + }, + "ru army fictional": { + "name": "Russian Army (fictional)", + "countries": "All" + }, + "fr army fictional": { + "name": "French Army (fictional)", + "countries": "All" + }, + "us 1-6 a 340": { + "name": "US Army 1-6 A Troop 340", + "countries": "All" + }, + "twn army": { + "name": "Taiwanese Army", + "countries": "All" + }, + "hr 393eh 327": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 327", + "countries": "All" + }, + "hr 393eh 328": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 328", + "countries": "All" + }, + "us 3-17 c 976 jenny": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 976 'Jenny'", + "countries": "All" + }, + "us 6-6 c 971": { + "name": "US Army 6-6 A Troop 'Assassins' 971", + "countries": "All" + }, + "isr army fictional": { + "name": "Israeli Army (fictional)", + "countries": "All" + }, + "hr 393eh 322": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 322", + "countries": "All" + }, + "gr army fictional": { + "name": "Greek Army", + "countries": "All" + }, + "us 3-17 c 179 presley marie": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 179 'Presley Marie'", + "countries": "All" + }, + "us 1-17 b 381": { + "name": "US Army 1-17 B Troop 'Bootleg' 381", + "countries": "All" + }, + "hr 393eh 336": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 336", + "countries": "All" + }, + "default": { + "name": "Default Livery", + "countries": "All" + }, + "uk army fictional desert": { + "name": "British Army Air Corps Desert (fictional)", + "countries": "All" + }, + "us 7-17 a 039 lola": { + "name": "US Army 7-17 A Troop 'Shadow' 039 'Lola'", + "countries": "All" + }, + "hr 393eh 331": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 331", + "countries": "All" + }, + "us 6-17 a 523 iraq 2011": { + "name": "US Army 6-17 A Troop 'Aces' 523", + "countries": "All" + }, + "hr 393eh 330": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 330", + "countries": "All" + }, + "us 6-6 c 179": { + "name": "US Army 6-6 C Troop 'Outcasts' 179", + "countries": "All" + }, + "pl army fictional": { + "name": "Polish Army (fictional)", + "countries": "All" + }, + "us school house 43e": { + "name": "US Army Ft. Rucker School House 43E", + "countries": "All" + }, + "uk army fictional": { + "name": "British Army Air Corps (fictional)", + "countries": "All" + }, + "us 2-6 129 iraq": { + "name": "US Army 2-6 129", + "countries": "All" + }, + "jpn army fictional": { + "name": "Japanese Army (fictional)", + "countries": "All" + }, + "us 1-17 a 079": { + "name": "US Army 1-17 A Troop 'Roughnecks' 079", + "countries": "All" + }, + "us school house 75h": { + "name": "US Army Ft. Rucker School House 75H", + "countries": "All" + }, + "us 1-17 a 344": { + "name": "US Army 1-17 A Troop 'Roughnecks' 344", + "countries": "All" + }, + "hr 393eh 333": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 333", + "countries": "All" + }, + "us 1-17 b 024": { + "name": "US Army 1-17 B Troop 'Bootleg' 024", + "countries": "All" + }, + "us 1-17 a 002": { + "name": "US Army 1-17 A Troop 'Roughnecks' 002", + "countries": "All" + }, + "us -17 a 604 taz": { + "name": "US Army 7-17 A Troop 'Shadow' 604 'Taz'", + "countries": "All" + }, + "us tennessee ang 1-230 113": { + "name": "US Tennesee Army National Guard 1-230 113", + "countries": "All" + }, + "us tennessee ang 1-230 152": { + "name": "US Tennesee Army National Guard 1-230 152", + "countries": "All" + }, + "us school house 26e": { + "name": "US Army Ft. Rucker School House 26E", + "countries": "All" + }, + "hr 393eh 321": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 321", + "countries": "All" + }, + "hr 393eh 325": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 325", + "countries": "All" + }, + "us 3-17 c 561 ariel": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 561 'Ariel'", + "countries": "All" + }, + "us 6-17 b 366": { + "name": "US Army 6-17 B Troop 'Blackfoot' 366", + "countries": "All" + }, + "us 7-17 a 964 marvin": { + "name": "US Army 7-17 A Troop 'Shadow' 964 'Marvin'", + "countries": "All" + }, + "nl army fictional": { + "name": "Dutch Army (fictional)", + "countries": "All" + }, + "us 1-17 a 115": { + "name": "US Army 1-17 A Troop 'Roughnecks' 115", + "countries": "All" + }, + "hr 393eh 329": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 329", + "countries": "All" + }, + "hr 393eh 326": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 326", + "countries": "All" + }, + "us 3-17 b 937 iraq": { + "name": "US Army 3-17 B Troop 'Blackjack' 937", + "countries": "All" + }, + "us 6-6 c 587": { + "name": "US Army 6-6 C Troop 'Outcasts' 587", + "countries": "All" + }, + "us 7-17 a 014 bugs": { + "name": "US Army 7-17 A Troop 'Shadow' 014 'Bugs'", + "countries": "All" + }, + "us 1-6 a 161": { + "name": "US Army 1-6 A Troop 161", + "countries": "All" + }, + "aus army fictional": { + "name": "Australian Army (fictional)", + "countries": "All" + }, + "hr 393eh 324": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 324", + "countries": "All" + }, + "us 6-17 a 571 korea 2014": { + "name": "US Army 6-17 A Troop 'Aces' 571", + "countries": "All" + }, + "hr 393eh 323": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 323", + "countries": "All" + }, + "es army fictional": { + "name": "Spanish Army (fictional)", + "countries": "All" + } + }, + "length": 42.2, + "filename": "oh-58.png" + }, + "Ka-50": { + "name": "Ka-50", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "KA-50", + "shortLabel": "Ka50", + "type": "Ka_50", + "enabled": false, + "liveries": { + "russia standard army": { + "name": "Army Standard", + "countries": [ + "RUS" + ] + }, + "israel iaf camo 2": { + "name": "IAF camo 2", + "countries": [ + "ISR" + ] + }, + "ukraine camo 1 dirt": { + "name": "Ukraine camo 1 dirt", + "countries": [ + "UKR" + ] + }, + "russia dosaaf": { + "name": "DOSAAF", + "countries": [ + "RUS" + ] + }, + "turkey fictional 1": { + "name": "Fictional Turkey 1", + "countries": [ + "TUR" + ] + }, + "netherlands rnaf": { + "name": "RNAF", + "countries": [ + "NETH" + ] + }, + "russia demo `werewolf`": { + "name": "Demo `Werewolf`", + "countries": [ + "RUS" + ] + }, + "belgium olive": { + "name": "Belgium olive", + "countries": [ + "BEL" + ] + }, + "norway camo": { + "name": "Norway camo", + "countries": [ + "NOR" + ] + }, + "france armee de terre 1": { + "name": "Armee de Terre 1", + "countries": [ + "FRA" + ] + }, + "uk camo": { + "name": "UK camo", + "countries": [ + "UK" + ] + }, + "denmark navy trainer": { + "name": "NAVY trainer (Denmark)", + "countries": [ + "DEN" + ] + }, + "ukraine camo 1": { + "name": "Ukraine camo 1", + "countries": [ + "UKR" + ] + }, + "france armee de terre desert": { + "name": "Armee de Terre Desert", + "countries": [ + "FRA" + ] + }, + "israel iaf camo 3": { + "name": "IAF camo 3", + "countries": [ + "ISR" + ] + }, + "italy aeronautica militare": { + "name": "Aeronautica Militare", + "countries": [ + "ITA" + ] + }, + "turkey fictional light gray": { + "name": "Fictional Light Gray Scheme", + "countries": [ + "TUR" + ] + }, + "belgium sar": { + "name": "Belgium SAR", + "countries": [ + "BEL" + ] + }, + "us army": { + "name": "US army", + "countries": [ + "USA" + ] + }, + "us marines 1": { + "name": "US marines 1", + "countries": [ + "USA" + ] + }, + "russia worn black": { + "name": "Worn Black", + "countries": [ + "RUS", + "AUS" + ] + }, + "russia new year": { + "name": "New Year", + "countries": [ + "RUS" + ] + }, + "canadian forces": { + "name": "Canadian Forces", + "countries": "All" + }, + "german 8320": { + "name": "German 8320", + "countries": [ + "GER" + ] + }, + "denmark camo": { + "name": "Denmark camo", + "countries": [ + "DEN" + ] + }, + "russia fictional snow splatter": { + "name": "Fictional snow splatter scheme", + "countries": [ + "RUS" + ] + }, + "russia fictional desert scheme": { + "name": "Fictional desert scheme", + "countries": [ + "RUS" + ] + }, + "russia fictional olive grey": { + "name": "Fictional olive grey scheme", + "countries": [ + "RUS" + ] + }, + "georgia camo": { + "name": "Georgia camo", + "countries": [ + "GRG" + ] + }, + "south ossetia 1": { + "name": "Osetian AA", + "countries": [ + "RSO" + ] + }, + "spain saa standard": { + "name": "SAF Standard", + "countries": [ + "SPN" + ] + }, + "german 8332": { + "name": "German 8332", + "countries": [ + "GER" + ] + }, + "spain saa arido": { + "name": "SAF Arido", + "countries": [ + "SPN" + ] + }, + "italy esercito italiano": { + "name": "Esercito Italiano", + "countries": [ + "ITA" + ] + }, + "algerian af desert": { + "name": "Algerian AF Desert", + "countries": [ + "DZA" + ] + }, + "spain saa boscoso": { + "name": "SAF Boscoso", + "countries": [ + "SPN" + ] + }, + "us marines 2": { + "name": "US marines 2", + "countries": [ + "USA" + ] + }, + "france armee de terre 2": { + "name": "Armee de Terre 2", + "countries": [ + "FRA" + ] + }, + "hellenic navy aviation": { + "name": "Hellenic Navy Aviation (Fictional)", + "countries": [ + "GRC" + ] + }, + "hellenic navy aviation 2": { + "name": "Hellenic Navy Aviation 2 (Fictional)", + "countries": [ + "GRC" + ] + }, + "russia fictional swedish": { + "name": "Fictional Swedish Scheme", + "countries": [ + "RUS", + "SWE" + ] + }, + "russia standard army (worn)": { + "name": "Standard Army (Worn)", + "countries": [ + "RUS" + ] + }, + "turkey fictional": { + "name": "Fictional Turkey scheme", + "countries": [ + "TUR" + ] + }, + "russia demo #22 `black shark`": { + "name": "Demo #22 `Black Shark`", + "countries": [ + "RUS" + ] + }, + "russia demo #024": { + "name": "Demo #024", + "countries": [ + "RUS" + ] + }, + "ukraine demo": { + "name": "Fictional Ukraine Demo", + "countries": [ + "UKR" + ] + }, + "greek army aviation": { + "name": "Greek Army Aviation (Fictional)", + "countries": [ + "GRC" + ] + }, + "abkhazia 1": { + "name": "Fictional Abkhazian 1", + "countries": [ + "ABH" + ] + }, + "israel iaf camo 1": { + "name": "IAF camo 1", + "countries": [ + "ISR" + ] + }, + "netherlands rnaf wooded": { + "name": "RNAF wooded", + "countries": [ + "NETH" + ] + }, + "belgium camo": { + "name": "Belgium camo", + "countries": [ + "BEL" + ] + }, + "russia fictional tropic green": { + "name": "Fictional tropic green scheme", + "countries": [ + "RUS" + ] + }, + "turkey fictional desert scheme": { + "name": "Fictional desert 1 scheme", + "countries": [ + "TUR" + ] + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFAB-500", + "name": "4xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 2xKMGU AP", + "name": "2xFuel tank, 2xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8 TsM", + "name": "80xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 40xS-8", + "name": "2xFuel tank, 40xS-8", + "roles": [ + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "80xS-8", + "name": "80xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xKMGU AT", + "name": "4xKMGU AT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AP", + "name": "2xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 12x9A4172", + "name": "2xFuel tank, 12x9A4172", + "roles": [ + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 2xUPK-23", + "name": "2xFuel tank, 2xUPK-23", + "roles": [ + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 40xS-8", + "name": "12x9A4172, 40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 2xKMGU AT", + "name": "12x9A4172, 2xKMGU AT", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xKMGU AP", + "name": "4xKMGU AP", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250, 2xFuel tank", + "name": "2xFAB-250, 2xFuel tank", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 2xFAB-500", + "name": "12x9A4172, 2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 4 + } + ], + "enabled": true, + "code": "20xS-13", + "name": "20xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8", + "name": "40xS-8", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 2xUPK-23", + "name": "12x9A4172, 2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AT", + "name": "2xKMGU AT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 1 + } + ], + "enabled": true, + "code": "6x9A4172", + "name": "6x9A4172", + "roles": [ + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "KMGU-2 - 96 x PTAB-2.5KO Dispenser (CBU) HEAT/AP", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 2xKMGU AT", + "name": "2xFuel tank, 2xKMGU AT", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFuel tank", + "name": "4xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "KMGU-2 - 96 x AO-2.5RT Dispenser (CBU) HE/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKMGU AP, 12x9A4172", + "name": "2xKMGU AP, 12x9A4172", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172", + "name": "12x9A4172", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank", + "name": "2xFuel tank", + "roles": [ + "No task" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8 TsM, 12x9A4172", + "name": "40xS-8 TsM, 12x9A4172", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-500", + "name": "2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8 TsM, 2xFuel tank", + "name": "40xS-8 TsM, 2xFuel tank", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xUPK-23", + "name": "4xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13", + "name": "10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8TsM SM Orange", + "quantity": 2 + } + ], + "enabled": true, + "code": "40xS-8 TsM", + "name": "40xS-8 TsM", + "roles": [ + "FAC-A" + ] + }, + { + "items": [ + { + "name": "UPK-23-250 - 2 x 23mm GSh-23L Autocannon Pod", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xUPK-23", + "name": "2xUPK-23", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "FAB-500 M-62 - 500kg GP Bomb LD", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 2xFAB-500", + "name": "2xFuel tank, 2xFAB-500", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250", + "name": "2xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 4 + } + ], + "enabled": true, + "code": "4xFAB-250", + "name": "4xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + }, + { + "name": "Fuel tank PTB-450", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFuel tank, 10xS-13", + "name": "2xFuel tank, 10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250, 12x9A4172", + "name": "2xFAB-250, 12x9A4172", + "roles": [ + "Strike" + ] + }, + { + "items": [ + { + "name": "APU-6 - 6 x 9M127 Vikhr - ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-13L - 5 x UnGd Rkts, 122 mm S-13OF Blast/Fragmentation", + "quantity": 2 + } + ], + "enabled": true, + "code": "12x9A4172, 10xS-13", + "name": "12x9A4172, 10xS-13", + "roles": [ + "CAS", + "Strike", + "Escort", + "Antiship Strike" + ] + } + ], + "length": 52.5 + }, + "SA342Minigun": { + "name": "SA342Minigun", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "SA342 Minigun Gazelle", + "shortLabel": "342", + "type": "SA342Minigun", + "enabled": false, + "liveries": { + "uk navy red": { + "name": "UK Royal Navy Air 705 Squadron", + "countries": "All" + }, + "uk army batus": { + "name": "UK Army Air Corps BATUS", + "countries": "All" + }, + "nato_drab_us": { + "name": "US Army Olive Drab", + "countries": "All" + }, + "uk army gb": { + "name": "UK Army Air Corps Green/Black", + "countries": "All" + }, + "gen black": { + "name": "Generic Black - low vis", + "countries": "All" + }, + "fr alat hri kfor 1999": { + "name": "FR ALAT HRI KFOR 1999", + "countries": "All" + }, + "srb air force green": { + "name": "SRB Air Force Green", + "countries": "All" + }, + "swe_foa": { + "name": "SE Air Force FOA", + "countries": "All" + }, + "uk raf red": { + "name": "UK Royal Air Force N0. 2 FTS", + "countries": "All" + }, + "ger army gb": { + "name": "GER Army Green / Black", + "countries": "All" + }, + "us marines grey": { + "name": "US Marines Grey", + "countries": "All" + }, + "fr alat ce ealat": { + "name": "FR ALAT CE EALAT", + "countries": "All" + }, + "fr alat ce 1985": { + "name": "FR ALAT CE 1985", + "countries": "All" + }, + "fr alat sable daguet 1990": { + "name": "FR ALAT SABLE Daguet 1990", + "countries": "All" + }, + "syr airforce st": { + "name": "SYR Air Force Sand Teal", + "countries": "All" + }, + "nato_drab_nl": { + "name": "RNLAF Olive Drab", + "countries": "All" + }, + "fr alat hri 1981": { + "name": "FR ALAT HRI 1975", + "countries": "All" + }, + "uk marines gg": { + "name": "UK Royal Marines Grey/Green", + "countries": "All" + }, + "cyp air force sand": { + "name": "CYP Air Force Sand", + "countries": "All" + }, + "gen olive drab": { + "name": "Generic Olive Drab", + "countries": "All" + }, + "uk army gg": { + "name": "UK Army Air Corps Grey/Green", + "countries": "All" + }, + "fr alat ce barkhane 2014": { + "name": "FR ALAT CE Barkhane 2014", + "countries": "All" + }, + "fr alat ce daguet 1990": { + "name": "FR ALAT CE Daguet 1990", + "countries": "All" + }, + "nato_drab_uk": { + "name": "UK Army Air Corps Olive Drab", + "countries": "All" + }, + "uk army batus orange": { + "name": "UK Army Air Corps BATUS Orange", + "countries": "All" + }, + "uk army granby": { + "name": "UK Desert Army Air Corps - Operation Granby", + "countries": "All" + }, + "yug air force gb": { + "name": "YUG Air Force Green Brown", + "countries": "All" + }, + "uk army gb un": { + "name": "UK Army Air Corps Green/Black UN", + "countries": "All" + }, + "fr alat ce opex": { + "name": "FR ALAT CE OPEX", + "countries": "All" + }, + "uk marines gb": { + "name": "UK Royal Marines Green/Black", + "countries": "All" + }, + "gen navy": { + "name": "Generic Navy - Grey", + "countries": "All" + }, + "fr alat sable djibouti 2003": { + "name": "FR ALAT SABLE Djibouti 2003", + "countries": "All" + }, + "leb air force gg": { + "name": "LEB Air Force Green / Grey", + "countries": "All" + }, + "fr alat hri daguet 1990": { + "name": "FR ALAT HRI Daguet 1990", + "countries": "All" + }, + "nato_drab_hel": { + "name": "Hellenic Airforce Olive Drab", + "countries": "All" + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] + }, + { + "items": [ + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "IR Deflector, Sand Filter", + "name": "IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Smoke Generator - red", + "quantity": 1 + }, + { + "name": "Smoke Generator - blue", + "quantity": 1 + } + ], + "enabled": true, + "code": "Display Team Smoke, Red & Blue", + "name": "Display Team Smoke, Red & Blue", + "roles": [ + "CAS" + ] + } + ], + "length": 39.2 + }, + "OH58D": { + "name": "OH58D", + "coalition": "", + "era": "", + "category": "helicopter", + "label": "OH58D", + "shortLabel": "58D", + "type": "OH58D", + "enabled": false, + "liveries": { + "us 6-16 g 356 iraq 2011": { + "name": "US Army 6-16 G Troop 'Grizzly' 356", + "countries": "All" + }, + "us 3-17 c 001 jasmine": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 001 'Jasmine'", + "countries": "All" + }, + "hr 393eh 332": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 332", + "countries": "All" + }, + "tun army": { + "name": "Tunisian Army", + "countries": "All" + }, + "hr 393eh 334": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 334", + "countries": "All" + }, + "hr 393eh 335": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 335", + "countries": "All" + }, + "us 6-17 c 367": { + "name": "US Army 6-17 C Troop 'Crazy Horse' 367", + "countries": "All" + }, + "de army fictional": { + "name": "German Army (fictional)", + "countries": "All" + }, + "ru army fictional": { + "name": "Russian Army (fictional)", + "countries": "All" + }, + "fr army fictional": { + "name": "French Army (fictional)", + "countries": "All" + }, + "us 1-6 a 340": { + "name": "US Army 1-6 A Troop 340", + "countries": "All" + }, + "twn army": { + "name": "Taiwanese Army", + "countries": "All" + }, + "hr 393eh 327": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 327", + "countries": "All" + }, + "hr 393eh 328": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 328", + "countries": "All" + }, + "us 3-17 c 976 jenny": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 976 'Jenny'", + "countries": "All" + }, + "us 6-6 c 971": { + "name": "US Army 6-6 A Troop 'Assassins' 971", + "countries": "All" + }, + "isr army fictional": { + "name": "Israeli Army (fictional)", + "countries": "All" + }, + "hr 393eh 322": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 322", + "countries": "All" + }, + "gr army fictional": { + "name": "Greek Army", + "countries": "All" + }, + "us 3-17 c 179 presley marie": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 179 'Presley Marie'", + "countries": "All" + }, + "us 1-17 b 381": { + "name": "US Army 1-17 B Troop 'Bootleg' 381", + "countries": "All" + }, + "hr 393eh 336": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 336", + "countries": "All" + }, + "default": { + "name": "Default Livery", + "countries": "All" + }, + "uk army fictional desert": { + "name": "British Army Air Corps Desert (fictional)", + "countries": "All" + }, + "us 7-17 a 039 lola": { + "name": "US Army 7-17 A Troop 'Shadow' 039 'Lola'", + "countries": "All" + }, + "hr 393eh 331": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 331", + "countries": "All" + }, + "us 6-17 a 523 iraq 2011": { + "name": "US Army 6-17 A Troop 'Aces' 523", + "countries": "All" + }, + "hr 393eh 330": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 330", + "countries": "All" + }, + "us 6-6 c 179": { + "name": "US Army 6-6 C Troop 'Outcasts' 179", + "countries": "All" + }, + "pl army fictional": { + "name": "Polish Army (fictional)", + "countries": "All" + }, + "us school house 43e": { + "name": "US Army Ft. Rucker School House 43E", + "countries": "All" + }, + "uk army fictional": { + "name": "British Army Air Corps (fictional)", + "countries": "All" + }, + "us 2-6 129 iraq": { + "name": "US Army 2-6 129", + "countries": "All" + }, + "jpn army fictional": { + "name": "Japanese Army (fictional)", + "countries": "All" + }, + "us 1-17 a 079": { + "name": "US Army 1-17 A Troop 'Roughnecks' 079", + "countries": "All" + }, + "us school house 75h": { + "name": "US Army Ft. Rucker School House 75H", + "countries": "All" + }, + "us 1-17 a 344": { + "name": "US Army 1-17 A Troop 'Roughnecks' 344", + "countries": "All" + }, + "hr 393eh 333": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 333", + "countries": "All" + }, + "us 1-17 b 024": { + "name": "US Army 1-17 B Troop 'Bootleg' 024", + "countries": "All" + }, + "us 1-17 a 002": { + "name": "US Army 1-17 A Troop 'Roughnecks' 002", + "countries": "All" + }, + "us -17 a 604 taz": { + "name": "US Army 7-17 A Troop 'Shadow' 604 'Taz'", + "countries": "All" + }, + "us tennessee ang 1-230 113": { + "name": "US Tennesee Army National Guard 1-230 113", + "countries": "All" + }, + "us tennessee ang 1-230 152": { + "name": "US Tennesee Army National Guard 1-230 152", + "countries": "All" + }, + "us school house 26e": { + "name": "US Army Ft. Rucker School House 26E", + "countries": "All" + }, + "hr 393eh 321": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 321", + "countries": "All" + }, + "hr 393eh 325": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 325", + "countries": "All" + }, + "us 3-17 c 561 ariel": { + "name": "US Army 3-17 C Troop 'Crazy Horse' 561 'Ariel'", + "countries": "All" + }, + "us 6-17 b 366": { + "name": "US Army 6-17 B Troop 'Blackfoot' 366", + "countries": "All" + }, + "us 7-17 a 964 marvin": { + "name": "US Army 7-17 A Troop 'Shadow' 964 'Marvin'", + "countries": "All" + }, + "nl army fictional": { + "name": "Dutch Army (fictional)", + "countries": "All" + }, + "us 1-17 a 115": { + "name": "US Army 1-17 A Troop 'Roughnecks' 115", + "countries": "All" + }, + "hr 393eh 329": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 329", + "countries": "All" + }, + "hr 393eh 326": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 326", + "countries": "All" + }, + "us 3-17 b 937 iraq": { + "name": "US Army 3-17 B Troop 'Blackjack' 937", + "countries": "All" + }, + "us 6-6 c 587": { + "name": "US Army 6-6 C Troop 'Outcasts' 587", + "countries": "All" + }, + "us 7-17 a 014 bugs": { + "name": "US Army 7-17 A Troop 'Shadow' 014 'Bugs'", + "countries": "All" + }, + "us 1-6 a 161": { + "name": "US Army 1-6 A Troop 161", + "countries": "All" + }, + "aus army fictional": { + "name": "Australian Army (fictional)", + "countries": "All" + }, + "hr 393eh 324": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 324", + "countries": "All" + }, + "us 6-17 a 571 korea 2014": { + "name": "US Army 6-17 A Troop 'Aces' 571", + "countries": "All" + }, + "hr 393eh 323": { + "name": "Croatian Air Force 393 Eskadrila Helikoptera 323", + "countries": "All" + }, + "es army fictional": { + "name": "Spanish Army (fictional)", + "countries": "All" + } + }, + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "FAC-A" + ] + }, + { + "items": [ + { + "name": "2xFIM-92", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x Stinger", + "name": "4x Stinger", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "2xFIM-92", + "quantity": 1 + }, + { + "name": "M3P500", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x Stinger, Gun", + "name": "2x Stinger, Gun", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "2xAGM-114K", + "quantity": 2 + } + ], + "enabled": true, + "code": "4x Hellfire", + "name": "4x Hellfire", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M3P500", + "quantity": 1 + }, + { + "name": "2xAGM-114K", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x Hellfire, Gun", + "name": "2x Hellfire, Gun", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M3P500", + "quantity": 1 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 1 + } + ], + "enabled": true, + "code": "H10 Rockets, Gun", + "name": "H10 Rockets, Gun", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M3P500", + "quantity": 1 + }, + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M229 HE", + "quantity": 1 + } + ], + "enabled": true, + "code": "H17 Rockets, Gun", + "name": "H17 Rockets, Gun", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M151 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "2x H10 Rockets", + "name": "2x H10 Rockets", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70 M229 HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "2x H17 Rockets", + "name": "2x H17 Rockets", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x Laser Guided Rkts, 70 mm Hydra 70 M151 HE APKWS", + "quantity": 2 + } + ], + "enabled": true, + "code": "2x APKWS", + "name": "2x APKWS", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M3P500", + "quantity": 1 + }, + { + "name": "M260 - 7 x Laser Guided Rkts, 70 mm Hydra 70 M151 HE APKWS", + "quantity": 1 + } + ], + "enabled": true, + "code": "APKWS, Gun", + "name": "APKWS, Gun", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x UnGd Rkts, 70 mm Hydra 70, Pod Zones: A - M151; B - M257", + "quantity": 2 + } + ], + "enabled": true, + "code": "2x H10 / ILLUM Rockets", + "name": "2x H10 / ILLUM Rockets", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + }, + { + "items": [ + { + "name": "M260 - 7 x Laser Guided Rkts, 70 mm Hydra 70 M151 HE APKWS", + "quantity": 1 + }, + { + "name": "2xAGM-114K", + "quantity": 1 + } + ], + "enabled": true, + "code": "2x Hellfire, APKWS", + "name": "2x Hellfire, APKWS", + "roles": [ + "CAP", + "CAS", + "Strike", + "FAC-A", + "Escort", + "Transport", + "Antiship Strike", + "Reconnaissance" + ] + } + ] + }, + "CH-47Fbl1": { + "name": "CH-47Fbl1", + "coalition": "", + "era": "", + "label": "CH-47F", + "shortLabel": "47F", + "type": "CH_47Fbl1", + "enabled": false, + "liveries": { + "turkish land forces": { + "name": "Turkish Land Forces", + "countries": [ + "TUR" + ] + }, + "standard": { + "name": "International Standard", + "countries": [ + "BLR", + "FRA", + "SWE", + "POL", + "UKR", + "KOR", + "ISR", + "THA", + "AUS", + "FIN", + "AUSAF", + "SYR", + "ROU", + "TUR", + "BHR", + "TUN", + "NOR", + "CAN", + "EGY", + "UK", + "JOR", + "MYS", + "SRB", + "SUI", + "HUN", + "BRA", + "CHN", + "IND", + "AUT", + "KAZ", + "ABH", + "BGR", + "JPN", + "SVK", + "INS", + "HRV", + "IRQ", + "RSO", + "SPN", + "NETH", + "GRC", + "PRK", + "MEX", + "ITA", + "GER", + "BEL", + "DEN", + "IRN", + "CZE", + "GRG", + "RUS", + "SAU", + "SDN", + "PAK" + ] + }, + "japan self defence force": { + "name": "Japan Ground Self Defence Force (JGSDF)", + "countries": [ + "JPN" + ] + }, + "dark green": { + "name": "International Dark green", + "countries": [ + "BLR", + "FRA", + "SWE", + "POL", + "UKR", + "KOR", + "ISR", + "THA", + "AUS", + "FIN", + "AUSAF", + "SYR", + "ROU", + "TUR", + "BHR", + "TUN", + "NOR", + "CAN", + "EGY", + "UK", + "JOR", + "MYS", + "SRB", + "SUI", + "HUN", + "BRA", + "CHN", + "IND", + "AUT", + "KAZ", + "ABH", + "BGR", + "JPN", + "SVK", + "INS", + "HRV", + "IRQ", + "RSO", + "SPN", + "NETH", + "GRC", + "PRK", + "MEX", + "ITA", + "GER", + "BEL", + "DEN", + "IRN", + "CZE", + "GRG", + "RUS", + "SAU", + "SDN", + "PAK" + ] + }, + "us army dark green": { + "name": "United States Army Dark green", + "countries": [ + "USA" + ] + }, + "us army standard": { + "name": "United States Army Standard", + "countries": [ + "USA" + ] + } + }, + "category": "helicopter", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Transport" + ] + } + ], + "length": 98.8, + "filename": "ch-47.png" + } +} \ No newline at end of file diff --git a/scripts/python/API/databases/mods.json b/scripts/python/API/databases/mods.json new file mode 100644 index 00000000..49d1a202 --- /dev/null +++ b/scripts/python/API/databases/mods.json @@ -0,0 +1,3 @@ +{ + +} diff --git a/scripts/python/API/databases/navyunitdatabase.json b/scripts/python/API/databases/navyunitdatabase.json new file mode 100644 index 00000000..f9fe8d40 --- /dev/null +++ b/scripts/python/API/databases/navyunitdatabase.json @@ -0,0 +1,1616 @@ +{ + "CVN_71": { + "name": "CVN_71", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "CVN-71 Theodore Roosevelt", + "shortLabel": "CVN-71", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "nimitz.png", + "length": 333 + }, + "CVN_72": { + "name": "CVN_72", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "CVN-72 Abraham Lincoln", + "shortLabel": "CVN-72", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "nimitz.png", + "length": 333 + }, + "CVN_73": { + "name": "CVN_73", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "CVN-73 George Washington", + "shortLabel": "CVN-73", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "nimitz.png", + "length": 333 + }, + "CVN_75": { + "name": "CVN_75", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "CVN-75 Harry S. Truman", + "shortLabel": "CVN-75", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "nimitz.png", + "length": 333 + }, + "CV_1143_5": { + "name": "CV_1143_5", + "coalition": "red", + "type": "Aircraft Carrier", + "era": "Modern", + "category": "navyunit", + "label": "Admiral Kuznetsov (2017)", + "shortLabel": "Admiral Kuznetsov", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 25000, + "engagementRange": 12000, + "tags": "", + "description": "Admiral Kuznetsov. Conventional STOBAR carrier", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "kuznetsov.png", + "length": 305 + }, + "CastleClass_01": { + "name": "CastleClass_01", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "HMS Leeds Castle (P-258)", + "shortLabel": "HMS Leeds Castle (P-258)", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "dumbarton": { + "name": "Dumbarton", + "countries": "All" + } + }, + "acquisitionRange": 25000, + "engagementRange": 3000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HandyWind": { + "name": "HandyWind", + "coalition": "blue", + "type": "Cargo/Transport", + "era": "Late Cold War", + "category": "navyunit", + "label": "Bulker Handy Wind", + "shortLabel": "Bulker Handy Wind", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "noname": { + "name": "NoName", + "countries": "All" + }, + "handy_wind": { + "name": "Handy Wind", + "countries": "All" + }, + "baltic_cove": { + "name": "Baltic Cove", + "countries": "All" + }, + "baltic_wind": { + "name": "Baltic Wind", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HarborTug": { + "name": "HarborTug", + "coalition": "", + "type": "Cargo/Transport", + "era": "Mid Cold War", + "category": "navyunit", + "label": "Harbor Tug", + "shortLabel": "Harbor Tug", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "harbor tug blue": { + "name": "Harbor Tug Blue", + "countries": "All" + }, + "harbor tug red": { + "name": "Harbor Tug Red", + "countries": "All" + }, + "harbor tug black": { + "name": "Harbor Tug Black", + "countries": "All" + }, + "harbor tug green": { + "name": "Harbor Tug Green", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "LHA_Tarawa": { + "name": "LHA_Tarawa", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Mid Cold War", + "category": "navyunit", + "label": "LHA-1 Tarawa", + "shortLabel": "LHA-1 Tarawa", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 20000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "carrierFilename": "tarawa.png", + "length": 270 + }, + "La_Combattante_II": { + "name": "La_Combattante_II", + "coalition": "blue", + "type": "Fast Attack Craft", + "era": "Mid Cold War", + "category": "navyunit", + "label": "FAC La Combattante lla", + "shortLabel": "FAC La Combattante", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "irn_217": { + "name": "217", + "countries": ["IRN"] + }, + "syr_35": { + "name": "35", + "countries": ["SYR"] + }, + "lib_521": { + "name": "521", + "countries": ["LIB"] + }, + "grg_dioskuria": { + "name": "Dioskuria", + "countries": ["GRG"] + }, + "grc_p77_plotarchis sakipis": { + "name": "Plotarchis_Sakipis", + "countries": ["GRC"] + }, + "grc_p72_ypoploiarchos votsis": { + "name": "Ypoploiarchos_Votsis", + "countries": ["GRC"] + }, + "egp_601": { + "name": "601", + "countries": ["EGP"] + }, + "irn_215": { + "name": "215", + "countries": ["IRN"] + }, + "ger_s50_panther": { + "name": "S50_Panther", + "countries": ["GER"] + }, + "lib_520": { + "name": "520", + "countries": ["LIB"] + }, + "grc_p73_antiploiarchos pezopoulos": { + "name": "Antiploiarchos_Pezopoulos", + "countries": ["GRC"] + }, + "ger_s54_elster": { + "name": "S54_Elster", + "countries": ["GER"] + }, + "ger_s58_pinguin": { + "name": "S58_Pinguin", + "countries": ["GER"] + }, + "grc_p74_plotarchis vlachavas": { + "name": "Plotarchis_Vlachavas", + "countries": ["GRC"] + }, + "ger_s52_storch": { + "name": "S52_Storch", + "countries": ["GER"] + }, + "ger_s57_weihe": { + "name": "S57_Weihe", + "countries": ["GER"] + }, + "egp_604": { + "name": "604", + "countries": ["EGP"] + }, + "ger_s53_pelikan": { + "name": "S53_Pelikan", + "countries": ["GER"] + }, + "lib_522": { + "name": "522", + "countries": ["LIB"] + }, + "ger_s56_dommel": { + "name": "S56_Dommel", + "countries": ["GER"] + }, + "irn_216": { + "name": "216", + "countries": ["IRN"] + }, + "ger_s59_reiher": { + "name": "S59_Reiher", + "countries": ["GER"] + }, + "lib_519": { + "name": "519", + "countries": ["LIB"] + }, + "syr_34": { + "name": "34", + "countries": ["SYR"] + }, + "irn_218": { + "name": "218", + "countries": ["IRN"] + }, + "grc_p76_ypoploiarchos tournas": { + "name": "Ypoploiarchos_Tournas", + "countries": ["GRC"] + }, + "grc_p75_plotarchis maridakis": { + "name": "Plotarchis_Maridakis", + "countries": ["GRC"] + }, + "ger_s55_alk": { + "name": "S55_Alk", + "countries": ["GER"] + }, + "grg_305": { + "name": "305", + "countries": ["GRG"] + }, + "egp_602": { + "name": "602", + "countries": ["EGP"] + }, + "irn_212": { + "name": "212", + "countries": ["IRN"] + }, + "grg_304": { + "name": "304", + "countries": ["GRG"] + }, + "irn_214": { + "name": "214", + "countries": ["IRN"] + }, + "irn_219": { + "name": "219", + "countries": ["IRN"] + }, + "syr_36": { + "name": "36", + "countries": ["SYR"] + }, + "lib_518": { + "name": "518", + "countries": ["LIB"] + }, + "egp_605": { + "name": "605", + "countries": ["EGP"] + }, + "ger_s51_haher": { + "name": "S51_Haher", + "countries": ["GER"] + }, + "egp_603": { + "name": "603", + "countries": ["EGP"] + } + }, + "acquisitionRange": 19000, + "engagementRange": 4000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Seawise_Giant": { + "name": "Seawise_Giant", + "coalition": "blue", + "type": "Cargo/Transport", + "era": "Late Cold War", + "category": "navyunit", + "label": "Seawise Giant (Tanker)", + "shortLabel": "Seawise Giant", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Ship_Tilde_Supply": { + "name": "Ship_Tilde_Supply", + "coalition": "blue", + "type": "Cargo/Transport", + "era": "Late Cold War", + "category": "navyunit", + "label": "Supply Ship MV Tilde", + "shortLabel": "Supply Ship Tilde", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Stennis": { + "name": "Stennis", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "CVN-74 John C. Stennis", + "shortLabel": "CVN-74", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "carrierFilename": "nimitz.png", + "length": 333 + }, + "TICONDEROG": { + "name": "TICONDEROG", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Ticonderoga Class (Cruiser)", + "shortLabel": "Ticonderoga", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "vellagulf": { + "name": "USS Vella Gulf CG-72", + "countries": ["USA"] + }, + "huecity": { + "name": "USS Hue City CG-66", + "countries": ["USA"] + }, + "capestgeorge": { + "name": "USS Cape St. George CG-71", + "countries": ["USA"] + }, + "lakeerie": { + "name": "USS Lake Erie CG-70", + "countries": ["USA"] + }, + "chosin": { + "name": "USS Chosin CG-65", + "countries": ["USA"] + }, + "normandy": { + "name": "USS Normandy CG-60", + "countries": ["USA"] + }, + "portroyal": { + "name": "USS Port Royal CG-73", + "countries": ["USA"] + }, + "shiloh": { + "name": "USS Shiloh CG-67", + "countries": ["USA"] + }, + "viksburg": { + "name": "USS Viksburg CG-69", + "countries": ["USA"] + }, + "anzio": { + "name": "USS Anzio CG-68", + "countries": ["USA"] + } + }, + "acquisitionRange": 150000, + "engagementRange": 100000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_052B": { + "name": "Type_052B", + "coalition": "red", + "type": "Combatants", + "era": "Modern", + "category": "navyunit", + "label": "Type 52B Guangzhou", + "shortLabel": "Type 52B", + "range": "Short", + "filename": "", + "enabled": true, + "liveries": { + "general": { + "name": "General", + "countries": "All" + }, + "ddg-169": { + "name": "DDG-169 Wuhan", + "countries": ["CHN"] + }, + "ddg-168": { + "name": "DDG-168 Guangzhou", + "countries": ["CHN"] + } + }, + "acquisitionRange": 100000, + "engagementRange": 30000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_052C": { + "name": "Type_052C", + "coalition": "red", + "type": "Combatants", + "era": "Modern", + "category": "navyunit", + "label": "Type 52C Haikou (Destroyer)", + "shortLabel": "Type 52C", + "range": "Short", + "filename": "", + "enabled": true, + "liveries": { + "ddg-171": { + "name": "DDG-171 Haikou", + "countries": ["CHN"] + }, + "general": { + "name": "General", + "countries": "All" + }, + "ddg-151": { + "name": "DDG-151 Zhengzhou", + "countries": ["CHN"] + }, + "ddg-170": { + "name": "DDG-170 Lanzhou", + "countries": ["CHN"] + }, + "default": { + "name": "DDG-150 Changchun", + "countries": ["CHN"] + }, + "ddg-152": { + "name": "DDG-152 Jinan", + "countries": ["CHN"] + }, + "ddg-153": { + "name": "DDG-153 Xi'an", + "countries": ["CHN"] + } + }, + "acquisitionRange": 260000, + "engagementRange": 100000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_054A": { + "name": "Type_054A", + "coalition": "red", + "type": "Combatants", + "era": "Modern", + "category": "navyunit", + "label": "Type 54A Yantai (Frigate)", + "shortLabel": "Type 54A", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "ffg-573": { + "name": "FFG-573 Liuzhou", + "countries": ["CHN"] + }, + "ffg-578": { + "name": "FFG-578 Yangzhou", + "countries": ["CHN"] + }, + "ffg-531": { + "name": "FFG-531 Xiangtan", + "countries": ["CHN"] + }, + "ffg-550": { + "name": "FFG-550 Weifang", + "countries": ["CHN"] + }, + "ffg-536": { + "name": "FFG-536 Xuchang", + "countries": ["CHN"] + }, + "ffg-549": { + "name": "FFG-549 Changzhou", + "countries": ["CHN"] + }, + "ffg-574": { + "name": "FFG-574 Sanya", + "countries": ["CHN"] + }, + "default": { + "name": "FFG-515 Binzhou", + "countries": ["CHN"] + }, + "ffg-576": { + "name": "FFG-576 Daqing", + "countries": ["CHN"] + }, + "ffg-599": { + "name": "FFG-599 Anyang", + "countries": ["CHN"] + }, + "ffg-547": { + "name": "FFG-547 Linyi", + "countries": ["CHN"] + }, + "ffg-571": { + "name": "FFG-571 Yuncheng", + "countries": ["CHN"] + }, + "ffg-546": { + "name": "FFG-546 Yancheng", + "countries": ["CHN"] + }, + "ffg-579": { + "name": "FFG-579 Handan", + "countries": ["CHN"] + }, + "ffg-532": { + "name": "FFG-532 Jingzhou", + "countries": ["CHN"] + }, + "ffg-569": { + "name": "FFG-569 Yulin", + "countries": ["CHN"] + }, + "ffg-538": { + "name": "FFG-538 Yantai", + "countries": ["CHN"] + }, + "ffg-577": { + "name": "FFG-577 Huanggang", + "countries": ["CHN"] + }, + "general": { + "name": "General", + "countries": "All" + }, + "ffg-572": { + "name": "FFG-572 Hengshui", + "countries": ["CHN"] + }, + "ffg-539": { + "name": "FFG-539 Wuhu", + "countries": ["CHN"] + }, + "ffg-548": { + "name": "FFG-548 Yiyang", + "countries": ["CHN"] + }, + "ffg-575": { + "name": "FFG-575 Yueyang", + "countries": ["CHN"] + }, + "ffg-598": { + "name": "FFG-598 Rizhao", + "countries": ["CHN"] + }, + "ffg-500": { + "name": "FFG-500 Xianning", + "countries": ["CHN"] + } + }, + "acquisitionRange": 160000, + "engagementRange": 45000, + "tags": "", + "description": "", + "abilities": "35nm >50,000ft range" + }, + "Type_071": { + "name": "Type_071", + "coalition": "red", + "type": "Cargo/Transport", + "era": "Modern", + "category": "navyunit", + "label": "Type 071 (Transport dock)", + "shortLabel": "Type 071", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "lpd-978": { + "name": "978 Wuzhi Shan", + "countries": ["CHN"] + }, + "lpd-989": { + "name": "989 Changbai Shan", + "countries": ["CHN"] + }, + "default": { + "name": "998 Kunlun Shan", + "countries": ["CHN"] + }, + "lpd-999": { + "name": "999 Jinggang Shan", + "countries": ["CHN"] + }, + "lpd-988": { + "name": "988 Yimeng Shan", + "countries": ["CHN"] + }, + "lpd-980": { + "name": "980 Longhu Shan", + "countries": ["CHN"] + } + }, + "acquisitionRange": 300000, + "engagementRange": 150000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_093": { + "name": "Type_093", + "coalition": "red", + "type": "Submarine", + "era": "Modern", + "category": "navyunit", + "label": "Type 093 (Shang)", + "shortLabel": "Type 093", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "periscope_state_1": { + "name": "Periscope State 1", + "countries": "All" + } + }, + "acquisitionRange": 40000, + "engagementRange": 40000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "USS_Arleigh_Burke_IIa": { + "name": "USS_Arleigh_Burke_IIa", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Arleigh Burke Class (Destroyer)", + "shortLabel": "Arleigh Burke Class (Destroyer)", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "ddg-107_uss_gravely": { + "name": "DDG-107 USS Gravely", + "countries": ["USA"] + }, + "ddg-112_uss_michael_murphy": { + "name": "DDG-112 USS Michael Murphy", + "countries": ["USA"] + }, + "ddg-101_uss_gridley": { + "name": "DDG-101 USS Gridley", + "countries": ["USA"] + }, + "ddg-106_uss_stockdale": { + "name": "DDG-106 USS Stockdale", + "countries": ["USA"] + }, + "ddg-115_uss_rafael_peralta": { + "name": "DDG-115 USS Rafael Peralta", + "countries": ["USA"] + }, + "ddg-114_uss_ralph_johnson": { + "name": "DDG-114 USS Ralph Johnson", + "countries": ["USA"] + }, + "ddg-116_uss_thomas_hudner": { + "name": "DDG-116 USS Thomas Hudner", + "countries": ["USA"] + }, + "ddg-113_uss_john_finn": { + "name": "DDG-113 USS John Finn", + "countries": ["USA"] + }, + "ddg-108_uss_wayne_e.meyer": { + "name": "DDG-108 USS Wayne E. Meyer", + "countries": ["USA"] + }, + "ddg-110_uss_william_p.lawrence": { + "name": "DDG-110 USS William P. Lawrence", + "countries": ["USA"] + }, + "ddg-103_uss_truxtun": { + "name": "DDG-103 USS Truxtun", + "countries": ["USA"] + }, + "ddg-109_uss_jason_dunham": { + "name": "DDG-109 USS Jason Dunham", + "countries": ["USA"] + }, + "ddg-105_uss_dewey": { + "name": "DDG-105 USS Dewey", + "countries": ["USA"] + }, + "ddg-104_uss_sterett": { + "name": "DDG-104 USS Sterett", + "countries": ["USA"] + }, + "ddg-102_uss_sampson": { + "name": "DDG-102 USS Sampson", + "countries": ["USA"] + }, + "ddg-111_uss_spruance": { + "name": "DDG-111 USS Spruance", + "countries": ["USA"] + } + }, + "acquisitionRange": 150000, + "engagementRange": 100000, + "abilities": "", + "tags": "", + "description": "", + "canTargetPoint": true, + "canRearm": false + }, + "ara_vdm": { + "name": "ara_vdm", + "coalition": "", + "type": "Aircraft Carrier", + "era": "Mid Cold War", + "category": "navyunit", + "label": "ARA Vienticinco de Mayo", + "shortLabel": "ARA Vienticinco de Mayo", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 18000, + "engagementRange": 5000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "carrierFilename": "vienticincodemayo.png", + "length": 210 + }, + "hms_invincible": { + "name": "hms_invincible", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "HMS Invincible", + "shortLabel": "HMS Invincible", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 100000, + "engagementRange": 74000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false, + "carrierFilename": "invincible.png", + "length": 206 + }, + "leander-gun-achilles": { + "name": "leander-gun-achilles", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "HMS Achilles (F12)", + "shortLabel": "HMS Achilles", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 8000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-andromeda": { + "name": "leander-gun-andromeda", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "HMS Andromeda (F57)", + "shortLabel": "HMS Andromeda", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 140000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-ariadne": { + "name": "leander-gun-ariadne", + "coalition": "blue", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "HMS Ariadne (F72)", + "shortLabel": "HMS Ariadne", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 100000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-condell": { + "name": "leander-gun-condell", + "coalition": "", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Almirante Condell PFG-06", + "shortLabel": "Almirante Condell", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 100000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-lynch": { + "name": "leander-gun-lynch", + "coalition": "", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "CNS Almirante Lynch (PFG-07)", + "shortLabel": "CNS Almirante Lynch", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 140000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "santafe": { + "name": "santafe", + "coalition": "", + "type": "Submarine", + "era": "WW2", + "category": "navyunit", + "label": "ARA Santa Fe S-21", + "shortLabel": "ARA Santa", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "speedboat": { + "name": "speedboat", + "coalition": "", + "era": "", + "category": "navyunit", + "label": "Boat Armed Hi-speed", + "shortLabel": "Boat Armed Hi-speed", + "type": "Fast Attack Craft", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "PERRY": { + "name": "PERRY", + "coalition": "blue", + "type": "Combatants", + "era": "Mid Cold War", + "category": "navyunit", + "label": "Oliver H. Perry", + "shortLabel": "Oliver H. Perry", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "gary": { + "name": "USS Gary FFG-51", + "countries": "All" + }, + "carr": { + "name": "USS Carr FFG-52", + "countries": "All" + }, + "reubenjames": { + "name": "USS Reuben James FFG-57", + "countries": "All" + }, + "hawes": { + "name": "USS Hawes FFG-53", + "countries": "All" + }, + "ford": { + "name": "USS Ford FFG-54", + "countries": "All" + }, + "elrod": { + "name": "USS Elrod FFG-55", + "countries": "All" + }, + "vandergrift": { + "name": "USS Vandergrift FFG-48", + "countries": "All" + }, + "rentz": { + "name": "USS Rentz FFG-46", + "countries": "All" + }, + "nicholas": { + "name": "USS Nicholas FFG-47", + "countries": "All" + }, + "kauffman": { + "name": "USS Kauffman FFG-59", + "countries": "All" + } + }, + "acquisitionRange": 150000, + "engagementRange": 100000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ALBATROS": { + "name": "ALBATROS", + "coalition": "red", + "type": "Combatants", + "era": "Modern", + "category": "navyunit", + "label": "Albatros (Grisha-5)", + "shortLabel": "Albatros", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "141": { + "name": "141", + "countries": "All" + }, + "142": { + "name": "142", + "countries": "All" + }, + "143": { + "name": "143", + "countries": "All" + }, + "144": { + "name": "144", + "countries": "All" + }, + "145": { + "name": "145", + "countries": "All" + }, + "146": { + "name": "146", + "countries": "All" + }, + "147": { + "name": "147", + "countries": "All" + }, + "148": { + "name": "148", + "countries": "All" + }, + "149": { + "name": "149", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 16000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "KUZNECOW": { + "name": "KUZNECOW", + "coalition": "red", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "category": "navyunit", + "label": "Admiral Kuznetsov", + "shortLabel": "AK", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 25000, + "engagementRange": 12000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "kuznetsov.png", + "length": 305 + }, + "MOLNIYA": { + "name": "MOLNIYA", + "coalition": "", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Molniya (Tarantul-3)", + "shortLabel": "Molniya", + "range": "Short", + "filename": "", + "enabled": true, + "liveries": { + "952": { + "name": "952", + "countries": "All" + }, + "953": { + "name": "953", + "countries": "All" + }, + "954": { + "name": "954", + "countries": "All" + } + }, + "acquisitionRange": 21000, + "engagementRange": 2000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "MOSCOW": { + "name": "MOSCOW", + "coalition": "red", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Moscow", + "shortLabel": "Moscow", + "range": "Medium", + "filename": "", + "enabled": true, + "liveries": { + "default": { + "name": "default", + "countries": "All" + }, + "cow1": { + "name": "cow1", + "countries": "All" + }, + "cow3": { + "name": "cow3", + "countries": "All" + }, + "cow2": { + "name": "cow2", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 75000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "NEUSTRASH": { + "name": "NEUSTRASH", + "coalition": "red", + "type": "Combatants", + "era": "Late Cold War", + "category": "navyunit", + "label": "Neustrashimy", + "shortLabel": "Neustrashimy", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 27000, + "engagementRange": 12000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "PIOTR": { + "name": "PIOTR", + "coalition": "red", + "era": "Late Cold War", + "category": "navyunit", + "label": "Pyotr Velikiy (Battlecruiser)", + "shortLabel": "Pyotr Velikiy", + "type": "Combatants", + "enabled": true, + "liveries": {}, + "acquisitionRange": 250000, + "engagementRange": 190000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "REZKY": { + "name": "REZKY", + "coalition": "red", + "type": "Combatants", + "era": "WW2", + "category": "navyunit", + "label": "Rezky (Krivak-2)", + "shortLabel": "Rezky", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 30000, + "engagementRange": 16000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ELNYA": { + "name": "ELNYA", + "coalition": "red", + "type": "Cargo/Transport", + "era": "Late Cold War", + "category": "navyunit", + "label": "Elnya tanker", + "shortLabel": "Elnya tanker", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "952": { + "name": "952", + "countries": "All" + }, + "953": { + "name": "953", + "countries": "All" + }, + "954": { + "name": "954", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Dry-cargo ship-2": { + "name": "Dry-cargo ship-2", + "coalition": "", + "era": "", + "category": "navyunit", + "label": "Cargo Ivanov", + "shortLabel": "Cargo Ivanov", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Dry-cargo ship-1": { + "name": "Dry-cargo ship-1", + "coalition": "", + "era": "", + "category": "navyunit", + "label": "Bulker Yakushev", + "shortLabel": "Bulker Yakushev", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZWEZDNY": { + "name": "ZWEZDNY", + "coalition": "", + "type": "Cargo/Transport", + "era": "Modern", + "category": "navyunit", + "label": "Zwezdny", + "shortLabel": "Zwezdny", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "KILO": { + "name": "KILO", + "coalition": "red", + "type": "Submarine", + "era": "Mid Cold War", + "category": "navyunit", + "label": "Project 636 Varshavyanka Basic", + "shortLabel": "Varshavyanka Basic", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "IMPROVED_KILO": { + "name": "IMPROVED_KILO", + "coalition": "red", + "era": "", + "category": "navyunit", + "label": "SSK 636 Improved Kilo", + "shortLabel": "Kilo", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SOM": { + "name": "SOM", + "coalition": "", + "era": "", + "category": "navyunit", + "label": "SSK 641B Tango", + "shortLabel": "Tango", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Forrestal": { + "name": "Forrestal", + "coalition": "blue", + "era": "Early Cold War", + "category": "navyunit", + "label": "CV-59 Forrestal", + "shortLabel": "CV-59 Forrestal", + "type": "Aircraft Carrier", + "enabled": true, + "liveries": {}, + "acquisitionRange": 50000, + "engagementRange": 25000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false, + "carrierFilename": "forrestal.png", + "length": 326 + }, + "LST_Mk2": { + "name": "LST_Mk2", + "coalition": "blue", + "era": "WW2", + "category": "navyunit", + "label": "LST Mk.II", + "shortLabel": "LST Mk.II", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "USS_Samuel_Chase": { + "name": "USS_Samuel_Chase", + "coalition": "blue", + "era": "WW2", + "category": "navyunit", + "label": "LS Samuel Chase", + "shortLabel": "LS Samuel Chase", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 7000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Higgins_boat": { + "name": "Higgins_boat", + "coalition": "blue", + "era": "WW2", + "category": "navyunit", + "label": "Boat LCVP Higgins", + "shortLabel": "Boat LCVP Higgins", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {}, + "acquisitionRange": 3000, + "engagementRange": 1000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Uboat_VIIC": { + "name": "Uboat_VIIC", + "coalition": "red", + "era": "WW2", + "category": "navyunit", + "label": "U-boat VIIC", + "shortLabel": "U-boat", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 20000, + "engagementRange": 4000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Schnellboot_type_S130": { + "name": "Schnellboot_type_S130", + "coalition": "red", + "era": "WW2", + "category": "navyunit", + "label": "Boat Schnellboot type S130", + "shortLabel": "Boat Schnellboot type S130", + "type": "Fast Attack Craft", + "enabled": true, + "liveries": {}, + "acquisitionRange": 10000, + "engagementRange": 4000, + "tags": "", + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BDK-775": { + "name": "BDK-775", + "coalition": "", + "era": "Late Cold War", + "category": "navyunit", + "label": "LS Ropucha", + "shortLabel": "LS Ropucha", + "type": "Cargo/Transport", + "enabled": true, + "liveries": {} + }, + "VINSON": { + "name": "VINSON", + "coalition": "", + "era": "", + "category": "navyunit", + "label": "Do not enable - CVN-70 Carl Vinson - Very legacy, invisible unit ", + "shortLabel": "CVN-70 Carl Vinson", + "type": "Bugged", + "enabled": false, + "liveries": {} + } +} diff --git a/scripts/python/API/olympus.json b/scripts/python/API/olympus.json new file mode 100644 index 00000000..2196d9e0 --- /dev/null +++ b/scripts/python/API/olympus.json @@ -0,0 +1,46 @@ +{ + "backend": { + "address": "refugees.dcsolympus.com/direct" + }, + "authentication": { + "gameMasterPassword": "a00a5973aacb17e4659125fbe10f4160d096dd84b2f586d2d75669462a30106d", + "blueCommanderPassword": "7d2e1ef898b21db7411f725a945b76ec8dcad340ed705eaf801bc82be6fe8a4a", + "redCommanderPassword": "abc5de7abdb8ed98f6d11d22c9d17593e339fde9cf4b9e170541b4f41af937e3" + }, + "frontend": { + "port": 3000, + "autoconnectWhenLocal": true, + "customAuthHeaders": { + "enabled": false, + "username": "X-Authorized", + "group": "X-Group" + }, + "elevationProvider": { + "provider": "https://srtm.fasma.org/{lat}{lng}.SRTMGL3S.hgt.zip", + "username": null, + "password": null + }, + "mapLayers": { + "ArcGIS Satellite": { + "urlTemplate": "https://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}", + "minZoom": 1, + "maxZoom": 19, + "attribution": "Tiles © Esri — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Mapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community" + }, + "OpenStreetMap Mapnik": { + "urlTemplate": "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + "minZoom": 1, + "maxZoom": 20, + "attribution": "OpenStreetMap contributors" + } + }, + "mapMirrors": { + "DCS Map (Official)": "https://maps.dcsolympus.com/maps", + "DCS Map (Alt.)": "https://refugees.dcsolympus.com/maps" + } + }, + "audio": { + "SRSPort": 5002, + "WSPort": 4000 + } +} \ No newline at end of file diff --git a/scripts/python/API/roes.py b/scripts/python/API/roes.py new file mode 100644 index 00000000..ac43ee85 --- /dev/null +++ b/scripts/python/API/roes.py @@ -0,0 +1 @@ +ROES = ["", "free", "designated", "return", "hold"] \ No newline at end of file diff --git a/scripts/python/API/states.py b/scripts/python/API/states.py new file mode 100644 index 00000000..f8f8b8ea --- /dev/null +++ b/scripts/python/API/states.py @@ -0,0 +1,19 @@ +states = [ + "none", + "idle", + "reach-destination", + "attack", + "follow", + "land", + "refuel", + "AWACS", + "tanker", + "bomb-point", + "carpet-bomb", + "bomb-building", + "fire-at-area", + "simulate-fire-fight", + "scenic-aaa", + "miss-on-purpose", + "land-at-point" + ] \ No newline at end of file diff --git a/scripts/python/API/unit.py b/scripts/python/API/unit.py new file mode 100644 index 00000000..148e284c --- /dev/null +++ b/scripts/python/API/unit.py @@ -0,0 +1,214 @@ +from data_extractor import DataExtractor +from data_indexes import DataIndexes +from data_types import LatLng, TACAN, Radio, GeneralSettings, Ammo, Contact, Offset +from typing import List + +from roes import ROES +from states import states +from utils import enum_to_coalition + +class Unit: + def __init__(self, id: int): + self.ID = id + + # Data controlled directly by the backend + self.alive = False + self.alarm_state = "AUTO" + self.human = False + self.controlled = False + self.coalition = "neutral" + self.country = 0 + self.name = "" + self.unit_name = "" + self.callsign = "" + self.group_id = 0 + self.unit_id = 0 + self.group_name = "" + self.state = "" + self.task = "" + self.has_task = False + self.position = LatLng(0, 0, 0) + self.speed = 0.0 + self.horizontal_velocity = 0.0 + self.vertical_velocity = 0.0 + self.heading = 0.0 + self.track = 0.0 + self.is_active_tanker = False + self.is_active_awacs = False + self.on_off = True + self.follow_roads = False + self.fuel = 0 + self.desired_speed = 0.0 + self.desired_speed_type = "CAS" + self.desired_altitude = 0.0 + self.desired_altitude_type = "ASL" + self.leader_id = 0 + self.formation_offset = Offset(0, 0, 0) + self.target_id = 0 + self.target_position = LatLng(0, 0, 0) + self.roe = "" + self.reaction_to_threat = "" + self.emissions_countermeasures = "" + self.tacan = TACAN(False, 0, "X", "TKR") + self.radio = Radio(124000000, 1, 1) + self.general_settings = GeneralSettings(False, False, False, False, False) + self.ammo: List[Ammo] = [] + self.contacts: List[Contact] = [] + self.active_path: List[LatLng] = [] + self.is_leader = False + self.operate_as = "blue" + self.shots_scatter = 2 + self.shots_intensity = 2 + self.health = 100 + self.racetrack_length = 0.0 + self.racetrack_anchor = LatLng(0, 0, 0) + self.racetrack_bearing = 0.0 + self.airborne = False + + self.previous_total_ammo = 0 + self.total_ammo = 0 + + def __repr__(self): + return f"Unit(id={self.ID}, name={self.name}, coalition={self.coalition}, position={self.position})" + + def update_from_data_extractor(self, data_extractor: DataExtractor): + datum_index = 0 + + while datum_index != DataIndexes.END_OF_DATA.value: + datum_index = data_extractor.extract_uint8() + + if datum_index == DataIndexes.CATEGORY.value: + data_extractor.extract_string() + elif datum_index == DataIndexes.ALIVE.value: + self.alive = data_extractor.extract_bool() + elif datum_index == DataIndexes.RADAR_STATE.value: + self.radar_state = data_extractor.extract_bool() + elif datum_index == DataIndexes.HUMAN.value: + self.human = data_extractor.extract_bool() + elif datum_index == DataIndexes.CONTROLLED.value: + self.controlled = data_extractor.extract_bool() + elif datum_index == DataIndexes.COALITION.value: + new_coalition = enum_to_coalition(data_extractor.extract_uint8()) + self.coalition = new_coalition + elif datum_index == DataIndexes.COUNTRY.value: + self.country = data_extractor.extract_uint8() + elif datum_index == DataIndexes.NAME.value: + self.name = data_extractor.extract_string() + elif datum_index == DataIndexes.UNIT_NAME.value: + self.unit_name = data_extractor.extract_string() + elif datum_index == DataIndexes.CALLSIGN.value: + self.callsign = data_extractor.extract_string() + elif datum_index == DataIndexes.UNIT_ID.value: + self.unit_id = data_extractor.extract_uint32() + elif datum_index == DataIndexes.GROUP_ID.value: + self.group_id = data_extractor.extract_uint32() + elif datum_index == DataIndexes.GROUP_NAME.value: + self.group_name = data_extractor.extract_string() + elif datum_index == DataIndexes.STATE.value: + self.state = states[data_extractor.extract_uint8()] + elif datum_index == DataIndexes.TASK.value: + self.task = data_extractor.extract_string() + elif datum_index == DataIndexes.HAS_TASK.value: + self.has_task = data_extractor.extract_bool() + elif datum_index == DataIndexes.POSITION.value: + self.position = data_extractor.extract_lat_lng() + elif datum_index == DataIndexes.SPEED.value: + self.speed = data_extractor.extract_float64() + elif datum_index == DataIndexes.HORIZONTAL_VELOCITY.value: + self.horizontal_velocity = data_extractor.extract_float64() + elif datum_index == DataIndexes.VERTICAL_VELOCITY.value: + self.vertical_velocity = data_extractor.extract_float64() + elif datum_index == DataIndexes.HEADING.value: + self.heading = data_extractor.extract_float64() + elif datum_index == DataIndexes.TRACK.value: + self.track = data_extractor.extract_float64() + elif datum_index == DataIndexes.IS_ACTIVE_TANKER.value: + self.is_active_tanker = data_extractor.extract_bool() + elif datum_index == DataIndexes.IS_ACTIVE_AWACS.value: + self.is_active_awacs = data_extractor.extract_bool() + elif datum_index == DataIndexes.ON_OFF.value: + self.on_off = data_extractor.extract_bool() + elif datum_index == DataIndexes.FOLLOW_ROADS.value: + self.follow_roads = data_extractor.extract_bool() + elif datum_index == DataIndexes.FUEL.value: + self.fuel = data_extractor.extract_uint16() + elif datum_index == DataIndexes.DESIRED_SPEED.value: + self.desired_speed = data_extractor.extract_float64() + elif datum_index == DataIndexes.DESIRED_SPEED_TYPE.value: + self.desired_speed_type = "GS" if data_extractor.extract_bool() else "CAS" + elif datum_index == DataIndexes.DESIRED_ALTITUDE.value: + self.desired_altitude = data_extractor.extract_float64() + elif datum_index == DataIndexes.DESIRED_ALTITUDE_TYPE.value: + self.desired_altitude_type = "AGL" if data_extractor.extract_bool() else "ASL" + elif datum_index == DataIndexes.LEADER_ID.value: + self.leader_id = data_extractor.extract_uint32() + elif datum_index == DataIndexes.FORMATION_OFFSET.value: + self.formation_offset = data_extractor.extract_offset() + elif datum_index == DataIndexes.TARGET_ID.value: + self.target_id = data_extractor.extract_uint32() + elif datum_index == DataIndexes.TARGET_POSITION.value: + self.target_position = data_extractor.extract_lat_lng() + elif datum_index == DataIndexes.ROE.value: + self.roe = ROES[data_extractor.extract_uint8()] + elif datum_index == DataIndexes.ALARM_STATE.value: + self.alarm_state = self.enum_to_alarm_state(data_extractor.extract_uint8()) + elif datum_index == DataIndexes.REACTION_TO_THREAT.value: + self.reaction_to_threat = self.enum_to_reaction_to_threat(data_extractor.extract_uint8()) + elif datum_index == DataIndexes.EMISSIONS_COUNTERMEASURES.value: + self.emissions_countermeasures = self.enum_to_emission_countermeasure(data_extractor.extract_uint8()) + elif datum_index == DataIndexes.TACAN.value: + self.tacan = data_extractor.extract_tacan() + elif datum_index == DataIndexes.RADIO.value: + self.radio = data_extractor.extract_radio() + elif datum_index == DataIndexes.GENERAL_SETTINGS.value: + self.general_settings = data_extractor.extract_general_settings() + elif datum_index == DataIndexes.AMMO.value: + self.ammo = data_extractor.extract_ammo() + self.previous_total_ammo = self.total_ammo + self.total_ammo = sum(ammo.quantity for ammo in self.ammo) + elif datum_index == DataIndexes.CONTACTS.value: + self.contacts = data_extractor.extract_contacts() + elif datum_index == DataIndexes.ACTIVE_PATH.value: + self.active_path = data_extractor.extract_active_path() + elif datum_index == DataIndexes.IS_LEADER.value: + self.is_leader = data_extractor.extract_bool() + elif datum_index == DataIndexes.OPERATE_AS.value: + self.operate_as = self.enum_to_coalition(data_extractor.extract_uint8()) + elif datum_index == DataIndexes.SHOTS_SCATTER.value: + self.shots_scatter = data_extractor.extract_uint8() + elif datum_index == DataIndexes.SHOTS_INTENSITY.value: + self.shots_intensity = data_extractor.extract_uint8() + elif datum_index == DataIndexes.HEALTH.value: + self.health = data_extractor.extract_uint8() + elif datum_index == DataIndexes.RACETRACK_LENGTH.value: + self.racetrack_length = data_extractor.extract_float64() + elif datum_index == DataIndexes.RACETRACK_ANCHOR.value: + self.racetrack_anchor = data_extractor.extract_lat_lng() + elif datum_index == DataIndexes.RACETRACK_BEARING.value: + self.racetrack_bearing = data_extractor.extract_float64() + elif datum_index == DataIndexes.TIME_TO_NEXT_TASKING.value: + self.time_to_next_tasking = data_extractor.extract_float64() + elif datum_index == DataIndexes.BARREL_HEIGHT.value: + self.barrel_height = data_extractor.extract_float64() + elif datum_index == DataIndexes.MUZZLE_VELOCITY.value: + self.muzzle_velocity = data_extractor.extract_float64() + elif datum_index == DataIndexes.AIM_TIME.value: + self.aim_time = data_extractor.extract_float64() + elif datum_index == DataIndexes.SHOTS_TO_FIRE.value: + self.shots_to_fire = data_extractor.extract_uint32() + elif datum_index == DataIndexes.SHOTS_BASE_INTERVAL.value: + self.shots_base_interval = data_extractor.extract_float64() + elif datum_index == DataIndexes.SHOTS_BASE_SCATTER.value: + self.shots_base_scatter = data_extractor.extract_float64() + elif datum_index == DataIndexes.ENGAGEMENT_RANGE.value: + self.engagement_range = data_extractor.extract_float64() + elif datum_index == DataIndexes.TARGETING_RANGE.value: + self.targeting_range = data_extractor.extract_float64() + elif datum_index == DataIndexes.AIM_METHOD_RANGE.value: + self.aim_method_range = data_extractor.extract_float64() + elif datum_index == DataIndexes.ACQUISITION_RANGE.value: + self.acquisition_range = data_extractor.extract_float64() + elif datum_index == DataIndexes.AIRBORNE.value: + self.airborne = data_extractor.extract_bool() + + \ No newline at end of file diff --git a/scripts/python/API/unit_spawn_table.py b/scripts/python/API/unit_spawn_table.py new file mode 100644 index 00000000..29a69980 --- /dev/null +++ b/scripts/python/API/unit_spawn_table.py @@ -0,0 +1,30 @@ +from dataclasses import dataclass +from typing import Optional +from data_types import LatLng + +@dataclass +class UnitSpawnTable: + """Unit spawn table data structure for spawning units.""" + unit_type: str + location: LatLng + skill: str + livery_id: str + altitude: Optional[int] = None + loadout: Optional[str] = None + heading: Optional[int] = None + + def toJSON(self): + """Convert the unit spawn table to a JSON serializable dictionary.""" + return { + "unitType": self.unit_type, + "location": { + "lat": self.location.lat, + "lng": self.location.lng, + "alt": self.location.alt + }, + "skill": self.skill, + "liveryID": self.livery_id, + "altitude": self.altitude, + "loadout": self.loadout, + "heading": self.heading + } \ No newline at end of file diff --git a/scripts/python/API/utils.py b/scripts/python/API/utils.py new file mode 100644 index 00000000..4db06c53 --- /dev/null +++ b/scripts/python/API/utils.py @@ -0,0 +1,19 @@ +def enum_to_coalition(coalition_id: int) -> str: + if coalition_id == 0: + return "neutral" + elif coalition_id == 1: + return "red" + elif coalition_id == 2: + return "blue" + return "" + + +def coalition_to_enum(coalition: str) -> int: + if coalition == "neutral": + return 0 + elif coalition == "red": + return 1 + elif coalition == "blue": + return 2 + return 0 +1 \ No newline at end of file