diff --git a/client/@types/olympus/index.d.ts b/client/@types/olympus/index.d.ts index 27a293cf..08f8aca9 100644 --- a/client/@types/olympus/index.d.ts +++ b/client/@types/olympus/index.d.ts @@ -196,11 +196,15 @@ declare module "constants/constants" { export const IADSDensities: { [key: string]: number; }; - export const SHOW_CONTACT_LINES = "Show unit contact lines"; export const HIDE_GROUP_MEMBERS = "Hide group members when zoomed out"; - export const SHOW_UNIT_LABELS = "Show unit labels"; - export const SHOW_UNIT_PATHS = "Show unit paths"; - export const SHOW_UNIT_TARGETS = "Show unit targets"; + export const SHOW_UNIT_LABELS = "Show unit labels (L)"; + export const SHOW_UNITS_ENGAGEMENT_RINGS = "Show units threat range rings (Q)"; + export const HIDE_UNITS_SHORT_RANGE_RINGS = "Hide short range units threat range rings (R)"; + export const SHOW_UNITS_ACQUISITION_RINGS = "Show units detection range rings (E)"; + export const FILL_SELECTED_RING = "Fill the threat range rings of selected units (F)"; + export const SHOW_UNIT_CONTACTS = "Show selected units contact lines"; + export const SHOW_UNIT_PATHS = "Show selected unit paths"; + export const SHOW_UNIT_TARGETS = "Show selected unit targets"; export enum DataIndexes { startOfData = 0, category = 1, @@ -244,6 +248,11 @@ declare module "constants/constants" { operateAs = 39, endOfData = 255 } + export const MGRS_PRECISION_10KM = 2; + export const MGRS_PRECISION_1KM = 3; + export const MGRS_PRECISION_100M = 4; + export const MGRS_PRECISION_10M = 5; + export const MGRS_PRECISION_1M = 6; } declare module "map/markers/custommarker" { import { Map, Marker } from "leaflet"; @@ -526,9 +535,11 @@ declare module "interfaces" { roles: string[]; code: string; name: string; + enabled: boolean; } export interface UnitBlueprint { name: string; + enabled: boolean; coalition: string; era: string; label: string; @@ -623,7 +634,7 @@ declare module "unit/databases/unitdatabase" { getCategory(): string; getByName(name: string): UnitBlueprint | null; getByLabel(label: string): UnitBlueprint | null; - getBlueprints(): { + getBlueprints(includeDisabled?: boolean): { [key: string]: UnitBlueprint; }; getRoles(): string[]; @@ -699,6 +710,19 @@ declare module "other/utils" { export const zeroPad: (num: number, places: number) => string; export function similarity(s1: string, s2: string): number; export function editDistance(s1: string, s2: string): any; + export type MGRS = { + bandLetter: string; + columnLetter: string; + easting: string; + groups: string[]; + northing: string; + precision: number; + rowLetter: string; + string: string; + zoneNumber: string; + }; + export function latLngToMGRS(lat: number, lng: number, precision?: number): MGRS | false; + export function latLngToUTM(lat: number, lng: number): any; export function latLngToMercator(lat: number, lng: number): { x: number; y: number; @@ -713,6 +737,7 @@ declare module "other/utils" { export function ftToM(ft: number): number; export function mToFt(m: number): number; export function mToNm(m: number): number; + export function nmToM(nm: number): number; export function nmToFt(nm: number): number; export function polyContains(latlng: LatLng, polygon: Polygon): boolean; export function randomPointInPoly(polygon: Polygon): LatLng; @@ -723,7 +748,7 @@ declare module "other/utils" { ranges?: string[]; eras?: string[]; }): UnitBlueprint | null; - export function getMarkerCategoryByName(name: string): "aircraft" | "groundunit-sam" | "groundunit-other" | "groundunit-sam-radar" | "groundunit-sam-launcher" | "groundunit-ewr" | "helicopter"; + export function getMarkerCategoryByName(name: string): "aircraft" | "helicopter" | "groundunit-sam" | "groundunit-other" | "groundunit-sam-radar" | "groundunit-sam-launcher" | "groundunit-ewr"; export function getUnitDatabaseByCategory(category: string): import("unit/databases/aircraftdatabase").AircraftDatabase | import("unit/databases/helicopterdatabase").HelicopterDatabase | import("unit/databases/groundunitdatabase").GroundUnitDatabase | import("unit/databases/navyunitdatabase").NavyUnitDatabase | null; export function base64ToBytes(base64: string): ArrayBufferLike; export function enumToState(state: number): string; @@ -769,6 +794,8 @@ declare module "controls/unitspawnmenu" { reset(): void; setCountries(): void; refreshOptions(): void; + showCirclesPreviews(): void; + clearCirclesPreviews(): void; setAirbase(airbase: Airbase | undefined): void; setLatLng(latlng: LatLng): void; setMaxUnitCount(maxUnitCount: number): void; @@ -1102,6 +1129,7 @@ declare module "unit/unit" { simulateFireFight(latlng: LatLng, targetGroundElevation: number | null): void; scenicAAA(): void; missOnPurpose(): void; + landAtPoint(latlng: LatLng): void; /***********************************************/ getActions(): { [key: string]: { @@ -1468,7 +1496,10 @@ declare module "mission/missionmanager" { declare module "panels/connectionstatuspanel" { import { Panel } from "panels/panel"; export class ConnectionStatusPanel extends Panel { + #private; constructor(ID: string); + setElapsedTime(time: string): void; + setMissionTime(time: string): void; showDisconnected(): void; showConnected(): void; showServerPaused(): void; @@ -1838,6 +1869,11 @@ declare module "unit/unitsmanager" { * */ selectedUnitsMissOnPurpose(): void; + /** Instruct units to land at specific point + * + * @param latlng Point where to land + */ + selectedUnitsLandAtPoint(latlng: LatLng): void; /*********************** Control operations on selected units ************************/ /** See getUnitsCategories for more info * @@ -2027,6 +2063,7 @@ declare module "server/servermanager" { simulateFireFight(ID: number, latlng: LatLng, altitude: number, callback?: CallableFunction): void; scenicAAA(ID: number, coalition: string, callback?: CallableFunction): void; missOnPurpose(ID: number, coalition: string, callback?: CallableFunction): void; + landAtPoint(ID: number, latlng: LatLng, callback?: CallableFunction): void; setAdvacedOptions(ID: number, isTanker: boolean, isAWACS: boolean, TACAN: TACAN, radio: Radio, generalSettings: GeneralSettings, callback?: CallableFunction): void; setCommandModeOptions(restrictSpawns: boolean, restrictToCoalition: boolean, spawnPoints: { blue: number; diff --git a/client/plugins/databasemanager/src/airuniteditor.ts b/client/plugins/databasemanager/src/airuniteditor.ts index 6d37db5c..d83fb9e6 100644 --- a/client/plugins/databasemanager/src/airuniteditor.ts +++ b/client/plugins/databasemanager/src/airuniteditor.ts @@ -40,8 +40,8 @@ export class AirUnitEditor extends UnitEditor { addStringInput(this.contentDiv2, "Name", blueprint.name, "text", (value: string) => { blueprint.name = value; }, true); addStringInput(this.contentDiv2, "Label", blueprint.label, "text", (value: string) => { blueprint.label = value; }); addStringInput(this.contentDiv2, "Short label", blueprint.shortLabel, "text", (value: string) => { blueprint.shortLabel = value; }); - addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"],); - addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"]); + addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"], (value: string) => {blueprint.coalition = value; }); + addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"], (value: string) => {blueprint.era = value; }); addStringInput(this.contentDiv2, "Filename", blueprint.filename ?? "", "text", (value: string) => { blueprint.filename = value; }); addStringInput(this.contentDiv2, "Cost", String(blueprint.cost) ?? "", "number", (value: string) => { blueprint.cost = parseFloat(value); }); addStringInput(this.contentDiv2, "Rufels from", String(blueprint.refuelsFrom) ?? "", "text", (value: string) => { blueprint.refuelsFrom = value; }); @@ -73,7 +73,8 @@ export class AirUnitEditor extends UnitEditor { label: "", shortLabel: "", era: "", - loadouts: [] + loadouts: [], + enabled: true } this.show(); this.setBlueprint(this.database.blueprints[key]); @@ -91,7 +92,8 @@ export class AirUnitEditor extends UnitEditor { code: "", fuel: 1, items: [], - roles: [] + roles: [], + enabled: true }) this.setBlueprint(this.blueprint); } diff --git a/client/plugins/databasemanager/src/grounduniteditor.ts b/client/plugins/databasemanager/src/grounduniteditor.ts index 81853957..7306ee7d 100644 --- a/client/plugins/databasemanager/src/grounduniteditor.ts +++ b/client/plugins/databasemanager/src/grounduniteditor.ts @@ -30,8 +30,8 @@ export class GroundUnitEditor extends UnitEditor { addStringInput(this.contentDiv2, "Label", blueprint.label, "text", (value: string) => {blueprint.label = value; }); addStringInput(this.contentDiv2, "Short label", blueprint.shortLabel, "text", (value: string) => {blueprint.shortLabel = value; }); addStringInput(this.contentDiv2, "Type", blueprint.type?? "", "text", (value: string) => {blueprint.type = value; }); - addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"],); - addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"]); + addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"], (value: string) => {blueprint.coalition = value; }); + addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"], (value: string) => {blueprint.era = value; }); //addStringInput(this.contentDiv2, "Filename", blueprint.filename?? "", "text", (value: string) => {blueprint.filename = value; }); addStringInput(this.contentDiv2, "Cost", String(blueprint.cost)?? "", "number", (value: string) => {blueprint.cost = parseFloat(value); }); addStringInput(this.contentDiv2, "Acquisition range [m]", String(blueprint.acquisitionRange)?? "", "number", (value: string) => {blueprint.acquisitionRange = parseFloat(value); }); @@ -54,7 +54,8 @@ export class GroundUnitEditor extends UnitEditor { coalition: "", label: "", shortLabel: "", - era: "" + era: "", + enabled: true } this.show(); this.setBlueprint(this.database.blueprints[key]); diff --git a/client/plugins/databasemanager/src/navyuniteditor.ts b/client/plugins/databasemanager/src/navyuniteditor.ts index e384fbeb..0b8ddfa6 100644 --- a/client/plugins/databasemanager/src/navyuniteditor.ts +++ b/client/plugins/databasemanager/src/navyuniteditor.ts @@ -30,8 +30,8 @@ export class NavyUnitEditor extends UnitEditor { addStringInput(this.contentDiv2, "Label", blueprint.label, "text", (value: string) => {blueprint.label = value; }); addStringInput(this.contentDiv2, "Short label", blueprint.shortLabel, "text", (value: string) => {blueprint.shortLabel = value; }); addStringInput(this.contentDiv2, "Type", blueprint.type?? "", "text", (value: string) => {blueprint.type = value; }); - addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"],); - addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"]); + addDropdownInput(this.contentDiv2, "Coalition", blueprint.coalition, ["", "blue", "red"], (value: string) => {blueprint.coalition = value; }); + addDropdownInput(this.contentDiv2, "Era", blueprint.era, ["WW2", "Early Cold War", "Mid Cold War", "Late Cold War", "Modern"], (value: string) => {blueprint.era = value; }); //addStringInput(this.contentDiv2, "Filename", blueprint.filename?? "", "text", (value: string) => {blueprint.filename = value; }); addStringInput(this.contentDiv2, "Cost", String(blueprint.cost)?? "", "number", (value: string) => {blueprint.cost = parseFloat(value); }); addStringInput(this.contentDiv2, "Barrel height [m]", String(blueprint.barrelHeight)?? "", "number", (value: string) => {blueprint.barrelHeight = parseFloat(value); }); @@ -50,7 +50,8 @@ export class NavyUnitEditor extends UnitEditor { coalition: "", label: "", shortLabel: "", - era: "" + era: "", + enabled: true } this.show(); this.setBlueprint(this.database.blueprints[key]); diff --git a/client/plugins/databasemanager/src/uniteditor.ts b/client/plugins/databasemanager/src/uniteditor.ts index 3f3fb814..b031a2c4 100644 --- a/client/plugins/databasemanager/src/uniteditor.ts +++ b/client/plugins/databasemanager/src/uniteditor.ts @@ -45,7 +45,7 @@ export abstract class UnitEditor { * @param database The database that the editor will operate on */ setDatabase(database: UnitDatabase) { - this.database = JSON.parse(JSON.stringify(database)); + this.database = JSON.parse(JSON.stringify({blueprints: database.getBlueprints(true)})); } /** Show the editor diff --git a/client/plugins/databasemanager/src/utils.ts b/client/plugins/databasemanager/src/utils.ts index 7a70edf2..28071a43 100644 --- a/client/plugins/databasemanager/src/utils.ts +++ b/client/plugins/databasemanager/src/utils.ts @@ -38,7 +38,7 @@ export function addStringInput(div: HTMLElement, key: string, value: string, typ * @param value The initial value of the input * @param options The dropdown options */ -export function addDropdownInput(div: HTMLElement, key: string, value: string, options: string[]) { +export function addDropdownInput(div: HTMLElement, key: string, value: string, options: string[], callback: CallableFunction) { var row = document.createElement("div"); var dt = document.createElement("dt"); var dd = document.createElement("dd"); @@ -51,6 +51,7 @@ export function addDropdownInput(div: HTMLElement, key: string, value: string, o select.appendChild(el); }); select.value = value; + select.onchange = () => callback(select.value); dd.appendChild(select); row.appendChild(dt); row.appendChild(dd); @@ -164,6 +165,15 @@ export function addBlueprintsScroll(div: HTMLElement, database: {blueprints: {[k text.onclick = () => callback(key); rowDiv.appendChild(text); + let checkbox = document.createElement("input"); + checkbox.type = "checkbox"; + checkbox.checked = blueprints[key].enabled; + checkbox.onclick = () => { + console.log(checkbox.checked); + blueprints[key].enabled = checkbox.checked; + } + rowDiv.appendChild(checkbox); + /* This button allows to remove an element from the list. It requires a refresh. */ var button = document.createElement("button"); button.innerText = "X"; @@ -199,7 +209,16 @@ export function addLoadoutsScroll(div: HTMLElement, loadouts: LoadoutBlueprint[] /* The "Empty loadout" can not be removed */ if (loadout.name !== "Empty loadout") { - /* This button allows to remove an element from the list. It requires a refresh. */ + let checkbox = document.createElement("input"); + checkbox.type = "checkbox"; + checkbox.checked = loadout.enabled; + checkbox.onclick = () => { + console.log(checkbox.checked); + loadout.enabled = checkbox.checked; + } + rowDiv.appendChild(checkbox); + + /* This button allows to remove an element from the list. It requires a refresh. */ var button = document.createElement("button"); button.innerText = "X"; button.onclick = () => { diff --git a/client/public/databases/units/aircraftdatabase.json b/client/public/databases/units/aircraftdatabase.json index 1e456011..a93fa1e0 100644 --- a/client/public/databases/units/aircraftdatabase.json +++ b/client/public/databases/units/aircraftdatabase.json @@ -2668,25 +2668,17 @@ "description": "2 jet engine, straight wing, 1 crew, attack aircraft. Warthog", "abilities": "Boom AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "A-20G": { "name": "A-20G", - "coalition": "", + "coalition": "blue", "label": "A-20G Havoc", "era": "WW2", "shortLabel": "A20", "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "No task", - "CAS" - ] - }, { "items": [ { @@ -2703,6 +2695,16 @@ "Runway Attack", "Antiship Strike" ] + }, + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "CAS" + ] } ], "filename": "a-20.png", @@ -2745,7 +2747,9 @@ "description": "2 propeller, straight wing, 3 crew, medium attack bomber. Havoc", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "A-50": { "name": "A-50", @@ -2785,7 +2789,9 @@ "description": "4 jet engine, swept wing, 15 crew. NATO reporting name: Mainstay", "abilities": "Airbourne early warning", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "AJS37": { "name": "AJS37", @@ -2795,13 +2801,21 @@ "shortLabel": "37", "loadouts": [ { - "items": [], + "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": "", - "name": "Empty loadout", + "code": "Anti-ship (Heavy Mav): RB-75T*4, XT", + "name": "Anti-ship (Heavy Mav): RB-75T*4, XT", "roles": [ - "No task", - "Strike" + "Antiship Strike" ] }, { @@ -2811,7 +2825,25 @@ "quantity": 4 }, { - "name": "Rb-24J (AIM-9P) Sidewinder IR AAM", + "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": "Rb-15F Programmable Anti-ship Missile", + "quantity": 2 + }, + { + "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", "quantity": 2 }, { @@ -2820,10 +2852,32 @@ } ], "enabled": true, - "code": "Battlefield Air Interdiction: RB-75*4, RB-24J*2, XT", - "name": "Battlefield Air Interdiction: RB-75*4, RB-24J*2, XT", + "code": "Anti-Ship (Modern): RB-15F*2, RB-74*2, XT", + "name": "Anti-Ship (Modern): RB-15F*2, RB-74*2, XT", "roles": [ - "Strike" + "Antiship 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" ] }, { @@ -2851,7 +2905,95 @@ { "items": [ { - "name": "Rb-75T (AGM-65A Maverick) (TV ASM Lg HE Whd)", + "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": "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": "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-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": "Rb-24J (AIM-9P) Sidewinder IR AAM", "quantity": 4 }, { @@ -2860,12 +3002,204 @@ } ], "enabled": true, - "code": "Anti-ship (Heavy Mav): RB-75T*4, XT", - "name": "Anti-ship (Heavy Mav): RB-75T*4, XT", + "code": "CAP (AJ37): RB-24J*2", + "name": "CAP (AJ37): RB-24J*2", + "roles": [ + "CAP" + ] + }, + { + "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": "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": "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": "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-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": "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": "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": "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": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "No task", + "Strike" + ] + }, + { + "items": [ + { + "name": "AJS External-tank 1013kg fuel", + "quantity": 1 + } + ], + "enabled": true, + "code": "Ferry Flight: XT", + "name": "Ferry Flight: XT", + "roles": [ + "Strike" + ] + }, { "items": [ { @@ -2920,14 +3254,22 @@ }, { "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": "Ferry Flight: XT", - "name": "Ferry Flight: XT", + "code": "Hard Target: RB-05A*2, RB-74*2, XT", + "name": "Hard Target: RB-05A*2, RB-74*2, XT", "roles": [ "Strike" ] @@ -2935,25 +3277,7 @@ { "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", + "name": "2x 80kg LYSB-71 Illumination Bomb", "quantity": 4 }, { @@ -2962,82 +3286,41 @@ } ], "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", + "code": "Illumination: LYSB*8, XT", + "name": "Illumination: LYSB*8, XT", "roles": [ "Strike" ] }, + { + "items": [], + "enabled": true, + "code": "New Payload", + "name": "New Payload", + "roles": [] + }, { "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", + "code": "RB-05*2, XT", + "name": "RB-05*2, XT", "roles": [ - "CAS" + "Strike" ] }, { "items": [ { - "name": "Rb-74 (AIM-9L) Sidewinder IR AAM", + "name": "ARAK M/70B HE 6x 135mm UnGd Rkts, Shu70 HE/FRAG", "quantity": 4 }, { @@ -3050,10 +3333,10 @@ } ], "enabled": true, - "code": "CAP (6 AAM): RB-74*4, RB-24J*2, XT", - "name": "CAP (6 AAM): RB-74*4, RB-24J*2, XT", + "code": "Rocket Full Load HE: ARAK HE*4, RB-24J, XT", + "name": "Rocket Full Load HE: ARAK HE*4, RB-24J, XT", "roles": [ - "CAP" + "Strike" ] }, { @@ -3080,46 +3363,24 @@ }, { "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", + "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 Low-drag: SB71LD*16, RB-24J*2, XT", - "name": "Bombs Low-drag: SB71LD*16, RB-24J*2, XT", + "code": "Runway Strike: SB71HD*16, RB-24J, XT", + "name": "Runway Strike: SB71HD*16, RB-24J, XT", "roles": [ - "Strike" + "Runway Attack" ] }, { @@ -3151,204 +3412,7 @@ { "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", + "name": "BK-90 MJ1 (72 x MJ1 HE-FRAG Bomblets)", "quantity": 2 }, { @@ -3361,69 +3425,11 @@ } ], "enabled": true, - "code": "Hard Target: RB-05A*2, RB-74*2, XT", - "name": "Hard Target: RB-05A*2, RB-74*2, XT", + "code": "Strike: BK90 (MJ1)*2, RB-74*2, XT", + "name": "Strike: BK90 (MJ1)*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", @@ -3462,7 +3468,9 @@ "description": "Single jet engine, delta wing, 1 crew, attack aircraft. Viggen", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "AV8BNA": { "name": "AV8BNA", @@ -4418,7 +4426,9 @@ "description": "Single jet engine, swept wing, 1 crew, all weather, VTOL attack aircraft. Harrier", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "An-26B": { "name": "An-26B", @@ -4489,7 +4499,9 @@ "description": "2 turboprop, straight wing, 5 crew, cargo and passenger aircraft. NATO reporting name: Curl", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "An-30M": { "name": "An-30M", @@ -4535,7 +4547,9 @@ "description": "2 turboprop, straight wing, 7 crew, weather reseach aircraft. NATO reporting name: Clank", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "B-1B": { "name": "B-1B", @@ -4724,7 +4738,9 @@ "description": "4 jet engine, swing wing, 2 crew bomber. Lancer", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "B-52H": { "name": "B-52H", @@ -4839,11 +4855,13 @@ "description": "8 jet engine, swept wing, 6 crew bomber. Stratofortress", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Bf-109K-4": { "name": "Bf-109K-4", - "coalition": "", + "coalition": "red", "label": "Bf-109K-4 Fritz", "era": "WW2", "shortLabel": "109", @@ -5092,7 +5110,9 @@ "description": "Single propeller, straight wing, 1 crew. 109", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "C-101CC": { "name": "C-101CC", @@ -5847,7 +5867,9 @@ "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "C-130": { "name": "C-130", @@ -5977,7 +5999,9 @@ "description": "4 turboprop, stright wing, 3 crew. Hercules", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "C-17A": { "name": "C-17A", @@ -6011,7 +6035,9 @@ "description": "4 jet engine, swept wing, 3 crew. Globemaster", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "E-2C": { "name": "E-2C", @@ -6051,7 +6077,9 @@ "description": "2 turboprop, straight wing, 5 crew. Hawkeye", "abilities": "Airbourne early warning", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "E-3A": { "name": "E-3A", @@ -6093,7 +6121,9 @@ "description": "4 jet engine, swept wing, 17 crew. Sentry", "abilities": "Airbourne early warning", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "F-117A": { "name": "F-117A", @@ -6169,7 +6199,9 @@ "description": "2 jet engine, delta wing, 1 crew. Nighthawk", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-14A-135-GR": { "name": "F-14A-135-GR", @@ -7112,7 +7144,9 @@ "description": "2 Jet engine, swing wing, 2 crew. Tomcat", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-14B": { "name": "F-14B", @@ -8462,7 +8496,9 @@ "description": "2 Jet engine, swing wing, 2 crew. Tomcat", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-15C": { "name": "F-15C", @@ -8831,7 +8867,9 @@ "description": "2 Jet engine, swept wing, 2 crew, all weather fighter. Eagle.", "abilities": "Boom AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-16C_50": { "name": "F-16C_50", @@ -10732,7 +10770,9 @@ "description": "Single jet engine, swept wing, 1 crew, all weather fighter and strike. Viper.", "abilities": "Boom AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-4E": { "name": "F-4E", @@ -11138,7 +11178,9 @@ "description": "2 Jet engine, swept wing, 2 crew. Phantom", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-5E-3": { "name": "F-5E-3", @@ -12314,7 +12356,9 @@ "description": "2 Jet engine, swept wing, single crew. Tiger", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-86F Sabre": { "name": "F-86F Sabre", @@ -12665,7 +12709,9 @@ "description": "Single engine, swept wing, 1 crew. Sabre", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "FA-18C_hornet": { "name": "FA-18C_hornet", @@ -13822,11 +13868,13 @@ "description": "2 Jet engine, swept wing, 1 crew, fighter and strike. Hornet", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "FW-190A8": { "name": "FW-190A8", - "coalition": "", + "coalition": "red", "label": "FW-190A8 Bosch", "era": "WW2", "shortLabel": "190A8", @@ -14185,11 +14233,13 @@ "description": "Single propellor, straight wing, 1 crew. Shrike", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "FW-190D9": { "name": "FW-190D9", - "coalition": "", + "coalition": "red", "label": "FW-190D9 Jerry", "era": "WW2", "shortLabel": "190D9", @@ -14341,7 +14391,9 @@ "description": "Single propellor, straight wing, 1 crew. Shrike", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "H-6J": { "name": "H-6J", @@ -14549,11 +14601,13 @@ "description": "2 jet engine, swept wing, 4 crew bomber. Badger", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "I-16": { "name": "I-16", - "coalition": "", + "coalition": "red", "label": "I-16", "era": "WW2", "shortLabel": "I16", @@ -14735,7 +14789,9 @@ "description": "Single propellor, straight wing, 1 crew. Ishak", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "IL-76MD": { "name": "IL-76MD", @@ -14811,7 +14867,9 @@ "description": "4 jet engine, swept wing, 5 crew. Cargo and passenger aircraft. NATO reporting name: Candid", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "IL-78M": { "name": "IL-78M", @@ -14871,7 +14929,9 @@ "description": "4 jet engine, swept wing, 6 crew. Tanker aircraft. NATO reporting name: Midas", "abilities": "Tanker, Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "J-11A": { "name": "J-11A", @@ -15738,7 +15798,9 @@ "description": "2 Jet engine, swept wing, 1 crew, fighter and strike. NATO reporting name: Flanker", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "JF-17": { "name": "JF-17", @@ -17496,7 +17558,9 @@ "description": "Single jet engine, swept wing, 1 crew, fighter and strike. Geoff", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "KC-135": { "name": "KC-135", @@ -17536,7 +17600,9 @@ "description": "4 jet engine, swept wing, 3 crew. Tanker aircraft. Stratotanker", "abilities": "Tanker, Boom AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "KC135MPRS": { "name": "KC135MPRS", @@ -17576,7 +17642,9 @@ "description": "4 jet engine, swept wing, 3 crew. Tanker aircraft. Stratotanker", "abilities": "Tanker, Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "L-39ZA": { "name": "L-39ZA", @@ -17954,7 +18022,9 @@ "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "M-2000C": { "name": "M-2000C", @@ -18450,7 +18520,9 @@ "description": "Single jet engine, swept wing, 1 crew, fighter and strike.", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MB-339A": { "name": "MB-339A", @@ -19006,7 +19078,9 @@ "description": "Single jet engine, swept wing, 2 crew, light attack trainer. Aviojet", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MQ-9 Reaper": { "name": "MQ-9 Reaper", @@ -19132,7 +19206,9 @@ "description": "Single turboprop, straight wing, attack aircraft. Reaper", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-15bis": { "name": "MiG-15bis", @@ -19429,7 +19505,9 @@ "description": "Single jet engine, swept wing, 1 crew. Fagot", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-19P": { "name": "MiG-19P", @@ -19723,7 +19801,9 @@ "description": "Single jet engine, swept wing, 1 crew. Farmer", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-21Bis": { "name": "MiG-21Bis", @@ -20731,7 +20811,9 @@ "description": "Single jet engine, swept wing, 1 crew. Fishbed", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-23MLD": { "name": "MiG-23MLD", @@ -21051,7 +21133,9 @@ "description": "Single jet engine, swing wing, 1 crew. Flogger", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-25PD": { "name": "MiG-25PD", @@ -21151,7 +21235,9 @@ "description": "2 jet engine, swept wing, 1 crew. Foxbat", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-25RBT": { "name": "MiG-25RBT", @@ -21224,7 +21310,9 @@ "description": "2 jet engine, swept wing, 1 crew. Foxbat", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-27K": { "name": "MiG-27K", @@ -21565,7 +21653,9 @@ "description": "Single jet engine, swing wing, 1 crew. Flogger", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-29A": { "name": "MiG-29A", @@ -22078,7 +22168,9 @@ "description": "2 jet engine, swept wing, 1 crew. Flanker", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-29S": { "name": "MiG-29S", @@ -22682,7 +22774,9 @@ "description": "2 jet engine, swept wing, 1 crew. Flanker", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MiG-31": { "name": "MiG-31", @@ -22817,7 +22911,9 @@ "description": "2 jet engine, swept wing, 2 crew. Foxhound", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Mirage-F1EE": { "name": "Mirage-F1EE", @@ -23772,11 +23868,13 @@ "description": "Single Jet engine, swept wing, 1 crew.", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "MosquitoFBMkVI": { "name": "MosquitoFBMkVI", - "coalition": "", + "coalition": "blue", "label": "Mosquito FB MkVI", "era": "WW2", "shortLabel": "Mo", @@ -24006,11 +24104,13 @@ "description": "2 propeller, straight wing, 2 crew. Mosquito.", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "P-47D-40": { "name": "P-47D-40", - "coalition": "", + "coalition": "blue", "label": "P-47D Thunderbolt", "era": "WW2", "shortLabel": "P47", @@ -24247,11 +24347,13 @@ "description": "Single propellor, straight wing, 1 crew. Thunderbolt", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "P-51D-30-NA": { "name": "P-51D-30-NA", - "coalition": "", + "coalition": "blue", "label": "P-51D Mustang", "era": "WW2", "shortLabel": "P51", @@ -24501,7 +24603,9 @@ "description": "Single propellor, straight wing, 1 crew. Mustang", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "S-3B Tanker": { "name": "S-3B Tanker", @@ -24535,7 +24639,9 @@ "description": "2 jet engine, straight wing, 4 crew. Viking", "abilities": "Tanker, Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false }, "Su-17M4": { "name": "Su-17M4", @@ -25001,7 +25107,9 @@ "description": "Single jet engine, swept wing, 1 crew. Fitter", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-24M": { "name": "Su-24M", @@ -25665,7 +25773,9 @@ "description": "2 jet engine, swing wing, 2 crew. Fencer", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-25": { "name": "Su-25", @@ -26466,7 +26576,9 @@ "description": "2 jet engine, swept wing, 1 crew. Frogfoot", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-25T": { "name": "Su-25", @@ -28301,7 +28413,9 @@ "description": "2 jet engine, swept wing, 1 crew. Flanker", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-30": { "name": "Su-30", @@ -29244,7 +29358,9 @@ "description": "2 jet engine, swept wing, 1 crew. Flanker", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-33": { "name": "Su-33", @@ -29930,7 +30046,9 @@ "description": "2 jet engine, swept wing, 1 crew. Flanker", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Su-34": { "name": "Su-34", @@ -30546,7 +30664,9 @@ "description": "2 Jet engine, swept wing, 2 crew, all weather fighter and strike. Fullback", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tornado GR4": { "name": "Tornado GR4", @@ -30754,7 +30874,9 @@ "description": "2 jet engine, swing wing, 2 crew, all weather strike.", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tornado IDS": { "name": "Tornado IDS", @@ -31036,7 +31158,9 @@ "description": "2 jet engine, swing wing, 2 crew, all weather strike.", "abilities": "Drogue AAR", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tu-142": { "name": "Tu-142", @@ -31084,7 +31208,9 @@ "description": "4 turboprop, swept wing, 11 crew, bomber. Bear", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tu-160": { "name": "Tu-160", @@ -31132,7 +31258,9 @@ "description": "4 jet engine, swing wing, 4 crew bomber. Blackjack", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tu-22M3": { "name": "Tu-22M3", @@ -31263,7 +31391,9 @@ "description": "2 jet engine, swing wing, 4 crew bomber. Backfire", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "Tu-95MS": { "name": "Tu-95MS", @@ -31312,7 +31442,9 @@ "description": "4 turboprop, swept wing, 6 crew, bomber. Bear", "abilities": "", "acquisitionRange": "", - "engagementRange": "" + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false }, "F-15ESE": { "name": "F-15ESE", diff --git a/client/public/databases/units/groundunitdatabase.json b/client/public/databases/units/groundunitdatabase.json index 29a0f46c..fb91d4e2 100644 --- a/client/public/databases/units/groundunitdatabase.json +++ b/client/public/databases/units/groundunitdatabase.json @@ -1,8439 +1,9017 @@ { - "1L13 EWR": { - "name": "1L13 EWR", - "coalition": "red", - "era": "Late Cold War", - "label": "Box Spring", - "shortLabel": "1L13 EWR", - "filename": "", - "type": "EW Radar", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 300000, - "engagementRange": 0, - "description": "EWR built on a truck trailer", - "abilities": "" - }, - "2B11 mortar": { - "name": "2B11 mortar", - "coalition": "red", - "era": "Late Cold War", - "label": "2B11 mortar", - "shortLabel": "2B11 mortar", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 7000, - "description": "Man portable 120mm mortar", - "abilities": "" - }, - "2S6 Tunguska": { - "name": "2S6 Tunguska", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-19 Tunguska", - "shortLabel": "SA-19", - "range": "Short", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 18000, - "engagementRange": 8000, - "description": "2K22 Tunguska. Tracked self-propelled anti-aircraft 30mm guns and missiles", - "abilities": "" - }, - "55G6 EWR": { - "name": "55G6 EWR", - "coalition": "red", - "era": "Early Cold War", - "label": "Tall Rack", - "shortLabel": "55G6 EWR", - "filename": "", - "type": "EW Radar", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 400000, - "engagementRange": 0, - "description": "EWR built on a truck trailer", - "abilities": "" - }, - "5p73 s-125 ln": { - "name": "5p73 s-125 ln", - "coalition": "red", - "era": "Early Cold War", - "label": "SA-3 Launcher", - "shortLabel": "5p73 s-125 ln", - "range": "Medium", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 18000, - "description": "4 SA-3 missiles on a static emplacement. Requires grouping with SA-3 components", - "abilities": "" - }, - "AAV7": { - "name": "AAV7", - "coalition": "blue", - "era": "Mid Cold War", - "label": "AAV7", - "shortLabel": "AAV7", - "filename": "", - "type": "APC", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "Amphibious assault vehicle. Tracked", - "abilities": "" - }, - "ATMZ-5": { - "name": "ATMZ-5", - "coalition": "red", - "era": "Early Cold War", - "label": "ATMZ-5", - "shortLabel": "ATMZ-5", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Refueler truck. Wheeled", - "abilities": "" - }, - "ATZ-10": { - "name": "ATZ-10", - "coalition": "red", - "era": "Early Cold War", - "label": "ATZ-10", - "shortLabel": "ATZ-10", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Refueler truck. Wheeled", - "abilities": "" - }, - "BMD-1": { - "name": "BMD-1", - "coalition": "red", - "era": "Mid Cold War", - "label": "BMD-1", - "shortLabel": "BMD-1", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "iran - camo": { - "name": "IRAN - camo", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "barrelHeight": 1.25, - "muzzleVelocity": 900, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "Infantry fighting vehicle. Tracked. Amphibious", - "abilities": "" - }, - "BMP-1": { - "name": "BMP-1", - "coalition": "red", - "era": "Mid Cold War", - "label": "BMP-1", - "shortLabel": "BMP-1", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grg_summer": { - "name": "GRG_Summer", - "countries": "All" - }, - "grg_autumn": { - "name": "GRG_Autumn", - "countries": "All" - }, - "grg_winter": { - "name": "GRG_Winter", - "countries": "All" - }, - "grg_spring": { - "name": "GRG_Spring", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "Infantry fighting vehicle. Tracked. Amphibious", - "abilities": "" - }, - "BMP-2": { - "name": "BMP-2", - "coalition": "red", - "era": "Mid Cold War", - "label": "BMP-2", - "shortLabel": "BMP-2", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "grg_summer": { - "name": "GRG_Summer", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grg_autumn": { - "name": "GRG_Autumn", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grg_winter": { - "name": "GRG_Winter", - "countries": "All" - }, - "grg_spring": { - "name": "GRG_Spring", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "barrelHeight": 1.95, - "muzzleVelocity": 970, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "Infantry fighting vehicle. Tracked. Amphibious", - "abilities": "" - }, - "BMP-3": { - "name": "BMP-3", - "coalition": "red", - "era": "Late Cold War", - "label": "BMP-3", - "shortLabel": "BMP-3", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "Infantry fighting vehicle. Tracked. Amphibious", - "abilities": "" - }, - "BRDM-2": { - "name": "BRDM-2", - "coalition": "red", - "era": "Early Cold War", - "label": "BRDM-2", - "shortLabel": "BRDM-2", - "filename": "", - "type": "Armoured Car", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1600, - "description": "Scout car. Wheeled. Amphibious", - "abilities": "" - }, - "BTR-80": { - "name": "BTR-80", - "coalition": "red", - "era": "Late Cold War", - "label": "BTR-80", - "shortLabel": "BTR-80", - "filename": "", - "type": "APC", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "light green autumn": { - "name": "Light Green Autumn", - "countries": "All" - }, - "military police autumn": { - "name": "Military Police Autumn", - "countries": "All" - }, - "light green winter": { - "name": "Light Green Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "military police winter": { - "name": "Military Police Winter", - "countries": "All" - }, - "military police spring": { - "name": "Military Police Spring", - "countries": "All" - }, - "light green spring": { - "name": "Light Green Spring", - "countries": "All" - }, - "green autumn": { - "name": "Green_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "green winter": { - "name": "Green_Winter", - "countries": "All" - }, - "military police summer": { - "name": "Military Police Summer", - "countries": "All" - }, - "light green summer": { - "name": "Light_Green_Summer", - "countries": "All" - }, - "green spring": { - "name": "Green_Spring", - "countries": "All" - }, - "green summer": { - "name": "Green_Summer", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1600, - "description": "Armoured persononel carrier. Wheeled. Amphibious", - "abilities": "" - }, - "BTR_D": { - "name": "BTR_D", - "coalition": "red", - "era": "Mid Cold War", - "label": "BTR_D", - "shortLabel": "BTR_D", - "filename": "", - "type": "APC", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "Armoured persononel carrier. Tracked.", - "abilities": "" - }, - "Bunker": { - "name": "Bunker", - "coalition": "", - "era": "", - "label": "Bunker", - "shortLabel": "Bunker", - "filename": "", - "type": "Static Defence", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "Concrete bunker. Structure. Fixed Position.", - "abilities": "" - }, - "Challenger2": { - "name": "Challenger2", - "coalition": "blue", - "era": "Modern", - "label": "Challenger2", - "shortLabel": "Challenger2", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "Main battle tank. Tracked. Modern and heavily armoured.", - "abilities": "" - }, - "Cobra": { - "name": "Cobra", - "coalition": "blue", - "era": "Modern", - "label": "Otokar Cobra", - "shortLabel": "Cobra", - "filename": "", - "type": "Armoured Car", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "Armoured car, MRAP. Wheeled.", - "abilities": "" - }, - "Dog Ear radar": { - "name": "Dog Ear radar", - "coalition": "red", - "era": "Mid Cold War", - "label": "Dog Ear", - "shortLabel": "Dog Ear radar", - "filename": "", - "type": "Track Radar", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 35000, - "engagementRange": 0, - "description": "9S80-1 Sborka Mobile. Tracked fire control radar that can integrate with missile and gun systems.", - "abilities": "" - }, - "GAZ-3307": { - "name": "GAZ-3307", - "coalition": "red", - "era": "Early Cold War", - "label": "GAZ-3307", - "shortLabel": "GAZ-3307", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Civilian truck, single axle, wheeled", - "abilities": "" - }, - "GAZ-3308": { - "name": "GAZ-3308", - "coalition": "red", - "era": "Early Cold War", - "label": "GAZ-3308", - "shortLabel": "GAZ-3308", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Military truck, single axle, canvas covered cargo bay. wheeled", - "abilities": "" - }, - "GAZ-66": { - "name": "GAZ-66", - "coalition": "red", - "era": "Early Cold War", - "label": "GAZ-66", - "shortLabel": "GAZ-66", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Military truck, single axle, open cargo bay. wheeled", - "abilities": "" - }, - "Gepard": { - "name": "Gepard", - "coalition": "blue", - "era": "Late Cold War", - "label": "Gepard", - "shortLabel": "Gepard", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "barrelHeight": 2.35, - "muzzleVelocity": 1440, - "acquisitionRange": 15000, - "engagementRange": 4000, - "description": "Tracked self-propelled anti-aircraft 35mm guns", - "abilities": "" - }, - "Grad-URAL": { - "name": "Grad-URAL", - "coalition": "red", - "era": "Mid Cold War", - "label": "Grad", - "shortLabel": "Grad", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 19000, - "description": "Military truck, single axle, open cargo bay. wheeled", - "abilities": "" - }, - "HEMTT TFFT": { - "name": "HEMTT TFFT", - "coalition": "blue", - "era": "Late Cold War", - "label": "HEMTT TFFT", - "shortLabel": "HEMTT TFFT", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Military truck, 2 axle, firefigther. wheeled", - "abilities": "" - }, - "Hawk SAM Battery": { - "name": "Hawk SAM Battery", - "coalition": "blue", - "era": "Early Cold War", - "label": "Hawk SAM Battery", - "shortLabel": "Hawk SAM Battery", - "range": "Medium", - "filename": "", - "type": "Radar SAM", - "enabled": true, - "acquisitionRange": 90000, - "engagementRange": 0, - "description": "Multiple unit SAM site", - "abilities": "" - }, - "Hawk cwar": { - "name": "Hawk cwar", - "coalition": "blue", - "era": "Early Cold War", - "label": "Hawk Continous Wave Acquisition Radar", - "shortLabel": "Hawk cwar", - "range": "Long", - "filename": "", - "type": "SAM Search Radar", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 70000, - "engagementRange": 0, - "description": "Hawk site Aquisition radar", - "abilities": "" - }, - "Hawk ln": { - "name": "Hawk ln", - "coalition": "blue", - "era": "Late Cold War", - "label": "Hawk Launcher", - "shortLabel": "Hawk ln", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "xx337 - 92 sqn blue tail": { - "name": "XX337-92Sqn", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-341 grey": { - "name": "HW-341 Grey", - "countries": [ - "FIN" - ] - }, - "xx245 - 2009 raf hawk display": { - "name": "XX245-RAF Hawk Display 2009", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-329 green brown": { - "name": "HW-329 Green Brown", - "countries": [ - "FIN" - ] - }, - "swiss u-1268 - byebyehawk": { - "name": "U-1268 - ByeByeHawk", - "countries": [ - "SUI" - ] - }, - "25th fts, vance afb, oklahoma (vn)": { - "name": "25th FTS, Vance AFB, Oklahoma (VN)", - "countries": [ - "USA" - ] - }, - "xx226 - 74sqn 1992-2000": { - "name": "74Sqn XX226 1992-2000", - "countries": [ - "UK" - ] - }, - "finland hw-373 ex-swiss air force": { - "name": "HW-373 Ex-Swiss Air Force", - "countries": [ - "FIN" - ] - }, - "swiss u-1252 - normal": { - "name": "U-1252 - Normal", - "countries": [ - "SUI" - ] - }, - "swiss u-1270 - wallis": { - "name": "U-1270 - Wallis", - "countries": [ - "SUI" - ] - }, - "1st rs, beale afb, california (bb)": { - "name": "1st RS, Beale AFB, California (BB)", - "countries": [ - "USA" - ] - }, - "xx100 - tfc": { - "name": "The Fighter Collection XX100", - "countries": [ - "UK" - ] - }, - "509th bs, whitman afb, missouri (wm)": { - "name": "509th BS, Whiteman AFB, Missouri (WM)", - "countries": [ - "USA" - ] - }, - "xx218 - 208sqn": { - "name": "208Sqn XX218", - "countries": [ - "UK" - ] - }, - "xx316 - fradu royal navy": { - "name": "Royal Navy XX316", - "countries": [ - "UK" - ] - }, - "usaf aggressor 269": { - "name": "USAF-AGGRESSOR-269", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "swiss u-1251 - white": { - "name": "U-1251 - White", - "countries": [ - "SUI" - ] - }, - "xx201 - 2010 raf hawk display": { - "name": "XX201-4FTS-HawkDisplay2010", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx175 - fradu royal navy": { - "name": "Royal Navy XX175", - "countries": [ - "UK" - ] - }, - "1018 - united arab emirates": { - "name": "United Arab Emirates Air Force", - "countries": [ - "ARE" - ] - }, - "xx179 - red arrows 1979-2007": { - "name": "Red Arrows 1979-2007", - "countries": [ - "UK" - ] - }, - "xx178 - 1994 raf hawk display": { - "name": "XX178-RAF Hawk Display 1994", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx159 - fradu royal navy anniversary": { - "name": "Royal Navy XX159", - "countries": [ - "UK" - ] - }, - "xx189 - 100sqn": { - "name": "100Sqn XX189", - "countries": [ - "TUR", - "RUS", - "USA", - "ISR", - "NETH", - "NOR", - "RSO", - "BEL", - "GER", - "DEN", - "SPN", - "GRG", - "ABH", - "UKR", - "ITA", - "CAN", - "FRA", - "UK" - ] - }, - "xx228 - veao": { - "name": "VEAO, XX228", - "countries": [ - "UK" - ] - }, - "xx316 - 74sqn 1998-2000": { - "name": "74Sqn XX316 1998-2000", - "countries": [ - "UK" - ] - }, - "xx179 - red arrows 2008-2012": { - "name": "Red Arrows 2008-2012", - "countries": [ - "UK" - ] - }, - "12th ftw, randolph afb, texas (ra)": { - "name": "12th FTW, Randolph AFB, Texas (RA)", - "countries": [ - "USA" - ] - }, - "nas meridian, mississippi seven (vt-7)": { - "name": "NAS Meridian, Mississippi Seven (VT-7)", - "countries": [ - "USA" - ] - }, - "88th fts, sheppard afb, texas (en)": { - "name": "88th FTS, Sheppard AFB, Texas (EN)", - "countries": [ - "USA" - ] - }, - "xx159 - 2004 raf hawk display": { - "name": "XX159-RAF Hawk Display 2004", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - } - }, - "acquisitionRange": 0, - "engagementRange": 45000, - "description": "Hawk site missile laucher. 3 missiles. Needs rest of site to fuction", - "abilities": "" - }, - "Hawk pcp": { - "name": "Hawk pcp", - "coalition": "blue", - "era": "Late Cold War", - "label": "Hawk Platoon Command Post", - "shortLabel": "Hawk pcp", - "range": "Medium", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Hawk site command post. Medium sized trailer.", - "abilities": "" - }, - "Hawk sr": { - "name": "Hawk sr", - "coalition": "blue", - "era": "Early Cold War", - "label": "Hawk Search radar", - "shortLabel": "Hawk sr", - "range": "Long", - "filename": "", - "type": "SAM Search Radar", - "enabled": true, - "liveries": { - "xx337 - 92 sqn blue tail": { - "name": "XX337-92Sqn", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-341 grey": { - "name": "HW-341 Grey", - "countries": [ - "FIN" - ] - }, - "xx245 - 2009 raf hawk display": { - "name": "XX245-RAF Hawk Display 2009", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-329 green brown": { - "name": "HW-329 Green Brown", - "countries": [ - "FIN" - ] - }, - "swiss u-1268 - byebyehawk": { - "name": "U-1268 - ByeByeHawk", - "countries": [ - "SUI" - ] - }, - "25th fts, vance afb, oklahoma (vn)": { - "name": "25th FTS, Vance AFB, Oklahoma (VN)", - "countries": [ - "USA" - ] - }, - "xx226 - 74sqn 1992-2000": { - "name": "74Sqn XX226 1992-2000", - "countries": [ - "UK" - ] - }, - "finland hw-373 ex-swiss air force": { - "name": "HW-373 Ex-Swiss Air Force", - "countries": [ - "FIN" - ] - }, - "swiss u-1252 - normal": { - "name": "U-1252 - Normal", - "countries": [ - "SUI" - ] - }, - "swiss u-1270 - wallis": { - "name": "U-1270 - Wallis", - "countries": [ - "SUI" - ] - }, - "1st rs, beale afb, california (bb)": { - "name": "1st RS, Beale AFB, California (BB)", - "countries": [ - "USA" - ] - }, - "xx100 - tfc": { - "name": "The Fighter Collection XX100", - "countries": [ - "UK" - ] - }, - "509th bs, whitman afb, missouri (wm)": { - "name": "509th BS, Whiteman AFB, Missouri (WM)", - "countries": [ - "USA" - ] - }, - "xx218 - 208sqn": { - "name": "208Sqn XX218", - "countries": [ - "UK" - ] - }, - "xx316 - fradu royal navy": { - "name": "Royal Navy XX316", - "countries": [ - "UK" - ] - }, - "usaf aggressor 269": { - "name": "USAF-AGGRESSOR-269", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "swiss u-1251 - white": { - "name": "U-1251 - White", - "countries": [ - "SUI" - ] - }, - "xx201 - 2010 raf hawk display": { - "name": "XX201-4FTS-HawkDisplay2010", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx175 - fradu royal navy": { - "name": "Royal Navy XX175", - "countries": [ - "UK" - ] - }, - "1018 - united arab emirates": { - "name": "United Arab Emirates Air Force", - "countries": [ - "ARE" - ] - }, - "xx179 - red arrows 1979-2007": { - "name": "Red Arrows 1979-2007", - "countries": [ - "UK" - ] - }, - "xx178 - 1994 raf hawk display": { - "name": "XX178-RAF Hawk Display 1994", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx159 - fradu royal navy anniversary": { - "name": "Royal Navy XX159", - "countries": [ - "UK" - ] - }, - "xx189 - 100sqn": { - "name": "100Sqn XX189", - "countries": [ - "TUR", - "RUS", - "USA", - "ISR", - "NETH", - "NOR", - "RSO", - "BEL", - "GER", - "DEN", - "SPN", - "GRG", - "ABH", - "UKR", - "ITA", - "CAN", - "FRA", - "UK" - ] - }, - "xx228 - veao": { - "name": "VEAO, XX228", - "countries": [ - "UK" - ] - }, - "xx316 - 74sqn 1998-2000": { - "name": "74Sqn XX316 1998-2000", - "countries": [ - "UK" - ] - }, - "xx179 - red arrows 2008-2012": { - "name": "Red Arrows 2008-2012", - "countries": [ - "UK" - ] - }, - "12th ftw, randolph afb, texas (ra)": { - "name": "12th FTW, Randolph AFB, Texas (RA)", - "countries": [ - "USA" - ] - }, - "nas meridian, mississippi seven (vt-7)": { - "name": "NAS Meridian, Mississippi Seven (VT-7)", - "countries": [ - "USA" - ] - }, - "88th fts, sheppard afb, texas (en)": { - "name": "88th FTS, Sheppard AFB, Texas (EN)", - "countries": [ - "USA" - ] - }, - "xx159 - 2004 raf hawk display": { - "name": "XX159-RAF Hawk Display 2004", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - } - }, - "acquisitionRange": 90000, - "engagementRange": 0, - "description": "Hawk site search radar. Medium sized trailer", - "abilities": "" - }, - "Hawk tr": { - "name": "Hawk tr", - "coalition": "blue", - "era": "Early Cold War", - "label": "Hawk Track radar", - "shortLabel": "Hawk tr", - "range": "Medium", - "filename": "", - "type": "SAM Track radar", - "enabled": true, - "liveries": { - "xx337 - 92 sqn blue tail": { - "name": "XX337-92Sqn", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-341 grey": { - "name": "HW-341 Grey", - "countries": [ - "FIN" - ] - }, - "xx245 - 2009 raf hawk display": { - "name": "XX245-RAF Hawk Display 2009", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "finland hw-329 green brown": { - "name": "HW-329 Green Brown", - "countries": [ - "FIN" - ] - }, - "swiss u-1268 - byebyehawk": { - "name": "U-1268 - ByeByeHawk", - "countries": [ - "SUI" - ] - }, - "25th fts, vance afb, oklahoma (vn)": { - "name": "25th FTS, Vance AFB, Oklahoma (VN)", - "countries": [ - "USA" - ] - }, - "xx226 - 74sqn 1992-2000": { - "name": "74Sqn XX226 1992-2000", - "countries": [ - "UK" - ] - }, - "finland hw-373 ex-swiss air force": { - "name": "HW-373 Ex-Swiss Air Force", - "countries": [ - "FIN" - ] - }, - "swiss u-1252 - normal": { - "name": "U-1252 - Normal", - "countries": [ - "SUI" - ] - }, - "swiss u-1270 - wallis": { - "name": "U-1270 - Wallis", - "countries": [ - "SUI" - ] - }, - "1st rs, beale afb, california (bb)": { - "name": "1st RS, Beale AFB, California (BB)", - "countries": [ - "USA" - ] - }, - "xx100 - tfc": { - "name": "The Fighter Collection XX100", - "countries": [ - "UK" - ] - }, - "509th bs, whitman afb, missouri (wm)": { - "name": "509th BS, Whiteman AFB, Missouri (WM)", - "countries": [ - "USA" - ] - }, - "xx218 - 208sqn": { - "name": "208Sqn XX218", - "countries": [ - "UK" - ] - }, - "xx316 - fradu royal navy": { - "name": "Royal Navy XX316", - "countries": [ - "UK" - ] - }, - "usaf aggressor 269": { - "name": "USAF-AGGRESSOR-269", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "swiss u-1251 - white": { - "name": "U-1251 - White", - "countries": [ - "SUI" - ] - }, - "xx201 - 2010 raf hawk display": { - "name": "XX201-4FTS-HawkDisplay2010", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx175 - fradu royal navy": { - "name": "Royal Navy XX175", - "countries": [ - "UK" - ] - }, - "1018 - united arab emirates": { - "name": "United Arab Emirates Air Force", - "countries": [ - "ARE" - ] - }, - "xx179 - red arrows 1979-2007": { - "name": "Red Arrows 1979-2007", - "countries": [ - "UK" - ] - }, - "xx178 - 1994 raf hawk display": { - "name": "XX178-RAF Hawk Display 1994", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - }, - "xx159 - fradu royal navy anniversary": { - "name": "Royal Navy XX159", - "countries": [ - "UK" - ] - }, - "xx189 - 100sqn": { - "name": "100Sqn XX189", - "countries": [ - "TUR", - "RUS", - "USA", - "ISR", - "NETH", - "NOR", - "RSO", - "BEL", - "GER", - "DEN", - "SPN", - "GRG", - "ABH", - "UKR", - "ITA", - "CAN", - "FRA", - "UK" - ] - }, - "xx228 - veao": { - "name": "VEAO, XX228", - "countries": [ - "UK" - ] - }, - "xx316 - 74sqn 1998-2000": { - "name": "74Sqn XX316 1998-2000", - "countries": [ - "UK" - ] - }, - "xx179 - red arrows 2008-2012": { - "name": "Red Arrows 2008-2012", - "countries": [ - "UK" - ] - }, - "12th ftw, randolph afb, texas (ra)": { - "name": "12th FTW, Randolph AFB, Texas (RA)", - "countries": [ - "USA" - ] - }, - "nas meridian, mississippi seven (vt-7)": { - "name": "NAS Meridian, Mississippi Seven (VT-7)", - "countries": [ - "USA" - ] - }, - "88th fts, sheppard afb, texas (en)": { - "name": "88th FTS, Sheppard AFB, Texas (EN)", - "countries": [ - "USA" - ] - }, - "xx159 - 2004 raf hawk display": { - "name": "XX159-RAF Hawk Display 2004", - "countries": [ - "USA", - "NOR", - "BEL", - "DEN", - "SPN", - "UKR", - "TUR", - "NETH", - "ISR", - "ABH", - "FRA", - "RUS", - "INS", - "RSO", - "AUS", - "CAN", - "UK", - "GER", - "GRG", - "ITA" - ] - } - }, - "acquisitionRange": 90000, - "engagementRange": 0, - "description": "Hawk site track radar. Medium sized trailer", - "abilities": "" - }, - "Hummer": { - "name": "Hummer", - "coalition": "blue", - "era": "Mid Cold War", - "label": "Hummer", - "shortLabel": "Hummer", - "filename": "", - "type": "Armoured Car", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Military car, single axle, wheeled", - "abilities": "" - }, - "IKARUS Bus": { - "name": "IKARUS Bus", - "coalition": "red", - "era": "Mid Cold War", - "label": "IKARUS Bus", - "shortLabel": "IKARUS Bus", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Civilian Bus. Yellow. Bendy bus", - "abilities": "" - }, - "Igla manpad INS": { - "name": "Igla manpad INS", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-18 Igla manpad INS", - "shortLabel": "Igla manpad INS", - "range": "Short", - "filename": "", - "type": "MANPADS", - "enabled": true, - "liveries": { - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 5200, - "description": "9K38/SA-18 Man portable air defence. Heatseaker", - "abilities": "" - }, - "Infantry AK": { - "name": "Infantry AK", - "coalition": "red", - "era": "Mid Cold War", - "label": "Infantry AK", - "shortLabel": "Infantry AK", - "filename": "", - "type": "Infantry", - "enabled": true, - "muzzleVelocity": 900, - "barrelHeight": 0.9, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "Single infantry carrying AK-74", - "abilities": "" - }, - "KAMAZ Truck": { - "name": "KAMAZ Truck", - "coalition": "red", - "era": "Mid Cold War", - "label": "KAMAZ Truck", - "shortLabel": "KAMAZ Truck", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Military truck, 2 axle, wheeled", - "abilities": "" - }, - "Kub 1S91 str": { - "name": "Kub 1S91 str", - "coalition": "red", - "era": "Mid Cold War", - "label": "SA-6 Straight flush", - "shortLabel": "Kub 1S91 str", - "range": "Medium", - "filename": "", - "type": "SAM Search/Track Radar", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 70000, - "engagementRange": 0, - "description": "SA-6/Kub search and track radar, tracked.", - "abilities": "" - }, - "Kub 2P25 ln": { - "name": "Kub 2P25 ln", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-6 Launcher", - "shortLabel": "Kub 2P25 ln", - "range": "Medium", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 25000, - "description": "SA-6/Kub launcher. 3 missiles. Tracked. Needs rest of site to function", - "abilities": "" - }, - "LAV-25": { - "name": "LAV-25", - "coalition": "blue", - "era": "Late Cold War", - "label": "LAV-25", - "shortLabel": "LAV-25", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "aus_winter": { - "name": "AUS_Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "aus_summer": { - "name": "AUS_Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "sand": { - "name": "sand", - "countries": "All" - }, - "green": { - "name": "green", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "Infantry fighter vehicle. Wheeled. Amphibious", - "abilities": "" - }, - "LAZ Bus": { - "name": "LAZ Bus", - "coalition": "red", - "era": "Early Cold War", - "label": "LAZ Bus", - "shortLabel": "LAZ Bus", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "Civilian bus. Single Axle. Wheeled", - "abilities": "" - }, - "Leclerc": { - "name": "Leclerc", - "coalition": "blue", - "era": "Modern", - "label": "Leclerc", - "shortLabel": "Leclerc", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "Main battle tank. Tracked. Modern and heavily armoured.", - "abilities": "" - }, - "Leopard-2": { - "name": "Leopard-2", - "coalition": "blue", - "era": "Late Cold War", - "label": "Leopard-2", - "shortLabel": "Leopard-2", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "can_spring": { - "name": "CAN_spring", - "countries": "All" - }, - "winter": { - "name": "winter", - "countries": "All" - }, - "spn_summer": { - "name": "SPN_Summer", - "countries": "All" - }, - "de_desert_winter": { - "name": "winter", - "countries": "All" - }, - "de_desert_spring": { - "name": "spring", - "countries": "All" - }, - "de_summer": { - "name": "summer", - "countries": "All" - }, - "den_autumn": { - "name": "DEN_autumn", - "countries": "All" - }, - "den_spring": { - "name": "DEN_spring", - "countries": "All" - }, - "de_winter": { - "name": "winter", - "countries": "All" - }, - "neth_summer": { - "name": "NETH_summer", - "countries": "All" - }, - "de_autumn": { - "name": "winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_summer", - "countries": "All" - }, - "spring": { - "name": "spring", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_autumn", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "de_desert_summer": { - "name": "DE_Desert_summer", - "countries": "All" - }, - "desert_summer": { - "name": "Desert_summer", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_winter", - "countries": "All" - }, - "den_summer": { - "name": "DEN_summer", - "countries": "All" - }, - "desert_autumn": { - "name": "Desert_autumn", - "countries": "All" - }, - "de_spring": { - "name": "spring", - "countries": "All" - }, - "den_winter": { - "name": "DEN_winter", - "countries": "All" - }, - "fin_winter": { - "name": "FIN_winter", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_spring", - "countries": "All" - }, - "desert_winter": { - "name": "Desert_winter", - "countries": "All" - }, - "can_winter": { - "name": "CAN_winter", - "countries": "All" - }, - "de_desert_autumn": { - "name": "autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - }, - "desert_spring": { - "name": "Desert_spring", - "countries": "All" - }, - "fin_spring": { - "name": "FIN_spring", - "countries": "All" - }, - "fin_summer": { - "name": "FIN_summer", - "countries": "All" - }, - "can_summer": { - "name": "CAN_summer", - "countries": "All" - }, - "can_autumn": { - "name": "CAN_autumn", - "countries": "All" - }, - "neth_winter": { - "name": "NETH_winter", - "countries": "All" - }, - "spn_winter": { - "name": "SPN_Winter", - "countries": "All" - }, - "fin_autumn": { - "name": "FIN_autumn", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "Main battle tank. Tracked. Modern and heavily armoured.", - "abilities": "" - }, - "Leopard1A3": { - "name": "Leopard1A3", - "coalition": "blue", - "era": "Mid Cold War", - "label": "Leopard1A3", - "shortLabel": "Leopard1A3", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "Main battle tank. Tracked. Heavily armoured.", - "abilities": "" - }, - "M 818": { - "name": "M 818", - "coalition": "blue", - "era": "Early Cold War", - "label": "M 818", - "shortLabel": "M 818", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "spring": { - "name": "spring", - "countries": "All" - }, - "winter": { - "name": "winter", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "???", - "abilities": "" - }, - "M-1 Abrams": { - "name": "M-1 Abrams", - "coalition": "blue", - "era": "Late Cold War", - "label": "M-1 Abrams", - "shortLabel": "M-1 Abrams", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "Main battle tank. Tracked. Modern and heavily armoured.", - "abilities": "" - }, - "M-109": { - "name": "M-109", - "coalition": "blue", - "era": "Early Cold War", - "label": "M-109 Paladin", - "shortLabel": "M-109", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 22000, - "description": "???", - "abilities": "" - }, - "M-113": { - "name": "M-113", - "coalition": "blue", - "era": "Early Cold War", - "label": "M-113", - "shortLabel": "M-113", - "filename": "", - "type": "APC", - "enabled": true, - "liveries": { - "winter": { - "name": "winter", - "countries": "All" - }, - "grc_autumn_med": { - "name": "GRC_autumn", - "countries": "All" - }, - "winter_med": { - "name": "winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_summer", - "countries": "All" - }, - "spring": { - "name": "spring", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - }, - "grc_spring_med": { - "name": "GRC_spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_autumn", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_winter", - "countries": "All" - }, - "green_med": { - "name": "green", - "countries": "All" - }, - "green": { - "name": "green", - "countries": "All" - }, - "spring_med": { - "name": "spring", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_spring", - "countries": "All" - }, - "grc_winter_med": { - "name": "GRC_winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - }, - "grc_summer_med": { - "name": "GRC_summer", - "countries": "All" - }, - "autumn_med": { - "name": "autumn", - "countries": "All" - }, - "desert_med": { - "name": "Desert", - "countries": "All" - }, - "summer_med": { - "name": "summer", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "Armoured personnel carrier. Tracked. Amphibious", - "abilities": "" - }, - "M-2 Bradley": { - "name": "M-2 Bradley", - "coalition": "blue", - "era": "Late Cold War", - "label": "M-2A2 Bradley", - "shortLabel": "M-2 Bradley", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3800, - "description": "Infantry fighting vehicle. Tracked.", - "abilities": "" - }, - "M-60": { - "name": "M-60", - "coalition": "blue", - "era": "Early Cold War", - "label": "M-60", - "shortLabel": "M-60", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "winter", - "countries": "All" - }, - "spring": { - "name": "spring", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 8000, - "description": "Main battle tank. Tracked. Heavily armoured.", - "abilities": "" - }, - "M1043 HMMWV Armament": { - "name": "M1043 HMMWV Armament", - "coalition": "blue", - "era": "Late Cold War", - "label": "HMMWV M2 Browning", - "shortLabel": "HMMWV M2", - "filename": "", - "type": "Armoured Car", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "Military car, single axle, wheeled", - "abilities": "" - }, - "M1045 HMMWV TOW": { - "name": "M1045 HMMWV TOW", - "coalition": "red", - "era": "Late Cold War", - "label": "HMMWV TOW", - "shortLabel": "HMMWV TOW", - "filename": "", - "type": "Armoured Car", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 3800, - "description": "Military car, single axle, wheeled", - "abilities": "" - }, - "M1097 Avenger": { - "name": "M1097 Avenger", - "coalition": "blue", - "era": "Modern", - "label": "M1097 Avenger", - "shortLabel": "M1097 Avenger", - "filename": "", - "type": "SAM", - "enabled": true, - "acquisitionRange": 5200, - "engagementRange": 4500, - "description": "Military car, single axle, wheeled", - "abilities": "" - }, - "M1126 Stryker ICV": { - "name": "M1126 Stryker ICV", - "coalition": "blue", - "era": "Modern", - "label": "Stryker MG", - "shortLabel": "Stryker MG", - "filename": "", - "type": "APC", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "Armoured personnel carrier. Wheeled.", - "abilities": "" - }, - "M1128 Stryker MGS": { - "name": "M1128 Stryker MGS", - "coalition": "blue", - "era": "Modern", - "label": "M1128 Stryker MGS", - "shortLabel": "M1128 Stryker MGS", - "filename": "", - "type": "SPG", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "Self propelled gun. Wheeled.", - "abilities": "" - }, - "M1134 Stryker ATGM": { - "name": "M1134 Stryker ATGM", - "coalition": "blue", - "era": "Modern", - "label": "Stryker ATGM", - "shortLabel": "Stryker ATGM", - "filename": "", - "type": "APC", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 3800, - "description": "Armoured personnel carrier. Wheeled.", - "abilities": "" - }, - "M48 Chaparral": { - "name": "M48 Chaparral", - "coalition": "blue", - "era": "Late Cold War", - "label": "M48 Chaparral", - "shortLabel": "M48 Chaparral", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "usa_winter": { - "name": "USA_Winter", - "countries": "All" - }, - "isr_summer": { - "name": "ISR_Summer", - "countries": "All" - }, - "isr_spring": { - "name": "ISR_Spring", - "countries": "All" - }, - "usa_autumn": { - "name": "USA_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "isr_winter": { - "name": "ISR_Winter", - "countries": "All" - }, - "isr_autumn": { - "name": "ISR_Autumn", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "usa_summer": { - "name": "USA_Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "usa_spring": { - "name": "USA_Spring", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 10000, - "engagementRange": 8500, - "description": "", - "abilities": "" - }, - "M6 Linebacker": { - "name": "M6 Linebacker", - "coalition": "blue", - "era": "Late Cold War", - "label": "M6 Linebacker", - "shortLabel": "M6 Linebacker", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 8000, - "engagementRange": 4500, - "description": "", - "abilities": "" - }, - "M978 HEMTT Tanker": { - "name": "M978 HEMTT Tanker", - "coalition": "blue", - "era": "Mid Cold War", - "label": "M978 HEMTT Tanker", - "shortLabel": "M978 HEMTT Tanker", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "MAZ-6303": { - "name": "MAZ-6303", - "coalition": "red", - "era": "Mid Cold War", - "label": "MAZ-6303", - "shortLabel": "MAZ-6303", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "winter", - "countries": "All" - }, - "spring": { - "name": "spring", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "MCV-80": { - "name": "MCV-80", - "coalition": "blue", - "era": "Late Cold War", - "label": "Warrior IFV", - "shortLabel": "Warrior", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "MLRS": { - "name": "MLRS", - "coalition": "blue", - "era": "Late Cold War", - "label": "M270", - "shortLabel": "M270", - "filename": "", - "type": "Rocket Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 32000, - "description": "", - "abilities": "" - }, - "MTLB": { - "name": "MTLB", - "coalition": "red", - "era": "Mid Cold War", - "label": "MT-LB", - "shortLabel": "MT-LB", - "filename": "", - "type": "APC", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1000, - "description": "", - "abilities": "" - }, - "Marder": { - "name": "Marder", - "coalition": "blue", - "era": "Late Cold War", - "label": "Marder", - "shortLabel": "Marder", - "filename": "", - "type": "IFV", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 1500, - "description": "", - "abilities": "" - }, - "Osa 9A33 ln": { - "name": "Osa 9A33 ln", - "coalition": "red", - "era": "Mid Cold War", - "label": "SA-8 Launcher", - "shortLabel": "Osa 9A33 ln", - "range": "Short", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 30000, - "engagementRange": 10300, - "description": "", - "abilities": "" - }, - "Paratrooper AKS-74": { - "name": "Paratrooper AKS-74", - "coalition": "red", - "era": "Modern", - "label": "Paratrooper AKS-74", - "shortLabel": "Paratrooper AKS-74", - "filename": "", - "type": "Infantry", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Paratrooper RPG-16": { - "name": "Paratrooper RPG-16", - "coalition": "red", - "era": "Modern", - "label": "Paratrooper RPG-16", - "shortLabel": "Paratrooper RPG-16", - "filename": "", - "type": "Infantry", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Patriot AMG": { - "name": "Patriot AMG", - "coalition": "blue", - "era": "Modern", - "label": "Patriot Antenna Mast Group", - "shortLabel": "Patriot AMG", - "range": "Long", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Patriot ECS": { - "name": "Patriot ECS", - "coalition": "blue", - "era": "Modern", - "label": "Patriot Engagement Control Station", - "shortLabel": "Patriot ECS", - "range": "Long", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Patriot EPP": { - "name": "Patriot EPP", - "coalition": "blue", - "era": "Late Cold War", - "label": "Patriot Electric Power Plant", - "shortLabel": "Patriot EPP", - "range": "Long", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Patriot cp": { - "name": "Patriot cp", - "coalition": "blue", - "era": "Late Cold War", - "label": "Patriot Command Post", - "shortLabel": "Patriot cp", - "range": "Long", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Patriot ln": { - "name": "Patriot ln", - "coalition": "blue", - "era": "Late Cold War", - "label": "Patriot Launcher", - "shortLabel": "Patriot ln", - "range": "Long", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 100000, - "description": "", - "abilities": "" - }, - "Patriot site": { - "name": "Patriot site", - "coalition": "blue", - "era": "Late Cold War", - "label": "Patriot site", - "shortLabel": "Patriot site", - "range": "Long", - "filename": "", - "type": "SAM Site", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Patriot str": { - "name": "Patriot str", - "coalition": "blue", - "era": "Late Cold War", - "label": "Patriot Search/Track radar", - "shortLabel": "Patriot str", - "range": "Medium", - "filename": "", - "type": "SAM Search/Track radar", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Predator GCS": { - "name": "Predator GCS", - "coalition": "blue", - "era": "Late Cold War", - "label": "Predator GCS", - "shortLabel": "Predator GCS", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "usaf standard": { - "name": "USAF Standard", - "countries": [ - "USA" - ] - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Predator TrojanSpirit": { - "name": "Predator TrojanSpirit", - "coalition": "blue", - "era": "Late Cold War", - "label": "Predator TrojanSpirit", - "shortLabel": "Predator TrojanSpirit", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "RLS_19J6": { - "name": "RLS_19J6", - "coalition": "Red", - "era": "Mid Cold War", - "label": "SA-5 Thin Shield", - "shortLabel": "RLS 19J6", - "range": "Long", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "spring": { - "name": "spring", - "countries": "All" - }, - "winter": { - "name": "winter", - "countries": "All" - }, - "autumn": { - "name": "autumn", - "countries": "All" - }, - "summer": { - "name": "summer", - "countries": "All" - } - }, - "acquisitionRange": 150000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "RPC_5N62V": { - "name": "RPC_5N62V", - "coalition": "Red", - "era": "Mid Cold War", - "label": "SA-5 Square Pair", - "shortLabel": "RPC 5N62V", - "range": "Long", - "filename": "", - "type": "SAM Track radar", - "enabled": true, - "liveries": { - "desert_spring": { - "name": "S-200_Radar_Desert_Spring", - "countries": "All" - }, - "cam_autumn": { - "name": "S-200_Radar_Cam_Autumn", - "countries": "All" - }, - "cam_spring": { - "name": "S-200_Radar_Cam_Spring", - "countries": "All" - }, - "green_summer": { - "name": "S-200_Radar_Green_Summer", - "countries": "All" - }, - "green_winter": { - "name": "S-200_Radar_Green_Winter", - "countries": "All" - }, - "cam_summer": { - "name": "S-200_Radar_Cam_Summer", - "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" - }, - "green_spring": { - "name": "S-200_Radar_Green_Spring", - "countries": "All" - }, - "syria_spring": { - "name": "S-200_Radar_Syria_Spring", - "countries": "All" - }, - "desert_summer": { - "name": "S-200_Radar_Desert_Summer", - "countries": "All" - }, - "green_autumn": { - "name": "S-200_Radar_Green_Autumn", - "countries": "All" - }, - "desert_autumn": { - "name": "S-200_Radar_Desert_Autumn", - "countries": "All" - }, - "cam_winter": { - "name": "S-200_Radar_Cam_Winter", - "countries": "All" - } - }, - "acquisitionRange": 400000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Roland ADS": { - "name": "Roland ADS", - "coalition": "blue", - "era": "Late Cold War", - "label": "Roland ADS", - "shortLabel": "Roland ADS", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 12000, - "engagementRange": 8000, - "description": "", - "abilities": "" - }, - "Roland Radar": { - "name": "Roland Radar", - "coalition": "blue", - "era": "Mid Cold War", - "label": "Roland Search radar", - "shortLabel": "Roland Radar", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 35000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S-200_Launcher": { - "name": "S-200_Launcher", - "coalition": "Red", - "era": "Mid Cold War", - "label": "SA-5 Launcher", - "shortLabel": "S-200 Launcher", - "range": "Long", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "desert_spring": { - "name": "S-200_Launcher_Desert_Spring", - "countries": "All" - }, - "cam_autumn": { - "name": "S-200_Cam_Autumn", - "countries": "All" - }, - "cam_spring": { - "name": "S-200_Launcher_Cam_Spring", - "countries": "All" - }, - "green_summer": { - "name": "S-200_Launcher_Green_Summer", - "countries": "All" - }, - "green_winter": { - "name": "S-200_Launcher_Green_Winter", - "countries": "All" - }, - "cam_summer": { - "name": "S-200_Launcher_Cam_Summer", - "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" - }, - "green_spring": { - "name": "S-200_Launcher_Green_Spring", - "countries": "All" - }, - "syria_spring": { - "name": "S-200_Launcher_Syria_Spring", - "countries": "All" - }, - "desert_summer": { - "name": "S-200_Launcher_Desert_Summer", - "countries": "All" - }, - "green_autumn": { - "name": "S-200_Launcher_Green_Autumn", - "countries": "All" - }, - "desert_autumn": { - "name": "S-200_Launcher_Desert_Autumn", - "countries": "All" - }, - "cam_winter": { - "name": "S-200_Launcher_Cam_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 255000, - "description": "", - "abilities": "" - }, - "S-300PS 40B6M tr": { - "name": "S-300PS 40B6M tr", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Tin Shield", - "shortLabel": "S-300PS 40B6M tr", - "range": "Long", - "filename": "", - "type": "SAM Track radar", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S-300PS 40B6MD sr": { - "name": "S-300PS 40B6MD sr", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Clam Shell", - "shortLabel": "S-300PS 40B6MD sr", - "range": "Long", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 60000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S-300PS 54K6 cp": { - "name": "S-300PS 54K6 cp", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Command Post", - "shortLabel": "S-300PS 54K6 cp", - "range": "Long", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S-300PS 5P85C ln": { - "name": "S-300PS 5P85C ln", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Launcher (5P85C)", - "shortLabel": "S-300PS 5P85C ln", - "range": "Long", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 120000, - "description": "", - "abilities": "" - }, - "S-300PS 5P85D ln": { - "name": "S-300PS 5P85D ln", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Launcher (5P85D)", - "shortLabel": "S-300PS 5P85D ln", - "range": "Long", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 120000, - "description": "", - "abilities": "" - }, - "S-300PS 64H6E sr": { - "name": "S-300PS 64H6E sr", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 Big Bird", - "shortLabel": "S-300PS 64H6E sr", - "range": "Long", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SA-10 SAM Battery": { - "name": "SA-10 SAM Battery", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-10 SAM Battery", - "shortLabel": "SA-10 SAM Battery", - "range": "Long", - "filename": "", - "type": "SAM Site", - "enabled": true, - "acquisitionRange": "", - "engagementRange": "", - "description": "", - "abilities": "" - }, - "SA-11 Buk CC 9S470M1": { - "name": "SA-11 Buk CC 9S470M1", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-11 Command Post", - "shortLabel": "SA-11 Buk CC 9S470M1", - "range": "Medium", - "filename": "", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SA-11 Buk LN 9A310M1": { - "name": "SA-11 Buk LN 9A310M1", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-11 Launcher", - "shortLabel": "SA-11 Buk LN 9A310M1", - "range": "Medium", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 50000, - "engagementRange": 35000, - "description": "", - "abilities": "" - }, - "SA-11 Buk SR 9S18M1": { - "name": "SA-11 Buk SR 9S18M1", - "coalition": "red", - "era": "Mid Cold War", - "label": "SA-11 Snown Drift", - "shortLabel": "SA-11 Buk SR 9S18M1", - "range": "Long", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 100000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SA-11 SAM Battery": { - "name": "SA-11 SAM Battery", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-11 SAM Battery", - "shortLabel": "SA-11 SAM Battery", - "range": "Medium", - "filename": "", - "type": "SAM Site", - "enabled": true, - "acquisitionRange": "", - "engagementRange": "", - "description": "", - "abilities": "" - }, - "SA-18 Igla manpad": { - "name": "SA-18 Igla manpad", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-18 Igla manpad", - "shortLabel": "SA-18 Igla manpad", - "range": "Short", - "filename": "", - "type": "MANPADS", - "enabled": true, - "acquisitionRange": 5000, - "engagementRange": 5200, - "description": "", - "abilities": "" - }, - "SA-18 Igla-S manpad": { - "name": "SA-18 Igla-S manpad", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-18 Igla-S manpad", - "shortLabel": "SA-18 Igla-S manpad", - "range": "Short", - "filename": "", - "type": "MANPADS", - "enabled": true, - "acquisitionRange": 5000, - "engagementRange": 5200, - "description": "", - "abilities": "" - }, - "SA-2 SAM Battery": { - "name": "SA-2 SAM Battery", - "coalition": "red", - "era": "Early Cold War", - "label": "SA-2 SAM Battery", - "shortLabel": "SA-2 SAM Battery", - "range": "Long", - "filename": "", - "type": "SAM Site", - "enabled": true, - "acquisitionRange": "", - "engagementRange": "", - "description": "", - "abilities": "" - }, - "SA-3 SAM Battery": { - "name": "SA-3 SAM Battery", - "coalition": "red", - "era": "Early Cold War", - "label": "SA-3 SAM Battery", - "shortLabel": "SA-3 SAM Battery", - "range": "Medium", - "filename": "", - "type": "SAM Site", - "enabled": true, - "acquisitionRange": "", - "engagementRange": "", - "description": "", - "abilities": "" - }, - "SA-5 SAM Battery": { - "name": "SA-5 SAM Battery", - "coalition": "Red", - "era": "Mid Cold War", - "label": "SA-5 SAM Battery", - "shortLabel": "SA-5 SAM Battery", - "range": "Long", - "filename": "", - "type": "SAM Site", - "enabled": true, - "acquisitionRange": "", - "engagementRange": "", - "description": "", - "abilities": "" - }, - "SA-6 SAM Battery": { - "name": "SA-6 SAM Battery", - "coalition": "red", - "era": "Mid Cold War", - "label": "SA-6 SAM Battery", - "shortLabel": "SA-6 SAM Battery", - "range": "Medium", - "filename": "", - "type": "SAM Site", - "enabled": true, - "description": "2K12 Kub. Tracked self propelled straight fush Radars, and TELs. 3 missiles per TEL.", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "SAU 2-C9": { - "name": "SAU 2-C9", - "coalition": "red", - "era": "Mid Cold War", - "label": "SAU Nona", - "shortLabel": "SAU Nona", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 7000, - "description": "", - "abilities": "" - }, - "SAU Akatsia": { - "name": "SAU Akatsia", - "coalition": "red", - "era": "Mid Cold War", - "label": "SAU Akatsia", - "shortLabel": "SAU Akatsia", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 17000, - "description": "", - "abilities": "" - }, - "SAU Gvozdika": { - "name": "SAU Gvozdika", - "coalition": "red", - "era": "Mid Cold War", - "label": "SAU Gvozdika", - "shortLabel": "SAU Gvozdika", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "SAU Msta": { - "name": "SAU Msta", - "coalition": "red", - "era": "Late Cold War", - "label": "SAU Msta", - "shortLabel": "SAU Msta", - "filename": "", - "type": "Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 23500, - "description": "", - "abilities": "" - }, - "SKP-11": { - "name": "SKP-11", - "coalition": "red", - "era": "Early Cold War", - "label": "SKP-11", - "shortLabel": "SKP-11", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SNR_75V": { - "name": "SNR_75V", - "coalition": "Red", - "era": "Early Cold War", - "label": "SA-2 Fan Song", - "shortLabel": "SNR 75V", - "filename": "", - "type": "SAM Track radar", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 100000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S_75M_Volhov": { - "name": "S_75M_Volhov", - "coalition": "Red", - "era": "Early Cold War", - "label": "SA-2 Launcher", - "shortLabel": "S75M Volhov", - "filename": "", - "type": "SAM Launcher", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 43000, - "description": "", - "abilities": "" - }, - "Sandbox": { - "name": "Sandbox", - "coalition": "", - "era": "", - "label": "Sandbox", - "shortLabel": "Sandbox", - "filename": "", - "type": "Static", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "Smerch": { - "name": "Smerch", - "coalition": "red", - "era": "Late Cold War", - "label": "Smerch", - "shortLabel": "Smerch", - "filename": "", - "type": "Rocket Artillery", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 70000, - "description": "", - "abilities": "" - }, - "Soldier AK": { - "name": "Soldier AK", - "coalition": "red", - "era": "Early Cold War", - "label": "Soldier AK", - "shortLabel": "Soldier AK", - "filename": "", - "type": "Infantry", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "muzzleVelocity": 900, - "barrelHeight": 0.9, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Soldier M249": { - "name": "Soldier M249", - "coalition": "blue", - "era": "Late Cold War", - "label": "Soldier M249", - "shortLabel": "Soldier M249", - "filename": "", - "type": "Infantry", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 700, - "description": "", - "abilities": "" - }, - "Soldier M4 GRG": { - "name": "Soldier M4 GRG", - "coalition": "blue", - "era": "Mid Cold War", - "label": "Soldier M4 GRG", - "shortLabel": "Soldier M4 GRG", - "filename": "", - "type": "Infantry", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Soldier M4": { - "name": "Soldier M4", - "coalition": "blue", - "era": "Mid Cold War", - "label": "Soldier M4", - "shortLabel": "Soldier M4", - "filename": "", - "type": "Infantry", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Soldier RPG": { - "name": "Soldier RPG", - "coalition": "red", - "era": "Mid Cold War", - "label": "Soldier RPG", - "shortLabel": "Soldier RPG", - "filename": "", - "type": "Infantry", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Stinger comm dsr": { - "name": "Stinger comm dsr", - "coalition": "red", - "era": "Late Cold War", - "label": "Stinger comm dsr", - "shortLabel": "Stinger comm dsr", - "range": "Short", - "filename": "", - "type": "MANPADS", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "multicam": { - "name": "multicam", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Stinger comm": { - "name": "Stinger comm", - "coalition": "blue", - "era": "Late Cold War", - "label": "Stinger comm", - "shortLabel": "Stinger comm", - "range": "Short", - "filename": "", - "type": "MANPADS", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "multicam": { - "name": "multicam", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Strela-1 9P31": { - "name": "Strela-1 9P31", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-9 Strela-1 9P31", - "shortLabel": "Strela-1 9P31", - "range": "Short", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 4200, - "description": "", - "abilities": "" - }, - "Strela-10M3": { - "name": "Strela-10M3", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-13 Strela-10M3", - "shortLabel": "Strela-10M3", - "range": "Short", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 8000, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "Suidae": { - "name": "Suidae", - "coalition": "", - "era": "Modern", - "label": "Suidae", - "shortLabel": "Suidae", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "T-55": { - "name": "T-55", - "coalition": "red", - "era": "Early Cold War", - "label": "T-55", - "shortLabel": "T-55", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "T-72B": { - "name": "T-72B", - "coalition": "red", - "era": "Mid Cold War", - "label": "T-72B", - "shortLabel": "T-72B", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "", - "abilities": "" - }, - "T-80UD": { - "name": "T-80UD", - "coalition": "red", - "era": "Mid Cold War", - "label": "T-80UD", - "shortLabel": "T-80UD", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "iran - 01": { - "name": "Iran - 01", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "iran - 02": { - "name": "Iran - 02", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "T-90": { - "name": "T-90", - "coalition": "red", - "era": "Late Cold War", - "label": "T-90", - "shortLabel": "T-90", - "filename": "", - "type": "Tank", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "TPZ": { - "name": "TPZ", - "coalition": "blue", - "era": "Late Cold War", - "label": "TPz Fuchs", - "shortLabel": "TPz Fuchs", - "filename": "", - "type": "APC", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 1000, - "description": "", - "abilities": "" - }, - "Tigr_233036": { - "name": "Tigr_233036", - "coalition": "red", - "era": "Late Cold War", - "label": "Tigr_233036", - "shortLabel": "Tigr_233036", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Tor 9A331": { - "name": "Tor 9A331", - "coalition": "red", - "era": "Late Cold War", - "label": "SA-15 Tor 9A331", - "shortLabel": "Tor 9A331", - "range": "Medium", - "filename": "", - "type": "SAM", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 25000, - "engagementRange": 12000, - "description": "", - "abilities": "" - }, - "Trolley bus": { - "name": "Trolley bus", - "coalition": "blue", - "era": "Late Cold War", - "label": "Trolley bus", - "shortLabel": "Trolley bus", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "UAZ-469": { - "name": "UAZ-469", - "coalition": "red", - "era": "Mid Cold War", - "label": "UAZ-469", - "shortLabel": "UAZ-469", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "red_spring": { - "name": "RED_Spring", - "countries": "All" - }, - "red_summer": { - "name": "RED_Summer", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "orange_spring": { - "name": "ORANGE_Spring", - "countries": "All" - }, - "orange_autumn": { - "name": "ORANGE_Autumn", - "countries": "All" - }, - "red_autumn": { - "name": "RED_Autumn", - "countries": "All" - }, - "red_winter": { - "name": "RED_Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "orange_summer": { - "name": "ORANGE_Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "orange_winter": { - "name": "ORANGE_Winter", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Uragan_BM-27": { - "name": "Uragan_BM-27", - "coalition": "red", - "era": "Late Cold War", - "label": "Uragan", - "shortLabel": "Uragan", - "filename": "", - "type": "Rocket Artillery", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 35800, - "description": "", - "abilities": "" - }, - "Ural ATsP-6": { - "name": "Ural ATsP-6", - "coalition": "red", - "era": "Mid Cold War", - "label": "Ural ATsP-6", - "shortLabel": "Ural ATsP-6", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Ural-375 PBU": { - "name": "Ural-375 PBU", - "coalition": "red", - "era": "Mid Cold War", - "label": "Ural-375 PBU", - "shortLabel": "Ural-375 PBU", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Ural-375 ZU-23 Insurgent": { - "name": "Ural-375 ZU-23 Insurgent", - "coalition": "red", - "era": "Early Cold War", - "label": "Ural-375 ZU-23 Insurgent", - "shortLabel": "Ural-375 ZU-23 Insurgent", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "Ural-375 ZU-23": { - "name": "Ural-375 ZU-23", - "coalition": "red", - "era": "Early Cold War", - "label": "Ural-375 ZU-23", - "shortLabel": "Ural-375 ZU-23", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "Ural-375": { - "name": "Ural-375", - "coalition": "red", - "era": "Mid Cold War", - "label": "Ural-375", - "shortLabel": "Ural-375", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Ural-4320 APA-5D": { - "name": "Ural-4320 APA-5D", - "coalition": "red", - "era": "Early Cold War", - "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": "Lightly armoured", - "abilities": "" - }, - "Ural-4320-31": { - "name": "Ural-4320-31", - "coalition": "red", - "era": "Late Cold War", - "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": "" - }, - "Ural-4320T": { - "name": "Ural-4320T", - "coalition": "red", - "era": "Late Cold War", - "label": "Ural-4320T", - "shortLabel": "Ural-4320T", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "abilities": "", - "description": "" - }, - "VAZ Car": { - "name": "VAZ Car", - "coalition": "red", - "era": "Early Cold War", - "label": "VAZ Car", - "shortLabel": "VAZ Car", - "filename": "", - "type": "Unarmed", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Vulcan": { - "name": "Vulcan", - "coalition": "blue", - "era": "Late Cold War", - "label": "Vulcan", - "shortLabel": "Vulcan", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "usa_winter": { - "name": "USA_Winter", - "countries": "All" - }, - "isr_summer": { - "name": "ISR_Summer", - "countries": "All" - }, - "isr_spring": { - "name": "ISR_Spring", - "countries": "All" - }, - "usa_autumn": { - "name": "USA_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "isr_winter": { - "name": "ISR_Winter", - "countries": "All" - }, - "isr_autumn": { - "name": "ISR_Autumn", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "usa_summer": { - "name": "USA_Summer", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "usa_spring": { - "name": "USA_Spring", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "ZIL-131 KUNG": { - "name": "ZIL-131 KUNG", - "coalition": "red", - "era": "Early Cold War", - "label": "ZIL-131 KUNG", - "shortLabel": "ZIL-131 KUNG", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ZIL-4331": { - "name": "ZIL-4331", - "coalition": "red", - "era": "Early Cold War", - "label": "ZIL-4331", - "shortLabel": "ZIL-4331", - "filename": "", - "type": "Unarmed", - "enabled": true, - "liveries": { - "winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ZSU-23-4 Shilka": { - "name": "ZSU-23-4 Shilka", - "coalition": "red", - "era": "Late Cold War", - "label": "ZSU-23-4 Shilka", - "shortLabel": "ZSU-23-4 Shilka", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "ukr_summer": { - "name": "UKR_Summer", - "countries": "All" - }, - "ukr_spring": { - "name": "UKR_Spring", - "countries": "All" - }, - "winter": { - "name": "Winter", - "countries": "All" - }, - "ukr_autumn": { - "name": "UKR_Autumn", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "grg_summer": { - "name": "GRG_Summer", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "grg_autumn": { - "name": "GRG_Autumn", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "ukr_winter": { - "name": "UKR_Winter", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "grg_winter": { - "name": "GRG_Winter", - "countries": "All" - }, - "grg_spring": { - "name": "GRG_Spring", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "Ship", - "abilities": "" - }, - "ZU-23 Closed Insurgent": { - "name": "ZU-23 Closed Insurgent", - "coalition": "red", - "era": "Early Cold War", - "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": "", - "abilities": "" - }, - "ZU-23 Emplacement Closed": { - "name": "ZU-23 Emplacement Closed", - "coalition": "red", - "era": "Early Cold War", - "label": "ZU-23 Emplacement Closed", - "shortLabel": "ZU-23 Emplacement Closed", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "ZU-23 Emplacement": { - "name": "ZU-23 Emplacement", - "coalition": "red", - "era": "Early Cold War", - "label": "ZU-23 Emplacement", - "shortLabel": "ZU-23 Emplacement", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "grc_summer": { - "name": "GRC_Summer", - "countries": "All" - }, - "grc_spring": { - "name": "GRC_Spring", - "countries": "All" - }, - "grc_autumn": { - "name": "GRC_Autumn", - "countries": "All" - }, - "grc_winter": { - "name": "GRC_Winter", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "ZU-23 Insurgent": { - "name": "ZU-23 Insurgent", - "coalition": "red", - "era": "Early Cold War", - "label": "ZU-23 Insurgent", - "shortLabel": "ZU-23 Insurgent", - "filename": "", - "type": "AAA", - "enabled": true, - "liveries": { - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "ZiL-131 APA-80": { - "name": "ZiL-131 APA-80", - "coalition": "red", - "era": "Early Cold War", - "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": "", - "abilities": "" - }, - "house1arm": { - "name": "house1arm", - "coalition": "", - "era": "", - "label": "house1arm", - "shortLabel": "house1arm", - "filename": "", - "type": "Structure", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "house2arm": { - "name": "house2arm", - "coalition": "", - "era": "", - "label": "house2arm", - "shortLabel": "house2arm", - "filename": "", - "type": "Structure", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "houseA_arm": { - "name": "houseA_arm", - "coalition": "", - "era": "", - "label": "houseA_arm", - "shortLabel": "houseA_arm", - "filename": "", - "type": "Structure", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "outpost": { - "name": "outpost", - "coalition": "", - "era": "", - "label": "outpost", - "shortLabel": "outpost", - "filename": "", - "type": "Structure", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "outpost_road": { - "name": "outpost_road", - "coalition": "", - "era": "", - "label": "outpost_road", - "shortLabel": "outpost_road", - "filename": "", - "type": "Structure", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 800, - "description": "", - "abilities": "" - }, - "p-19 s-125 sr": { - "name": "p-19 s-125 sr", - "coalition": "red", - "era": "Mid Cold War", - "label": "SA-3 Flat Face B", - "shortLabel": "Flat Face B", - "filename": "", - "type": "SAM Search radar", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "snr s-125 tr": { - "name": "snr s-125 tr", - "coalition": "red", - "era": "Early Cold War", - "label": "SA-3 Low Blow", - "shortLabel": "snr s-125 tr", - "range": "Medium", - "filename": "", - "type": "SAM Track radar", - "enabled": true, - "liveries": { - "winter": { - "name": "Winter", - "countries": "All" - }, - "spring": { - "name": "Spring", - "countries": "All" - }, - "rus_summer": { - "name": "RUS_Summer", - "countries": "All" - }, - "rus_winter": { - "name": "RUS_Winter", - "countries": "All" - }, - "summer": { - "name": "Summer", - "countries": "All" - }, - "rus_autumn": { - "name": "RUS_Autumn", - "countries": "All" - }, - "rus_spring": { - "name": "RUS_Spring", - "countries": "All" - }, - "autumn": { - "name": "Autumn", - "countries": "All" - }, - "desert": { - "name": "Desert", - "countries": "All" - } - }, - "acquisitionRange": 100000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SpGH_Dana": { - "name": "SpGH_Dana", - "coalition": "", - "era": "", - "label": "SPH Dana vz77 152mm", - "shortLabel": "SPH Dana vz77 152mm", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 18700, - "description": "", - "abilities": "" - }, - "Grad_FDDM": { - "name": "Grad_FDDM", - "coalition": "", - "era": "", - "label": "Grad MRL FDDM (FC)", - "shortLabel": "Grad MRL FDDM (FC)", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1000, - "description": "", - "abilities": "" - }, - "Infantry AK Ins": { - "name": "Infantry AK Ins", - "coalition": "", - "era": "", - "label": "Insurgent AK-74", - "shortLabel": "Insurgent AK-74", - "type": "Infantry", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "MLRS FDDM": { - "name": "MLRS FDDM", - "coalition": "", - "era": "", - "label": "MRLS FDDM (FC)", - "shortLabel": "MRLS FDDM (FC)", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "Infantry AK ver2": { - "name": "Infantry AK ver2", - "coalition": "", - "era": "", - "label": "Infantry AK-74 Rus ver2", - "shortLabel": "Infantry AK-74 Rus ver2", - "type": "Infantry", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Infantry AK ver3": { - "name": "Infantry AK ver3", - "coalition": "", - "era": "", - "label": "Infantry AK-74 Rus ver3", - "shortLabel": "Infantry AK-74 Rus ver3", - "type": "Infantry", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Smerch_HE": { - "name": "Smerch_HE", - "coalition": "", - "era": "", - "label": "MLRS 9A52 Smerch HE 300mm", - "shortLabel": "MLRS 9A52 Smerch HE 300mm", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 70000, - "description": "", - "abilities": "" - }, - "Soldier stinger": { - "name": "Soldier stinger", - "coalition": "", - "era": "", - "label": "MANPADS Stinger", - "shortLabel": "MANPADS Stinger", - "type": "MANPAD", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 4500, - "description": "", - "abilities": "" - }, - "SA-18 Igla comm": { - "name": "SA-18 Igla comm", - "coalition": "", - "era": "", - "label": "MANPADS SA-18 Igla \"Grouse\" C2", - "shortLabel": "MANPADS SA-18 Igla \"Grouse\" C2", - "type": "MANPAD", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SA-18 Igla-S comm": { - "name": "SA-18 Igla-S comm", - "coalition": "", - "era": "", - "label": "MANPADS SA-18 Igla-S \"Grouse\" C2", - "shortLabel": "MANPADS SA-18 Igla-S \"Grouse\" C2", - "type": "MANPAD", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "TACAN_beacon": { - "name": "TACAN_beacon", - "coalition": "", - "era": "", - "label": "Beacon TACAN Portable TTS 3030", - "shortLabel": "Beacon TACAN Portable TTS 3030", - "type": "Fortification", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Merkava_Mk4": { - "name": "Merkava_Mk4", - "coalition": "", - "era": "", - "label": "Tank Merkava IV", - "shortLabel": "Tank Merkava IV", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "", - "abilities": "" - }, - "LiAZ Bus": { - "name": "LiAZ Bus", - "coalition": "", - "era": "", - "label": "Bus LiAZ-677", - "shortLabel": "Bus LiAZ-677", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "KrAZ6322": { - "name": "KrAZ6322", - "coalition": "", - "era": "", - "label": "Truck KrAZ-6322 6x6", - "shortLabel": "Truck KrAZ-6322 6x6", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "JTAC": { - "name": "JTAC", - "coalition": "", - "era": "", - "label": "JTAC", - "shortLabel": "JTAC", - "type": "Infantry", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Infantry Animated": { - "name": "Infantry Animated", - "coalition": "", - "era": "", - "label": "Infantry", - "shortLabel": "Infantry", - "type": "Infantry", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "Electric locomotive": { - "name": "Electric locomotive", - "coalition": "", - "era": "", - "label": "Loco VL80 Electric", - "shortLabel": "Loco VL80 Electric", - "type": "Locomotive", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Locomotive": { - "name": "Locomotive", - "coalition": "", - "era": "", - "label": "Loco CHME3T", - "shortLabel": "Loco CHME3T", - "type": "Locomotive", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach cargo": { - "name": "Coach cargo", - "coalition": "", - "era": "", - "label": "Freight Van", - "shortLabel": "Freight Van", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach cargo open": { - "name": "Coach cargo open", - "coalition": "", - "era": "", - "label": "Open Wagon", - "shortLabel": "Open Wagon", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach a tank blue": { - "name": "Coach a tank blue", - "coalition": "", - "era": "", - "label": "Tank Car blue", - "shortLabel": "Tank Car blue", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach a tank yellow": { - "name": "Coach a tank yellow", - "coalition": "", - "era": "", - "label": "Tank Car yellow", - "shortLabel": "Tank Car yellow", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach a passenger": { - "name": "Coach a passenger", - "coalition": "", - "era": "", - "label": "Passenger Car", - "shortLabel": "Passenger Car", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Coach a platform": { - "name": "Coach a platform", - "coalition": "", - "era": "", - "label": "Coach Platform", - "shortLabel": "Coach Platform", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "tacr2a": { - "name": "tacr2a", - "coalition": "", - "era": "", - "label": "RAF Rescue", - "shortLabel": "RAF Rescue", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "LARC-V": { - "name": "LARC-V", - "coalition": "", - "era": "", - "label": "LARC-V", - "shortLabel": "LARC-V", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 500, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "KS-19": { - "name": "KS-19", - "coalition": "", - "era": "", - "label": "AAA KS-19 100mm", - "shortLabel": "AAA KS-19 100mm", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 20000, - "description": "", - "abilities": "" - }, - "SON_9": { - "name": "SON_9", - "coalition": "", - "era": "", - "label": "AAA Fire Can SON-9", - "shortLabel": "AAA Fire Can SON-9", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 55000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Scud_B": { - "name": "Scud_B", - "coalition": "", - "era": "", - "label": "SSM SS-1C Scud-B", - "shortLabel": "SSM SS-1C Scud-B", - "type": "Missile system", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 320000, - "description": "", - "abilities": "" - }, - "HL_DSHK": { - "name": "HL_DSHK", - "coalition": "", - "era": "", - "label": "Scout HL with DSHK 12.7mm", - "shortLabel": "Scout HL with DSHK 12.7mm", - "type": "Armoured Car", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "HL_KORD": { - "name": "HL_KORD", - "coalition": "", - "era": "", - "label": "Scout HL with KORD 12.7mm", - "shortLabel": "Scout HL with KORD 12.7mm", - "type": "Armoured Car", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "tt_DSHK": { - "name": "tt_DSHK", - "coalition": "", - "era": "", - "label": "Scout LC with DSHK 12.7mm", - "shortLabel": "Scout LC with DSHK 12.7mm", - "type": "Armoured Car", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "tt_KORD": { - "name": "tt_KORD", - "coalition": "", - "era": "", - "label": "Scout LC with KORD 12.7mm", - "shortLabel": "Scout LC with KORD 12.7mm", - "type": "Armoured Car", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "HL_ZU-23": { - "name": "HL_ZU-23", - "coalition": "", - "era": "", - "label": "SPAAA HL with ZU-23", - "shortLabel": "SPAAA HL with ZU-23", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "tt_ZU-23": { - "name": "tt_ZU-23", - "coalition": "", - "era": "", - "label": "SPAAA LC with ZU-23", - "shortLabel": "SPAAA LC with ZU-23", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "HL_B8M1": { - "name": "HL_B8M1", - "coalition": "", - "era": "", - "label": "MLRS HL with B8M1 80mm", - "shortLabel": "MLRS HL with B8M1 80mm", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "tt_B8M1": { - "name": "tt_B8M1", - "coalition": "", - "era": "", - "label": "MLRS LC with B8M1 80mm", - "shortLabel": "MLRS LC with B8M1 80mm", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "NASAMS_Radar_MPQ64F1": { - "name": "NASAMS_Radar_MPQ64F1", - "coalition": "", - "era": "", - "label": "SAM NASAMS SR MPQ64F1", - "shortLabel": "SAM NASAMS SR MPQ64F1", - "type": "SAM Search Radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 50000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "NASAMS_Command_Post": { - "name": "NASAMS_Command_Post", - "coalition": "", - "era": "", - "label": "SAM NASAMS C2", - "shortLabel": "SAM NASAMS C2", - "type": "SAM Support vehicle", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "NASAMS_LN_B": { - "name": "NASAMS_LN_B", - "coalition": "", - "era": "", - "label": "SAM NASAMS LN AIM-120B", - "shortLabel": "SAM NASAMS LN AIM-120B", - "type": "SAM Launcher", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "NASAMS_LN_C": { - "name": "NASAMS_LN_C", - "coalition": "", - "era": "", - "label": "SAM NASAMS LN AIM-120C", - "shortLabel": "SAM NASAMS LN AIM-120C", - "type": "SAM LAuncher", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "M4_Sherman": { - "name": "M4_Sherman", - "coalition": "", - "era": "", - "label": "Tk M4 Sherman", - "shortLabel": "Tk M4 Sherman", - "type": "Armor", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "M2A1_halftrack": { - "name": "M2A1_halftrack", - "coalition": "", - "era": "", - "label": "APC M2A1 Halftrack", - "shortLabel": "APC M2A1 Halftrack", - "type": "Armor", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "FPS-117 Dome": { - "name": "FPS-117 Dome", - "coalition": "", - "era": "", - "label": "EWR AN/FPS-117 Radar (domed)", - "shortLabel": "EWR AN/FPS-117 Radar (domed)", - "type": "EW Radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 400000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "FPS-117 ECS": { - "name": "FPS-117 ECS", - "coalition": "", - "era": "", - "label": "EWR AN/FPS-117 ECS", - "shortLabel": "EWR AN/FPS-117 ECS", - "type": "EW Radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "FPS-117": { - "name": "FPS-117", - "coalition": "", - "era": "", - "label": "EWR AN/FPS-117 Radar", - "shortLabel": "EWR AN/FPS-117 Radar", - "type": "EW Radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 463000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "RD_75": { - "name": "RD_75", - "coalition": "", - "era": "", - "label": "SAM SA-2 S-75 RD-75 Amazonka RF", - "shortLabel": "SAM SA-2 S-75 RD-75 Amazonka RF", - "type": "EW Radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 100000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ZSU_57_2": { - "name": "ZSU_57_2", - "coalition": "", - "era": "", - "label": "SPAAA ZSU-57-2", - "shortLabel": "SPAAA ZSU-57-2", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 7000, - "description": "", - "abilities": "" - }, - "S-60_Type59_Artillery": { - "name": "S-60_Type59_Artillery", - "coalition": "", - "era": "", - "label": "AAA S-60 57mm", - "shortLabel": "AAA S-60 57mm", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 6000, - "description": "", - "abilities": "" - }, - "generator_5i57": { - "name": "generator_5i57", - "coalition": "", - "era": "", - "label": "Diesel Power Station 5I57A", - "shortLabel": "Diesel Power Station 5I57A", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "T-72B3": { - "name": "T-72B3", - "coalition": "", - "era": "", - "label": "Tank T-72B3", - "shortLabel": "Tank T-72B3", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "", - "abilities": "" - }, - "PT_76": { - "name": "PT_76", - "coalition": "", - "era": "", - "label": "LT PT-76", - "shortLabel": "LT PT-76", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "BTR-82A": { - "name": "BTR-82A", - "coalition": "", - "era": "", - "label": "IFV BTR-82A", - "shortLabel": "IFV BTR-82A", - "type": "IFV", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "ATZ-5": { - "name": "ATZ-5", - "coalition": "", - "era": "", - "label": "Refueler ATZ-5", - "shortLabel": "Refueler ATZ-5", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "AA8": { - "name": "AA8", - "coalition": "", - "era": "", - "label": "Firefighter Vehicle AA-7.2/60", - "shortLabel": "Firefighter Vehicle AA-7.2/60", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "TZ-22_KrAZ": { - "name": "TZ-22_KrAZ", - "coalition": "", - "era": "", - "label": "Refueler TZ-22 Tractor (KrAZ-258B1)", - "shortLabel": "Refueler TZ-22 Tractor (KrAZ-258B1)", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ATZ-60_Maz": { - "name": "ATZ-60_Maz", - "coalition": "", - "era": "", - "label": "Refueler ATZ-60 Tractor (MAZ-7410)", - "shortLabel": "Refueler ATZ-60 Tractor (MAZ-7410)", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ZIL-135": { - "name": "ZIL-135", - "coalition": "", - "era": "", - "label": "Truck ZIL-135", - "shortLabel": "Truck ZIL-135", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "S_75_ZIL": { - "name": "S_75_ZIL", - "coalition": "", - "era": "", - "label": "S-75 Tractor (ZIL-131)", - "shortLabel": "S-75 Tractor (ZIL-131)", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "rapier_fsa_launcher": { - "name": "rapier_fsa_launcher", - "coalition": "", - "era": "", - "label": "SAM Rapier LN", - "shortLabel": "SAM Rapier LN", - "type": "SAM Launcher", - "enabled": true, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 6800, - "description": "", - "abilities": "" - }, - "rapier_fsa_optical_tracker_unit": { - "name": "rapier_fsa_optical_tracker_unit", - "coalition": "", - "era": "", - "label": "SAM Rapier Tracker", - "shortLabel": "SAM Rapier Tracker", - "type": "SAM Track radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 20000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "rapier_fsa_blindfire_radar": { - "name": "rapier_fsa_blindfire_radar", - "coalition": "", - "era": "", - "label": "SAM Rapier Blindfire TR", - "shortLabel": "SAM Rapier Blindfire TR", - "type": "SAM Track radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "bofors40": { - "name": "bofors40", - "coalition": "", - "era": "", - "label": "AAA Bofors 40mm", - "shortLabel": "AAA Bofors 40mm", - "type": "AAA", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "", - "abilities": "" - }, - "Chieftain_mk3": { - "name": "Chieftain_mk3", - "coalition": "", - "era": "", - "label": "Tank Chieftain Mk.3", - "shortLabel": "Tank Chieftain Mk.3", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "", - "abilities": "" - }, - "Bedford_MWD": { - "name": "Bedford_MWD", - "coalition": "", - "era": "", - "label": "Truck Bedford", - "shortLabel": "Truck Bedford", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Land_Rover_101_FC": { - "name": "Land_Rover_101_FC", - "coalition": "", - "era": "", - "label": "Truck Land Rover 101 FC", - "shortLabel": "Truck Land Rover 101 FC", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Land_Rover_109_S3": { - "name": "Land_Rover_109_S3", - "coalition": "", - "era": "", - "label": "LUV Land Rover 109", - "shortLabel": "LUV Land Rover 109", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "hy_launcher": { - "name": "hy_launcher", - "coalition": "", - "era": "", - "label": "AShM SS-N-2 Silkworm", - "shortLabel": "AShM SS-N-2 Silkworm", - "type": "Missile system", - "enabled": true, - "liveries": {}, - "acquisitionRange": 100000, - "engagementRange": 100000, - "description": "", - "abilities": "" - }, - "Silkworm_SR": { - "name": "Silkworm_SR", - "coalition": "", - "era": "", - "label": "AShM Silkworm SR", - "shortLabel": "AShM Silkworm SR", - "type": "Missile system", - "enabled": true, - "liveries": {}, - "acquisitionRange": 200000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ES44AH": { - "name": "ES44AH", - "coalition": "", - "era": "", - "label": "Loco ES44AH", - "shortLabel": "Loco ES44AH", - "type": "Locomotive", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Boxcartrinity": { - "name": "Boxcartrinity", - "coalition": "", - "era": "", - "label": "Flatcar", - "shortLabel": "Flatcar", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Tankcartrinity": { - "name": "Tankcartrinity", - "coalition": "", - "era": "", - "label": "Tank Cartrinity", - "shortLabel": "Tank Cartrinity", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Wellcarnsc": { - "name": "Wellcarnsc", - "coalition": "", - "era": "", - "label": "Well Car", - "shortLabel": "Well Car", - "type": "Carriage", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "flak18": { - "name": "flak18", - "coalition": "", - "era": "", - "label": "AAA 8,8cm Flak 18", - "shortLabel": "AAA 8,8cm Flak 18", - "type": "AAA", - "enabled": true, - "liveries": {}, - "aimTime": 20, - "shotsToFire": 1, - "acquisitionRange": 0, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "Pz_IV_H": { - "name": "Pz_IV_H", - "coalition": "", - "era": "", - "label": "Tk PzIV H", - "shortLabel": "Tk PzIV H", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Leopard-2A5": { - "name": "Leopard-2A5", - "coalition": "", - "era": "", - "label": "Tank Leopard-2A5", - "shortLabel": "Tank Leopard-2A5", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "", - "abilities": "" - }, - "leopard-2A4": { - "name": "leopard-2A4", - "coalition": "", - "era": "", - "label": "Tank Leopard-2A4", - "shortLabel": "Tank Leopard-2A4", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "", - "abilities": "" - }, - "leopard-2A4_trs": { - "name": "leopard-2A4_trs", - "coalition": "", - "era": "", - "label": "Tank Leopard-2A4 Trs", - "shortLabel": "Tank Leopard-2A4 Trs", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3500, - "description": "", - "abilities": "" - }, - "Sd_Kfz_251": { - "name": "Sd_Kfz_251", - "coalition": "", - "era": "", - "label": "APC Sd.Kfz.251 Halftrack", - "shortLabel": "APC Sd.Kfz.251 Halftrack", - "type": "APC", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1100, - "description": "", - "abilities": "" - }, - "Blitz_36-6700A": { - "name": "Blitz_36-6700A", - "coalition": "", - "era": "", - "label": "Truck Opel Blitz", - "shortLabel": "Truck Opel Blitz", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "T155_Firtina": { - "name": "T155_Firtina", - "coalition": "", - "era": "", - "label": "SPH T155 Firtina 155mm", - "shortLabel": "SPH T155 Firtina 155mm", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 41000, - "description": "", - "abilities": "" - }, - "VAB_Mephisto": { - "name": "VAB_Mephisto", - "coalition": "", - "era": "", - "label": "ATGM VAB Mephisto", - "shortLabel": "ATGM VAB Mephisto", - "type": "Armoured Car", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3800, - "description": "", - "abilities": "" - }, - "ZTZ96B": { - "name": "ZTZ96B", - "coalition": "", - "era": "", - "label": "ZTZ-96B", - "shortLabel": "ZTZ-96B", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "ZBD04A": { - "name": "ZBD04A", - "coalition": "", - "era": "", - "label": "ZBD-04A", - "shortLabel": "ZBD-04A", - "type": "IFV", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 4800, - "description": "", - "abilities": "" - }, - "HQ-7_LN_SP": { - "name": "HQ-7_LN_SP", - "coalition": "", - "era": "", - "label": "HQ-7 Self-Propelled LN", - "shortLabel": "HQ-7 Self-Propelled LN", - "type": "SAM Launcher", - "enabled": true, - "liveries": {}, - "acquisitionRange": 15000, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "HQ-7_LN_EO": { - "name": "HQ-7_LN_EO", - "coalition": "", - "era": "", - "label": "HQ-7 LN Electro-Optics", - "shortLabel": "HQ-7 LN Electro-Optics", - "type": "SAM Track radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 8000, - "engagementRange": 12000, - "description": "", - "abilities": "" - }, - "HQ-7_STR_SP": { - "name": "HQ-7_STR_SP", - "coalition": "", - "era": "", - "label": "HQ-7 Self-Propelled STR", - "shortLabel": "HQ-7 Self-Propelled STR", - "type": "SAM Track radar", - "enabled": true, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "PLZ05": { - "name": "PLZ05", - "coalition": "", - "era": "", - "label": "PLZ-05", - "shortLabel": "PLZ-05", - "type": "Artillery", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 23500, - "description": "", - "abilities": "" - }, - "TYPE-59": { - "name": "TYPE-59", - "coalition": "", - "era": "", - "label": "MT Type 59", - "shortLabel": "MT Type 59", - "type": "Tank", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2500, - "description": "", - "abilities": "" - }, - "Kubelwagen_82": { - "name": "Kubelwagen_82", - "coalition": "", - "era": "", - "label": "LUV Kubelwagen Jeep", - "shortLabel": "LUV Kubelwagen Jeep", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Sd_Kfz_2": { - "name": "Sd_Kfz_2", - "coalition": "", - "era": "", - "label": "LUV Kettenrad", - "shortLabel": "LUV Kettenrad", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Sd_Kfz_7": { - "name": "Sd_Kfz_7", - "coalition": "", - "era": "", - "label": "Tractor Sd.Kfz.7 Art'y Tractor", - "shortLabel": "Tractor Sd.Kfz.7 Art'y Tractor", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Horch_901_typ_40_kfz_21": { - "name": "Horch_901_typ_40_kfz_21", - "coalition": "", - "era": "", - "label": "LUV Horch 901 Staff Car", - "shortLabel": "LUV Horch 901 Staff Car", - "type": "Unarmed", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Tiger_I": { - "name": "Tiger_I", - "coalition": "", - "era": "", - "label": "Tk Tiger 1", - "shortLabel": "Tk Tiger 1", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Tiger_II_H": { - "name": "Tiger_II_H", - "coalition": "", - "era": "", - "label": "Tk Tiger II", - "shortLabel": "Tk Tiger II", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 6000, - "description": "", - "abilities": "" - }, - "Pz_V_Panther_G": { - "name": "Pz_V_Panther_G", - "coalition": "", - "era": "", - "label": "Tk Panther G (Pz V)", - "shortLabel": "Tk Panther G (Pz V)", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Jagdpanther_G1": { - "name": "Jagdpanther_G1", - "coalition": "", - "era": "", - "label": "SPG Jagdpanther TD", - "shortLabel": "SPG Jagdpanther TD", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 5000, - "description": "", - "abilities": "" - }, - "JagdPz_IV": { - "name": "JagdPz_IV", - "coalition": "", - "era": "", - "label": "SPG Jagdpanzer IV TD", - "shortLabel": "SPG Jagdpanzer IV TD", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Stug_IV": { - "name": "Stug_IV", - "coalition": "", - "era": "", - "label": "SPG StuG IV AG", - "shortLabel": "SPG StuG IV AG", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "SturmPzIV": { - "name": "SturmPzIV", - "coalition": "", - "era": "", - "label": "SPG Brummbaer AG", - "shortLabel": "SPG Brummbaer AG", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 4500, - "description": "", - "abilities": "" - }, - "Wespe124": { - "name": "Wespe124", - "coalition": "", - "era": "", - "label": "SPH Sd.Kfz.124 Wespe 105mm", - "shortLabel": "SPH Sd.Kfz.124 Wespe 105mm", - "type": "Artillery", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 10500, - "description": "", - "abilities": "" - }, - "Sd_Kfz_234_2_Puma": { - "name": "Sd_Kfz_234_2_Puma", - "coalition": "", - "era": "", - "label": "Scout Puma AC", - "shortLabel": "Scout Puma AC", - "type": "Armoured Car", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "KDO_Mod40": { - "name": "KDO_Mod40", - "coalition": "", - "era": "", - "label": "AAA Kdo.G.40", - "shortLabel": "AAA Kdo.G.40", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Flakscheinwerfer_37": { - "name": "Flakscheinwerfer_37", - "coalition": "", - "era": "", - "label": "SL Flakscheinwerfer 37", - "shortLabel": "SL Flakscheinwerfer 37", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 15000, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "Maschinensatz_33": { - "name": "Maschinensatz_33", - "coalition": "", - "era": "", - "label": "Maschinensatz 33 Gen", - "shortLabel": "Maschinensatz 33 Gen", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "soldier_mauser98": { - "name": "soldier_mauser98", - "coalition": "", - "era": "", - "label": "Infantry Mauser 98", - "shortLabel": "Infantry Mauser 98", - "type": "Infantry", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "SK_C_28_naval_gun": { - "name": "SK_C_28_naval_gun", - "coalition": "", - "era": "", - "label": "Gun 15cm SK C/28 Naval in Bunker", - "shortLabel": "Gun 15cm SK C/28 Naval in Bunker", - "type": "Fortification", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 20000, - "description": "", - "abilities": "" - }, - "fire_control": { - "name": "fire_control", - "coalition": "", - "era": "", - "label": "Bunker with Fire Control Center", - "shortLabel": "Bunker with Fire Control Center", - "type": "Fortification", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1100, - "description": "", - "abilities": "" - }, - "Stug_III": { - "name": "Stug_III", - "coalition": "", - "era": "", - "label": "SPG StuG III G AG", - "shortLabel": "SPG StuG III G AG", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Elefant_SdKfz_184": { - "name": "Elefant_SdKfz_184", - "coalition": "", - "era": "", - "label": "SPG Elefant TD", - "shortLabel": "SPG Elefant TD", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 6000, - "description": "", - "abilities": "" - }, - "v1_launcher": { - "name": "v1_launcher", - "coalition": "", - "era": "", - "label": "V-1 Launch Ramp", - "shortLabel": "V-1 Launch Ramp", - "type": "Missile System", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "FuMG-401": { - "name": "FuMG-401", - "coalition": "", - "era": "", - "label": "EWR FuMG-401 Freya LZ", - "shortLabel": "EWR FuMG-401 Freya LZ", - "type": "EW Radar", - "enabled": false, - "liveries": {}, - "acquisitionRange": 160000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "FuSe-65": { - "name": "FuSe-65", - "coalition": "", - "era": "", - "label": "EWR FuSe-65 Würzburg-Riese", - "shortLabel": "EWR FuSe-65 Würzburg-Riese", - "type": "EW Radar", - "enabled": false, - "liveries": {}, - "acquisitionRange": 60000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Pak40": { - "name": "Pak40", - "coalition": "", - "era": "", - "label": "FH Pak 40 75mm", - "shortLabel": "FH Pak 40 75mm", - "type": "Artillery", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "LeFH_18-40-105": { - "name": "LeFH_18-40-105", - "coalition": "", - "era": "", - "label": "FH LeFH-18 105mm", - "shortLabel": "FH LeFH-18 105mm", - "type": "Artillery", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 10500, - "description": "", - "abilities": "" - }, - "Cromwell_IV": { - "name": "Cromwell_IV", - "coalition": "", - "era": "", - "label": "Tk Cromwell IV", - "shortLabel": "Tk Cromwell IV", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "M4A4_Sherman_FF": { - "name": "M4A4_Sherman_FF", - "coalition": "", - "era": "", - "label": "Tk M4A4 Sherman Firefly", - "shortLabel": "Tk M4A4 Sherman Firefly", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "soldier_wwii_br_01": { - "name": "soldier_wwii_br_01", - "coalition": "", - "era": "", - "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": "" - }, - "Centaur_IV": { - "name": "Centaur_IV", - "coalition": "", - "era": "", - "label": "Tk Centaur IV CS", - "shortLabel": "Tk Centaur IV CS", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 6000, - "description": "", - "abilities": "" - }, - "Churchill_VII": { - "name": "Churchill_VII", - "coalition": "", - "era": "", - "label": "Tk Churchill VII", - "shortLabel": "Tk Churchill VII", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 3000, - "description": "", - "abilities": "" - }, - "Daimler_AC": { - "name": "Daimler_AC", - "coalition": "", - "era": "", - "label": "Car Daimler Armored", - "shortLabel": "Car Daimler Armored", - "type": "Armoured Car", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "Tetrarch": { - "name": "Tetrarch", - "coalition": "", - "era": "", - "label": "Tk Tetrach", - "shortLabel": "Tk Tetrach", - "type": "Armoured Car", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "QF_37_AA": { - "name": "QF_37_AA", - "coalition": "", - "era": "", - "label": "AAA QF 3.7\"", - "shortLabel": "AAA QF 3.7\"", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 9000, - "description": "", - "abilities": "" - }, - "Allies_Director": { - "name": "Allies_Director", - "coalition": "", - "era": "", - "label": "Allies Rangefinder (DRT)", - "shortLabel": "Allies Rangefinder (DRT)", - "type": "Unarmed", - "enabled": false, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "CCKW_353": { - "name": "CCKW_353", - "coalition": "", - "era": "", - "label": "Truck GMC \"Jimmy\" 6x6", - "shortLabel": "Truck GMC \"Jimmy\" 6x6", - "type": "Unarmed", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Willys_MB": { - "name": "Willys_MB", - "coalition": "", - "era": "", - "label": "Car Willys Jeep", - "shortLabel": "Car Willys Jeep", - "type": "Unarmed", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "M12_GMC": { - "name": "M12_GMC", - "coalition": "", - "era": "", - "label": "SPH M12 GMC 155mm", - "shortLabel": "SPH M12 GMC 155mm", - "type": "Artillery", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 18300, - "description": "", - "abilities": "" - }, - "M30_CC": { - "name": "M30_CC", - "coalition": "", - "era": "", - "label": "Ammo M30 Cargo Carrier", - "shortLabel": "Ammo M30 Cargo Carrier", - "type": "Unarmed", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "soldier_wwii_us": { - "name": "soldier_wwii_us", - "coalition": "", - "era": "", - "label": "Infantry M1 Garand", - "shortLabel": "Infantry M1 Garand", - "type": "Infantry", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 500, - "description": "", - "abilities": "" - }, - "M10_GMC": { - "name": "M10_GMC", - "coalition": "", - "era": "", - "label": "SPG M10 GMC TD", - "shortLabel": "SPG M10 GMC TD", - "type": "Tank", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 6000, - "description": "", - "abilities": "" - }, - "M8_Greyhound": { - "name": "M8_Greyhound", - "coalition": "", - "era": "", - "label": "Scout M8 Greyhound AC", - "shortLabel": "Scout M8 Greyhound AC", - "type": "Armoured Car", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 2000, - "description": "", - "abilities": "" - }, - "M2A1-105": { - "name": "M2A1-105", - "coalition": "", - "era": "", - "label": "FH M2A1 105mm", - "shortLabel": "FH M2A1 105mm", - "type": "Artillery", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 11500, - "description": "", - "abilities": "" - }, - "M4_Tractor": { - "name": "M4_Tractor", - "coalition": "", - "era": "", - "label": "Tractor M4 High Speed", - "shortLabel": "Tractor M4 High Speed", - "type": "Unarmed", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1200, - "description": "", - "abilities": "" - }, - "M45_Quadmount": { - "name": "M45_Quadmount", - "coalition": "", - "era": "", - "label": "AAA M45 Quadmount HB 12.7mm", - "shortLabel": "AAA M45 Quadmount HB 12.7mm", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 1500, - "description": "", - "abilities": "" - }, - "M1_37mm": { - "name": "M1_37mm", - "coalition": "", - "era": "", - "label": "AAA M1 37mm", - "shortLabel": "AAA M1 37mm", - "type": "AAA", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 5700, - "description": "", - "abilities": "" - }, - "DR_50Ton_Flat_Wagon": { - "name": "DR_50Ton_Flat_Wagon", - "coalition": "", - "era": "", - "label": "DR 50-ton flat wagon", - "shortLabel": "DR 50-ton flat wagon", - "type": "Carriage", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "DRG_Class_86": { - "name": "DRG_Class_86", - "coalition": "", - "era": "", - "label": "Loco DRG Class 86", - "shortLabel": "Loco DRG Class 86", - "type": "Locomotive", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "German_covered_wagon_G10": { - "name": "German_covered_wagon_G10", - "coalition": "", - "era": "", - "label": "Wagon G10 (Germany)", - "shortLabel": "Wagon G10 (Germany)", - "type": "Carriage", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "German_tank_wagon": { - "name": "German_tank_wagon", - "coalition": "", - "era": "", - "label": "Tank Car (Germany)", - "shortLabel": "Tank Car (Germany)", - "type": "Carriage", - "enabled": false, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - } + "1L13 EWR": { + "name": "1L13 EWR", + "coalition": "red", + "era": "Late Cold War", + "label": "Box Spring", + "shortLabel": "1L13 EWR", + "filename": "", + "type": "EW Radar", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 300000, + "engagementRange": 0, + "description": "EWR built on a truck trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "2B11 mortar": { + "name": "2B11 mortar", + "coalition": "red", + "era": "Late Cold War", + "label": "2B11 mortar", + "shortLabel": "2B11 mortar", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 7000, + "description": "Man portable 120mm mortar", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "2S6 Tunguska": { + "name": "2S6 Tunguska", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-19 Tunguska", + "shortLabel": "SA-19", + "range": "Short", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 18000, + "engagementRange": 8000, + "description": "2K22 Tunguska. Tracked self-propelled anti-aircraft 30mm guns and missiles", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "55G6 EWR": { + "name": "55G6 EWR", + "coalition": "red", + "era": "Early Cold War", + "label": "Tall Rack", + "shortLabel": "55G6 EWR", + "filename": "", + "type": "EW Radar", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "EWR built on a truck trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "5p73 s-125 ln": { + "name": "5p73 s-125 ln", + "coalition": "red", + "era": "Early Cold War", + "label": "SA-3 Launcher", + "shortLabel": "5p73 s-125 ln", + "range": "Medium", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 18000, + "description": "4 SA-3 missiles on a static emplacement. Requires grouping with SA-3 components", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "AAV7": { + "name": "AAV7", + "coalition": "blue", + "era": "Mid Cold War", + "label": "AAV7", + "shortLabel": "AAV7", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Amphibious assault vehicle. Tracked", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ATMZ-5": { + "name": "ATMZ-5", + "coalition": "red", + "era": "Early Cold War", + "label": "ATMZ-5", + "shortLabel": "ATMZ-5", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler truck. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ATZ-10": { + "name": "ATZ-10", + "coalition": "red", + "era": "Early Cold War", + "label": "ATZ-10", + "shortLabel": "ATZ-10", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Refueler truck. Wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "BMD-1": { + "name": "BMD-1", + "coalition": "red", + "era": "Mid Cold War", + "label": "BMD-1", + "shortLabel": "BMD-1", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "iran - camo": { + "name": "IRAN - camo", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "barrelHeight": 1.25, + "muzzleVelocity": 900, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "Infantry fighting vehicle. Tracked. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BMP-1": { + "name": "BMP-1", + "coalition": "red", + "era": "Mid Cold War", + "label": "BMP-1", + "shortLabel": "BMP-1", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "Infantry fighting vehicle. Tracked. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BMP-2": { + "name": "BMP-2", + "coalition": "red", + "era": "Mid Cold War", + "label": "BMP-2", + "shortLabel": "BMP-2", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "barrelHeight": 1.95, + "muzzleVelocity": 970, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "Infantry fighting vehicle. Tracked. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BMP-3": { + "name": "BMP-3", + "coalition": "red", + "era": "Late Cold War", + "label": "BMP-3", + "shortLabel": "BMP-3", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "Infantry fighting vehicle. Tracked. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BRDM-2": { + "name": "BRDM-2", + "coalition": "red", + "era": "Early Cold War", + "label": "BRDM-2", + "shortLabel": "BRDM-2", + "filename": "", + "type": "Armoured Car", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1600, + "description": "Scout car. Wheeled. Amphibious", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "BTR-80": { + "name": "BTR-80", + "coalition": "red", + "era": "Late Cold War", + "label": "BTR-80", + "shortLabel": "BTR-80", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "light green autumn": { + "name": "Light Green Autumn", + "countries": "All" + }, + "military police autumn": { + "name": "Military Police Autumn", + "countries": "All" + }, + "light green winter": { + "name": "Light Green Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "military police winter": { + "name": "Military Police Winter", + "countries": "All" + }, + "military police spring": { + "name": "Military Police Spring", + "countries": "All" + }, + "light green spring": { + "name": "Light Green Spring", + "countries": "All" + }, + "green autumn": { + "name": "Green_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "green winter": { + "name": "Green_Winter", + "countries": "All" + }, + "military police summer": { + "name": "Military Police Summer", + "countries": "All" + }, + "light green summer": { + "name": "Light_Green_Summer", + "countries": "All" + }, + "green spring": { + "name": "Green_Spring", + "countries": "All" + }, + "green summer": { + "name": "Green_Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1600, + "description": "Armoured persononel carrier. Wheeled. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BTR_D": { + "name": "BTR_D", + "coalition": "red", + "era": "Mid Cold War", + "label": "BTR_D", + "shortLabel": "BTR_D", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "Armoured persononel carrier. Tracked.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Bunker": { + "name": "Bunker", + "coalition": "", + "era": "", + "label": "Bunker", + "shortLabel": "Bunker", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "Concrete bunker. Structure. Fixed Position.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Challenger2": { + "name": "Challenger2", + "coalition": "blue", + "era": "Modern", + "label": "Challenger2", + "shortLabel": "Challenger2", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "Main battle tank. Tracked. Modern and heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Cobra": { + "name": "Cobra", + "coalition": "blue", + "era": "Modern", + "label": "Otokar Cobra", + "shortLabel": "Cobra", + "filename": "", + "type": "Armoured Car", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Armoured car, MRAP. Wheeled.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Dog Ear radar": { + "name": "Dog Ear radar", + "coalition": "red", + "era": "Mid Cold War", + "label": "Dog Ear", + "shortLabel": "Dog Ear Radar", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 35000, + "engagementRange": 0, + "description": "9S80-1 Sborka Mobile. Tracked fire control Radar that can integrate with missile and gun systems.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "GAZ-3307": { + "name": "GAZ-3307", + "coalition": "red", + "era": "Early Cold War", + "label": "GAZ-3307", + "shortLabel": "GAZ-3307", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Civilian truck, single axle, wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "GAZ-3308": { + "name": "GAZ-3308", + "coalition": "red", + "era": "Early Cold War", + "label": "GAZ-3308", + "shortLabel": "GAZ-3308", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck, single axle, canvas covered cargo bay. wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "GAZ-66": { + "name": "GAZ-66", + "coalition": "red", + "era": "Early Cold War", + "label": "GAZ-66", + "shortLabel": "GAZ-66", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck, single axle, open cargo bay. wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "Gepard": { + "name": "Gepard", + "coalition": "blue", + "era": "Late Cold War", + "label": "Gepard", + "shortLabel": "Gepard", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "barrelHeight": 2.35, + "muzzleVelocity": 1440, + "acquisitionRange": 15000, + "engagementRange": 4000, + "description": "Tracked self-propelled anti-aircraft 35mm guns", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Grad-URAL": { + "name": "Grad-URAL", + "coalition": "red", + "era": "Mid Cold War", + "label": "Grad", + "shortLabel": "Grad", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 19000, + "description": "Military truck, single axle, open cargo bay. wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HEMTT TFFT": { + "name": "HEMTT TFFT", + "coalition": "blue", + "era": "Late Cold War", + "label": "HEMTT TFFT", + "shortLabel": "HEMTT TFFT", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck, 2 axle, firefigther. wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk SAM Battery": { + "name": "Hawk SAM Battery", + "coalition": "blue", + "era": "Early Cold War", + "label": "Hawk SAM Battery", + "shortLabel": "Hawk SAM Battery", + "range": "Medium", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": 90000, + "engagementRange": 0, + "description": "Multiple unit SAM site", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk cwar": { + "name": "Hawk cwar", + "coalition": "blue", + "era": "Early Cold War", + "label": "Hawk Continous Wave Acquisition Radar", + "shortLabel": "Hawk cwar", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 70000, + "engagementRange": 0, + "description": "Hawk site Aquisition Radar", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk ln": { + "name": "Hawk ln", + "coalition": "blue", + "era": "Late Cold War", + "label": "Hawk Launcher", + "shortLabel": "Hawk ln", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": [ + "FIN" + ] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": [ + "FIN" + ] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": [ + "SUI" + ] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": [ + "USA" + ] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": [ + "UK" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": [ + "FIN" + ] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": [ + "SUI" + ] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": [ + "SUI" + ] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": [ + "USA" + ] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": [ + "UK" + ] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": [ + "USA" + ] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": [ + "UK" + ] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": [ + "UK" + ] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": [ + "SUI" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": [ + "UK" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": [ + "ARE" + ] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": [ + "UK" + ] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": [ + "UK" + ] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": [ + "TUR", + "RUS", + "USA", + "ISR", + "NETH", + "NOR", + "RSO", + "BEL", + "GER", + "DEN", + "SPN", + "GRG", + "ABH", + "UKR", + "ITA", + "CAN", + "FRA", + "UK" + ] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": [ + "UK" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": [ + "UK" + ] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": [ + "UK" + ] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": [ + "USA" + ] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": [ + "USA" + ] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": [ + "USA" + ] + }, + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + } + }, + "acquisitionRange": 0, + "engagementRange": 45000, + "description": "Hawk site missile laucher. 3 missiles. Needs rest of site to fuction", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk pcp": { + "name": "Hawk pcp", + "coalition": "blue", + "era": "Late Cold War", + "label": "Hawk Platoon Command Post", + "shortLabel": "Hawk pcp", + "range": "Medium", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "desert": { + "name": "Desert", + "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", + "label": "Hawk Search Radar", + "shortLabel": "Hawk sr", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": [ + "FIN" + ] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": [ + "FIN" + ] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": [ + "SUI" + ] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": [ + "USA" + ] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": [ + "UK" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": [ + "FIN" + ] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": [ + "SUI" + ] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": [ + "SUI" + ] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": [ + "USA" + ] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": [ + "UK" + ] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": [ + "USA" + ] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": [ + "UK" + ] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": [ + "UK" + ] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": [ + "SUI" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": [ + "UK" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": [ + "ARE" + ] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": [ + "UK" + ] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": [ + "UK" + ] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": [ + "TUR", + "RUS", + "USA", + "ISR", + "NETH", + "NOR", + "RSO", + "BEL", + "GER", + "DEN", + "SPN", + "GRG", + "ABH", + "UKR", + "ITA", + "CAN", + "FRA", + "UK" + ] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": [ + "UK" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": [ + "UK" + ] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": [ + "UK" + ] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": [ + "USA" + ] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": [ + "USA" + ] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": [ + "USA" + ] + }, + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + } + }, + "acquisitionRange": 90000, + "engagementRange": 0, + "description": "Hawk site search Radar. Medium sized trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hawk tr": { + "name": "Hawk tr", + "coalition": "blue", + "era": "Early Cold War", + "label": "Hawk Track Radar", + "shortLabel": "Hawk tr", + "range": "Medium", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "xx337 - 92 sqn blue tail": { + "name": "XX337-92Sqn", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-341 grey": { + "name": "HW-341 Grey", + "countries": [ + "FIN" + ] + }, + "xx245 - 2009 raf hawk display": { + "name": "XX245-RAF Hawk Display 2009", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "finland hw-329 green brown": { + "name": "HW-329 Green Brown", + "countries": [ + "FIN" + ] + }, + "swiss u-1268 - byebyehawk": { + "name": "U-1268 - ByeByeHawk", + "countries": [ + "SUI" + ] + }, + "25th fts, vance afb, oklahoma (vn)": { + "name": "25th FTS, Vance AFB, Oklahoma (VN)", + "countries": [ + "USA" + ] + }, + "xx226 - 74sqn 1992-2000": { + "name": "74Sqn XX226 1992-2000", + "countries": [ + "UK" + ] + }, + "finland hw-373 ex-swiss air force": { + "name": "HW-373 Ex-Swiss Air Force", + "countries": [ + "FIN" + ] + }, + "swiss u-1252 - normal": { + "name": "U-1252 - Normal", + "countries": [ + "SUI" + ] + }, + "swiss u-1270 - wallis": { + "name": "U-1270 - Wallis", + "countries": [ + "SUI" + ] + }, + "1st rs, beale afb, california (bb)": { + "name": "1st RS, Beale AFB, California (BB)", + "countries": [ + "USA" + ] + }, + "xx100 - tfc": { + "name": "The Fighter Collection XX100", + "countries": [ + "UK" + ] + }, + "509th bs, whitman afb, missouri (wm)": { + "name": "509th BS, Whiteman AFB, Missouri (WM)", + "countries": [ + "USA" + ] + }, + "xx218 - 208sqn": { + "name": "208Sqn XX218", + "countries": [ + "UK" + ] + }, + "xx316 - fradu royal navy": { + "name": "Royal Navy XX316", + "countries": [ + "UK" + ] + }, + "usaf aggressor 269": { + "name": "USAF-AGGRESSOR-269", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "swiss u-1251 - white": { + "name": "U-1251 - White", + "countries": [ + "SUI" + ] + }, + "xx201 - 2010 raf hawk display": { + "name": "XX201-4FTS-HawkDisplay2010", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx175 - fradu royal navy": { + "name": "Royal Navy XX175", + "countries": [ + "UK" + ] + }, + "1018 - united arab emirates": { + "name": "United Arab Emirates Air Force", + "countries": [ + "ARE" + ] + }, + "xx179 - red arrows 1979-2007": { + "name": "Red Arrows 1979-2007", + "countries": [ + "UK" + ] + }, + "xx178 - 1994 raf hawk display": { + "name": "XX178-RAF Hawk Display 1994", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + }, + "xx159 - fradu royal navy anniversary": { + "name": "Royal Navy XX159", + "countries": [ + "UK" + ] + }, + "xx189 - 100sqn": { + "name": "100Sqn XX189", + "countries": [ + "TUR", + "RUS", + "USA", + "ISR", + "NETH", + "NOR", + "RSO", + "BEL", + "GER", + "DEN", + "SPN", + "GRG", + "ABH", + "UKR", + "ITA", + "CAN", + "FRA", + "UK" + ] + }, + "xx228 - veao": { + "name": "VEAO, XX228", + "countries": [ + "UK" + ] + }, + "xx316 - 74sqn 1998-2000": { + "name": "74Sqn XX316 1998-2000", + "countries": [ + "UK" + ] + }, + "xx179 - red arrows 2008-2012": { + "name": "Red Arrows 2008-2012", + "countries": [ + "UK" + ] + }, + "12th ftw, randolph afb, texas (ra)": { + "name": "12th FTW, Randolph AFB, Texas (RA)", + "countries": [ + "USA" + ] + }, + "nas meridian, mississippi seven (vt-7)": { + "name": "NAS Meridian, Mississippi Seven (VT-7)", + "countries": [ + "USA" + ] + }, + "88th fts, sheppard afb, texas (en)": { + "name": "88th FTS, Sheppard AFB, Texas (EN)", + "countries": [ + "USA" + ] + }, + "xx159 - 2004 raf hawk display": { + "name": "XX159-RAF Hawk Display 2004", + "countries": [ + "USA", + "NOR", + "BEL", + "DEN", + "SPN", + "UKR", + "TUR", + "NETH", + "ISR", + "ABH", + "FRA", + "RUS", + "INS", + "RSO", + "AUS", + "CAN", + "UK", + "GER", + "GRG", + "ITA" + ] + } + }, + "acquisitionRange": 90000, + "engagementRange": 0, + "description": "Hawk site track Radar. Medium sized trailer", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Hummer": { + "name": "Hummer", + "coalition": "blue", + "era": "Mid Cold War", + "label": "Hummer", + "shortLabel": "Hummer", + "filename": "", + "type": "Armoured Car", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military car, single axle, wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "IKARUS Bus": { + "name": "IKARUS Bus", + "coalition": "red", + "era": "Mid Cold War", + "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 + }, + "Igla manpad INS": { + "name": "Igla manpad INS", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-18 Igla manpad INS", + "shortLabel": "Igla manpad INS", + "range": "Short", + "filename": "", + "type": "MANPADS", + "enabled": true, + "liveries": { + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "9K38/SA-18 Man portable air defence. Heatseaker", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Infantry AK": { + "name": "Infantry AK", + "coalition": "red", + "era": "Mid Cold War", + "label": "Infantry AK", + "shortLabel": "Infantry AK", + "filename": "", + "type": "Infantry", + "enabled": true, + "muzzleVelocity": 900, + "barrelHeight": 0.9, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "Single infantry carrying AK-74", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "KAMAZ Truck": { + "name": "KAMAZ Truck", + "coalition": "red", + "era": "Mid Cold War", + "label": "KAMAZ Truck", + "shortLabel": "KAMAZ Truck", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "Military truck, 2 axle, wheeled", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "Kub 1S91 str": { + "name": "Kub 1S91 str", + "coalition": "red", + "era": "Mid Cold War", + "label": "SA-6 Straight flush", + "shortLabel": "Kub 1S91 str", + "range": "Medium", + "filename": "", + "type": "SAM Search/Track Radar", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 70000, + "engagementRange": 0, + "description": "SA-6/Kub search and track Radar, tracked.", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Kub 2P25 ln": { + "name": "Kub 2P25 ln", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-6 Launcher", + "shortLabel": "Kub 2P25 ln", + "range": "Medium", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "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 + }, + "LAV-25": { + "name": "LAV-25", + "coalition": "blue", + "era": "Late Cold War", + "label": "LAV-25", + "shortLabel": "LAV-25", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "aus_winter": { + "name": "AUS_Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "aus_summer": { + "name": "AUS_Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "sand": { + "name": "sand", + "countries": "All" + }, + "green": { + "name": "green", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "Infantry fighter vehicle. Wheeled. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "LAZ Bus": { + "name": "LAZ Bus", + "coalition": "red", + "era": "Early Cold War", + "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 + }, + "Leclerc": { + "name": "Leclerc", + "coalition": "blue", + "era": "Modern", + "label": "Leclerc", + "shortLabel": "Leclerc", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "Main battle tank. Tracked. Modern and heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Leopard-2": { + "name": "Leopard-2", + "coalition": "blue", + "era": "Late Cold War", + "label": "Leopard-2", + "shortLabel": "Leopard-2", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "can_spring": { + "name": "CAN_spring", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "spn_summer": { + "name": "SPN_Summer", + "countries": "All" + }, + "de_desert_winter": { + "name": "winter", + "countries": "All" + }, + "de_desert_spring": { + "name": "spring", + "countries": "All" + }, + "de_summer": { + "name": "summer", + "countries": "All" + }, + "den_autumn": { + "name": "DEN_autumn", + "countries": "All" + }, + "den_spring": { + "name": "DEN_spring", + "countries": "All" + }, + "de_winter": { + "name": "winter", + "countries": "All" + }, + "neth_summer": { + "name": "NETH_summer", + "countries": "All" + }, + "de_autumn": { + "name": "winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_autumn", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "de_desert_summer": { + "name": "DE_Desert_summer", + "countries": "All" + }, + "desert_summer": { + "name": "Desert_summer", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_winter", + "countries": "All" + }, + "den_summer": { + "name": "DEN_summer", + "countries": "All" + }, + "desert_autumn": { + "name": "Desert_autumn", + "countries": "All" + }, + "de_spring": { + "name": "spring", + "countries": "All" + }, + "den_winter": { + "name": "DEN_winter", + "countries": "All" + }, + "fin_winter": { + "name": "FIN_winter", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_spring", + "countries": "All" + }, + "desert_winter": { + "name": "Desert_winter", + "countries": "All" + }, + "can_winter": { + "name": "CAN_winter", + "countries": "All" + }, + "de_desert_autumn": { + "name": "autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "desert_spring": { + "name": "Desert_spring", + "countries": "All" + }, + "fin_spring": { + "name": "FIN_spring", + "countries": "All" + }, + "fin_summer": { + "name": "FIN_summer", + "countries": "All" + }, + "can_summer": { + "name": "CAN_summer", + "countries": "All" + }, + "can_autumn": { + "name": "CAN_autumn", + "countries": "All" + }, + "neth_winter": { + "name": "NETH_winter", + "countries": "All" + }, + "spn_winter": { + "name": "SPN_Winter", + "countries": "All" + }, + "fin_autumn": { + "name": "FIN_autumn", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "Main battle tank. Tracked. Modern and heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Leopard1A3": { + "name": "Leopard1A3", + "coalition": "blue", + "era": "Mid Cold War", + "label": "Leopard1A3", + "shortLabel": "Leopard1A3", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "Main battle tank. Tracked. Heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M 818": { + "name": "M 818", + "coalition": "blue", + "era": "Early Cold War", + "label": "M 818", + "shortLabel": "M 818", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "spring": { + "name": "spring", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "???", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "M-1 Abrams": { + "name": "M-1 Abrams", + "coalition": "blue", + "era": "Late Cold War", + "label": "M-1 Abrams", + "shortLabel": "M-1 Abrams", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "Main battle tank. Tracked. Modern and heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M-109": { + "name": "M-109", + "coalition": "blue", + "era": "Early Cold War", + "label": "M-109 Paladin", + "shortLabel": "M-109", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 22000, + "description": "???", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M-113": { + "name": "M-113", + "coalition": "blue", + "era": "Early Cold War", + "label": "M-113", + "shortLabel": "M-113", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": { + "winter": { + "name": "winter", + "countries": "All" + }, + "grc_autumn_med": { + "name": "GRC_autumn", + "countries": "All" + }, + "winter_med": { + "name": "winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_summer", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "grc_spring_med": { + "name": "GRC_spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_autumn", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_winter", + "countries": "All" + }, + "green_med": { + "name": "green", + "countries": "All" + }, + "green": { + "name": "green", + "countries": "All" + }, + "spring_med": { + "name": "spring", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_spring", + "countries": "All" + }, + "grc_winter_med": { + "name": "GRC_winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + }, + "grc_summer_med": { + "name": "GRC_summer", + "countries": "All" + }, + "autumn_med": { + "name": "autumn", + "countries": "All" + }, + "desert_med": { + "name": "Desert", + "countries": "All" + }, + "summer_med": { + "name": "summer", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Armoured personnel carrier. Tracked. Amphibious", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M-2 Bradley": { + "name": "M-2 Bradley", + "coalition": "blue", + "era": "Late Cold War", + "label": "M-2A2 Bradley", + "shortLabel": "M-2 Bradley", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "Infantry fighting vehicle. Tracked.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M-60": { + "name": "M-60", + "coalition": "blue", + "era": "Early Cold War", + "label": "M-60", + "shortLabel": "M-60", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "winter", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 8000, + "description": "Main battle tank. Tracked. Heavily armoured.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1043 HMMWV Armament": { + "name": "M1043 HMMWV Armament", + "coalition": "blue", + "era": "Late Cold War", + "label": "HMMWV M2 Browning", + "shortLabel": "HMMWV M2", + "filename": "", + "type": "Armoured Car", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Military car, single axle, wheeled", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1045 HMMWV TOW": { + "name": "M1045 HMMWV TOW", + "coalition": "red", + "era": "Late Cold War", + "label": "HMMWV TOW", + "shortLabel": "HMMWV TOW", + "filename": "", + "type": "Armoured Car", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "Military car, single axle, wheeled", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1097 Avenger": { + "name": "M1097 Avenger", + "coalition": "blue", + "era": "Modern", + "label": "M1097 Avenger", + "shortLabel": "M1097 Avenger", + "filename": "", + "type": "SAM", + "enabled": true, + "acquisitionRange": 5200, + "engagementRange": 4500, + "description": "Military car, single axle, wheeled", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1126 Stryker ICV": { + "name": "M1126 Stryker ICV", + "coalition": "blue", + "era": "Modern", + "label": "Stryker MG", + "shortLabel": "Stryker MG", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "Armoured personnel carrier. Wheeled.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1128 Stryker MGS": { + "name": "M1128 Stryker MGS", + "coalition": "blue", + "era": "Modern", + "label": "M1128 Stryker MGS", + "shortLabel": "M1128 Stryker MGS", + "filename": "", + "type": "Self Propelled Gun", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "Self propelled gun. Wheeled.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1134 Stryker ATGM": { + "name": "M1134 Stryker ATGM", + "coalition": "blue", + "era": "Modern", + "label": "Stryker ATGM", + "shortLabel": "Stryker ATGM", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "Armoured personnel carrier. Wheeled.", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M48 Chaparral": { + "name": "M48 Chaparral", + "coalition": "blue", + "era": "Late Cold War", + "label": "M48 Chaparral", + "shortLabel": "M48 Chaparral", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "usa_winter": { + "name": "USA_Winter", + "countries": "All" + }, + "isr_summer": { + "name": "ISR_Summer", + "countries": "All" + }, + "isr_spring": { + "name": "ISR_Spring", + "countries": "All" + }, + "usa_autumn": { + "name": "USA_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "isr_winter": { + "name": "ISR_Winter", + "countries": "All" + }, + "isr_autumn": { + "name": "ISR_Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "usa_summer": { + "name": "USA_Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "usa_spring": { + "name": "USA_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 10000, + "engagementRange": 8500, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M6 Linebacker": { + "name": "M6 Linebacker", + "coalition": "blue", + "era": "Late Cold War", + "label": "M6 Linebacker", + "shortLabel": "M6 Linebacker", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 8000, + "engagementRange": 4500, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M978 HEMTT Tanker": { + "name": "M978 HEMTT Tanker", + "coalition": "blue", + "era": "Mid Cold War", + "label": "M978 HEMTT Tanker", + "shortLabel": "M978 HEMTT Tanker", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "MAZ-6303": { + "name": "MAZ-6303", + "coalition": "red", + "era": "Mid Cold War", + "label": "MAZ-6303", + "shortLabel": "MAZ-6303", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "winter", + "countries": "All" + }, + "spring": { + "name": "spring", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "MCV-80": { + "name": "MCV-80", + "coalition": "blue", + "era": "Late Cold War", + "label": "Warrior Infantry Fighting Vehicle", + "shortLabel": "Warrior", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "MLRS": { + "name": "MLRS", + "coalition": "blue", + "era": "Late Cold War", + "label": "M270", + "shortLabel": "M270", + "filename": "", + "type": "Rocket Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 32000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "MTLB": { + "name": "MTLB", + "coalition": "red", + "era": "Mid Cold War", + "label": "MT-LB", + "shortLabel": "MT-LB", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Marder": { + "name": "Marder", + "coalition": "blue", + "era": "Late Cold War", + "label": "Marder", + "shortLabel": "Marder", + "filename": "", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 1500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Osa 9A33 ln": { + "name": "Osa 9A33 ln", + "coalition": "red", + "era": "Mid Cold War", + "label": "SA-8 Launcher", + "shortLabel": "Osa 9A33 ln", + "range": "Short", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 30000, + "engagementRange": 10300, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Paratrooper AKS-74": { + "name": "Paratrooper AKS-74", + "coalition": "red", + "era": "Modern", + "label": "Paratrooper AKS-74", + "shortLabel": "Paratrooper AKS-74", + "filename": "", + "type": "Infantry", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Paratrooper RPG-16": { + "name": "Paratrooper RPG-16", + "coalition": "red", + "era": "Modern", + "label": "Paratrooper RPG-16", + "shortLabel": "Paratrooper RPG-16", + "filename": "", + "type": "Infantry", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Patriot AMG": { + "name": "Patriot AMG", + "coalition": "blue", + "era": "Modern", + "label": "Patriot Antenna Mast Group", + "shortLabel": "Patriot AMG", + "range": "Long", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot ECS": { + "name": "Patriot ECS", + "coalition": "blue", + "era": "Modern", + "label": "Patriot Engagement Control Station", + "shortLabel": "Patriot ECS", + "range": "Long", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot EPP": { + "name": "Patriot EPP", + "coalition": "blue", + "era": "Late Cold War", + "label": "Patriot Electric Power Plant", + "shortLabel": "Patriot EPP", + "range": "Long", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot cp": { + "name": "Patriot cp", + "coalition": "blue", + "era": "Late Cold War", + "label": "Patriot Command Post", + "shortLabel": "Patriot cp", + "range": "Long", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot ln": { + "name": "Patriot ln", + "coalition": "blue", + "era": "Late Cold War", + "label": "Patriot Launcher", + "shortLabel": "Patriot ln", + "range": "Long", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 100000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot site": { + "name": "Patriot site", + "coalition": "blue", + "era": "Late Cold War", + "label": "Patriot site", + "shortLabel": "Patriot site", + "range": "Long", + "filename": "", + "type": "SAM Site", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Patriot str": { + "name": "Patriot str", + "coalition": "blue", + "era": "Late Cold War", + "label": "Patriot Search/Track Radar", + "shortLabel": "Patriot str", + "range": "Medium", + "filename": "", + "type": "SAM Search/Track Radar", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Predator GCS": { + "name": "Predator GCS", + "coalition": "blue", + "era": "Late Cold War", + "label": "Predator GCS", + "shortLabel": "Predator GCS", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "usaf standard": { + "name": "USAF Standard", + "countries": [ + "USA" + ] + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Predator TrojanSpirit": { + "name": "Predator TrojanSpirit", + "coalition": "blue", + "era": "Late Cold War", + "label": "Predator TrojanSpirit", + "shortLabel": "Predator TrojanSpirit", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "RLS_19J6": { + "name": "RLS_19J6", + "coalition": "Red", + "era": "Mid Cold War", + "label": "SA-5 Thin Shield", + "shortLabel": "RLS 19J6", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "spring": { + "name": "spring", + "countries": "All" + }, + "winter": { + "name": "winter", + "countries": "All" + }, + "autumn": { + "name": "autumn", + "countries": "All" + }, + "summer": { + "name": "summer", + "countries": "All" + } + }, + "acquisitionRange": 150000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "RPC_5N62V": { + "name": "RPC_5N62V", + "coalition": "Red", + "era": "Mid Cold War", + "label": "SA-5 Square Pair", + "shortLabel": "RPC 5N62V", + "range": "Long", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "desert_spring": { + "name": "S-200_Radar_Desert_Spring", + "countries": "All" + }, + "cam_autumn": { + "name": "S-200_Radar_Cam_Autumn", + "countries": "All" + }, + "cam_spring": { + "name": "S-200_Radar_Cam_Spring", + "countries": "All" + }, + "green_summer": { + "name": "S-200_Radar_Green_Summer", + "countries": "All" + }, + "green_winter": { + "name": "S-200_Radar_Green_Winter", + "countries": "All" + }, + "cam_summer": { + "name": "S-200_Radar_Cam_Summer", + "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" + }, + "green_spring": { + "name": "S-200_Radar_Green_Spring", + "countries": "All" + }, + "syria_spring": { + "name": "S-200_Radar_Syria_Spring", + "countries": "All" + }, + "desert_summer": { + "name": "S-200_Radar_Desert_Summer", + "countries": "All" + }, + "green_autumn": { + "name": "S-200_Radar_Green_Autumn", + "countries": "All" + }, + "desert_autumn": { + "name": "S-200_Radar_Desert_Autumn", + "countries": "All" + }, + "cam_winter": { + "name": "S-200_Radar_Cam_Winter", + "countries": "All" + } + }, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Roland ADS": { + "name": "Roland ADS", + "coalition": "blue", + "era": "Late Cold War", + "label": "Roland ADS", + "shortLabel": "Roland ADS", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 12000, + "engagementRange": 8000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Roland Radar": { + "name": "Roland Radar", + "coalition": "blue", + "era": "Mid Cold War", + "label": "Roland Search Radar", + "shortLabel": "Roland Radar", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 35000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": "no", + "canRearm": "no" + }, + "S-200_Launcher": { + "name": "S-200_Launcher", + "coalition": "Red", + "era": "Mid Cold War", + "label": "SA-5 Launcher", + "shortLabel": "S-200 Launcher", + "range": "Long", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "desert_spring": { + "name": "S-200_Launcher_Desert_Spring", + "countries": "All" + }, + "cam_autumn": { + "name": "S-200_Cam_Autumn", + "countries": "All" + }, + "cam_spring": { + "name": "S-200_Launcher_Cam_Spring", + "countries": "All" + }, + "green_summer": { + "name": "S-200_Launcher_Green_Summer", + "countries": "All" + }, + "green_winter": { + "name": "S-200_Launcher_Green_Winter", + "countries": "All" + }, + "cam_summer": { + "name": "S-200_Launcher_Cam_Summer", + "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" + }, + "green_spring": { + "name": "S-200_Launcher_Green_Spring", + "countries": "All" + }, + "syria_spring": { + "name": "S-200_Launcher_Syria_Spring", + "countries": "All" + }, + "desert_summer": { + "name": "S-200_Launcher_Desert_Summer", + "countries": "All" + }, + "green_autumn": { + "name": "S-200_Launcher_Green_Autumn", + "countries": "All" + }, + "desert_autumn": { + "name": "S-200_Launcher_Desert_Autumn", + "countries": "All" + }, + "cam_winter": { + "name": "S-200_Launcher_Cam_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 255000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 40B6M tr": { + "name": "S-300PS 40B6M tr", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 Tin Shield", + "shortLabel": "S-300PS 40B6M tr", + "range": "Long", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 40B6MD sr": { + "name": "S-300PS 40B6MD sr", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 Clam Shell", + "shortLabel": "S-300PS 40B6MD sr", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 60000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 54K6 cp": { + "name": "S-300PS 54K6 cp", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 Command Post", + "shortLabel": "S-300PS 54K6 cp", + "range": "Long", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "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", + "label": "SA-10 Launcher (5P85C)", + "shortLabel": "S-300PS 5P85C ln", + "range": "Long", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 120000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 5P85D ln": { + "name": "S-300PS 5P85D ln", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 Launcher (5P85D)", + "shortLabel": "S-300PS 5P85D ln", + "range": "Long", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 120000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S-300PS 64H6E sr": { + "name": "S-300PS 64H6E sr", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 Big Bird", + "shortLabel": "S-300PS 64H6E sr", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-10 SAM Battery": { + "name": "SA-10 SAM Battery", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-10 SAM Battery", + "shortLabel": "SA-10 SAM Battery", + "range": "Long", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": "", + "engagementRange": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-11 Buk CC 9S470M1": { + "name": "SA-11 Buk CC 9S470M1", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-11 Command Post", + "shortLabel": "SA-11 Buk CC 9S470M1", + "range": "Medium", + "filename": "", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "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", + "label": "SA-11 Launcher", + "shortLabel": "SA-11 Buk LN 9A310M1", + "range": "Medium", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 50000, + "engagementRange": 35000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-11 Buk SR 9S18M1": { + "name": "SA-11 Buk SR 9S18M1", + "coalition": "red", + "era": "Mid Cold War", + "label": "SA-11 Snown Drift", + "shortLabel": "SA-11 Buk SR 9S18M1", + "range": "Long", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "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", + "label": "SA-11 SAM Battery", + "shortLabel": "SA-11 SAM Battery", + "range": "Medium", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": "", + "engagementRange": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-18 Igla manpad": { + "name": "SA-18 Igla manpad", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-18 Igla manpad", + "shortLabel": "SA-18 Igla manpad", + "range": "Short", + "filename": "", + "type": "MANPADS", + "enabled": true, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-18 Igla-S manpad": { + "name": "SA-18 Igla-S manpad", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-18 Igla-S manpad", + "shortLabel": "SA-18 Igla-S manpad", + "range": "Short", + "filename": "", + "type": "MANPADS", + "enabled": true, + "acquisitionRange": 5000, + "engagementRange": 5200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-2 SAM Battery": { + "name": "SA-2 SAM Battery", + "coalition": "red", + "era": "Early Cold War", + "label": "SA-2 SAM Battery", + "shortLabel": "SA-2 SAM Battery", + "range": "Long", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": "", + "engagementRange": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-3 SAM Battery": { + "name": "SA-3 SAM Battery", + "coalition": "red", + "era": "Early Cold War", + "label": "SA-3 SAM Battery", + "shortLabel": "SA-3 SAM Battery", + "range": "Medium", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": "", + "engagementRange": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-5 SAM Battery": { + "name": "SA-5 SAM Battery", + "coalition": "Red", + "era": "Mid Cold War", + "label": "SA-5 SAM Battery", + "shortLabel": "SA-5 SAM Battery", + "range": "Long", + "filename": "", + "type": "SAM Site", + "enabled": true, + "acquisitionRange": "", + "engagementRange": "", + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-6 SAM Battery": { + "name": "SA-6 SAM Battery", + "coalition": "red", + "era": "Mid Cold War", + "label": "SA-6 SAM Battery", + "shortLabel": "SA-6 SAM Battery", + "range": "Medium", + "filename": "", + "type": "SAM Site", + "enabled": true, + "description": "2K12 Kub. Tracked self propelled straight fush Radars, and TELs. 3 missiles per TEL.", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "SAU 2-C9": { + "name": "SAU 2-C9", + "coalition": "red", + "era": "Mid Cold War", + "label": "SAU Nona", + "shortLabel": "SAU Nona", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 7000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SAU Akatsia": { + "name": "SAU Akatsia", + "coalition": "red", + "era": "Mid Cold War", + "label": "SAU Akatsia", + "shortLabel": "SAU Akatsia", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 17000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SAU Gvozdika": { + "name": "SAU Gvozdika", + "coalition": "red", + "era": "Mid Cold War", + "label": "SAU Gvozdika", + "shortLabel": "SAU Gvozdika", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SAU Msta": { + "name": "SAU Msta", + "coalition": "red", + "era": "Late Cold War", + "label": "SAU Msta", + "shortLabel": "SAU Msta", + "filename": "", + "type": "Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 23500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SKP-11": { + "name": "SKP-11", + "coalition": "red", + "era": "Early Cold War", + "label": "SKP-11", + "shortLabel": "SKP-11", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SNR_75V": { + "name": "SNR_75V", + "coalition": "Red", + "era": "Early Cold War", + "label": "SA-2 Fan Song", + "shortLabel": "SNR 75V", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S_75M_Volhov": { + "name": "S_75M_Volhov", + "coalition": "Red", + "era": "Early Cold War", + "label": "SA-2 Launcher", + "shortLabel": "S75M Volhov", + "filename": "", + "type": "SAM Launcher", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 43000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Sandbox": { + "name": "Sandbox", + "coalition": "", + "era": "", + "label": "Sandbox", + "shortLabel": "Sandbox", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Smerch": { + "name": "Smerch", + "coalition": "red", + "era": "Late Cold War", + "label": "Smerch", + "shortLabel": "Smerch", + "filename": "", + "type": "Rocket Artillery", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 70000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier AK": { + "name": "Soldier AK", + "coalition": "red", + "era": "Early Cold War", + "label": "Soldier AK", + "shortLabel": "Soldier AK", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "muzzleVelocity": 900, + "barrelHeight": 0.9, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier M249": { + "name": "Soldier M249", + "coalition": "blue", + "era": "Late Cold War", + "label": "Soldier M249", + "shortLabel": "Soldier M249", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 700, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier M4 GRG": { + "name": "Soldier M4 GRG", + "coalition": "blue", + "era": "Mid Cold War", + "label": "Soldier M4 GRG", + "shortLabel": "Soldier M4 GRG", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier M4": { + "name": "Soldier M4", + "coalition": "blue", + "era": "Mid Cold War", + "label": "Soldier M4", + "shortLabel": "Soldier M4", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier RPG": { + "name": "Soldier RPG", + "coalition": "red", + "era": "Mid Cold War", + "label": "Soldier RPG", + "shortLabel": "Soldier RPG", + "filename": "", + "type": "Infantry", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Stinger comm dsr": { + "name": "Stinger comm dsr", + "coalition": "red", + "era": "Late Cold War", + "label": "Stinger comm dsr", + "shortLabel": "Stinger comm dsr", + "range": "Short", + "filename": "", + "type": "MANPADS", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "multicam": { + "name": "multicam", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Stinger comm": { + "name": "Stinger comm", + "coalition": "blue", + "era": "Late Cold War", + "label": "Stinger comm", + "shortLabel": "Stinger comm", + "range": "Short", + "filename": "", + "type": "MANPADS", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "multicam": { + "name": "multicam", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Strela-1 9P31": { + "name": "Strela-1 9P31", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-9 Strela-1 9P31", + "shortLabel": "Strela-1 9P31", + "range": "Short", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 4200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Strela-10M3": { + "name": "Strela-10M3", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-13 Strela-10M3", + "shortLabel": "Strela-10M3", + "range": "Short", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 8000, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Suidae": { + "name": "Suidae", + "coalition": "", + "era": "Modern", + "label": "Suidae", + "shortLabel": "Suidae", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "T-55": { + "name": "T-55", + "coalition": "red", + "era": "Early Cold War", + "label": "T-55", + "shortLabel": "T-55", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "T-72B": { + "name": "T-72B", + "coalition": "red", + "era": "Mid Cold War", + "label": "T-72B", + "shortLabel": "T-72B", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "T-80UD": { + "name": "T-80UD", + "coalition": "red", + "era": "Mid Cold War", + "label": "T-80UD", + "shortLabel": "T-80UD", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "iran - 01": { + "name": "Iran - 01", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "iran - 02": { + "name": "Iran - 02", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "T-90": { + "name": "T-90", + "coalition": "red", + "era": "Late Cold War", + "label": "T-90", + "shortLabel": "T-90", + "filename": "", + "type": "Tank", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "TPZ": { + "name": "TPZ", + "coalition": "blue", + "era": "Late Cold War", + "label": "TPz Fuchs", + "shortLabel": "TPz Fuchs", + "filename": "", + "type": "Armoured Personnel Carrier", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 1000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Tigr_233036": { + "name": "Tigr_233036", + "coalition": "red", + "era": "Late Cold War", + "label": "Tigr_233036", + "shortLabel": "Tigr_233036", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Tor 9A331": { + "name": "Tor 9A331", + "coalition": "red", + "era": "Late Cold War", + "label": "SA-15 Tor 9A331", + "shortLabel": "Tor 9A331", + "range": "Medium", + "filename": "", + "type": "SAM", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 25000, + "engagementRange": 12000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Trolley bus": { + "name": "Trolley bus", + "coalition": "blue", + "era": "Late Cold War", + "label": "Trolley bus", + "shortLabel": "Trolley bus", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "UAZ-469": { + "name": "UAZ-469", + "coalition": "red", + "era": "Mid Cold War", + "label": "UAZ-469", + "shortLabel": "UAZ-469", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "red_spring": { + "name": "RED_Spring", + "countries": "All" + }, + "red_summer": { + "name": "RED_Summer", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "orange_spring": { + "name": "ORANGE_Spring", + "countries": "All" + }, + "orange_autumn": { + "name": "ORANGE_Autumn", + "countries": "All" + }, + "red_autumn": { + "name": "RED_Autumn", + "countries": "All" + }, + "red_winter": { + "name": "RED_Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "orange_summer": { + "name": "ORANGE_Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "orange_winter": { + "name": "ORANGE_Winter", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Uragan_BM-27": { + "name": "Uragan_BM-27", + "coalition": "red", + "era": "Late Cold War", + "label": "Uragan", + "shortLabel": "Uragan", + "filename": "", + "type": "Rocket Artillery", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 35800, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Ural ATsP-6": { + "name": "Ural ATsP-6", + "coalition": "red", + "era": "Mid Cold War", + "label": "Ural ATsP-6", + "shortLabel": "Ural ATsP-6", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Ural-375 PBU": { + "name": "Ural-375 PBU", + "coalition": "red", + "era": "Mid Cold War", + "label": "Ural-375 PBU", + "shortLabel": "Ural-375 PBU", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Ural-375 ZU-23 Insurgent": { + "name": "Ural-375 ZU-23 Insurgent", + "coalition": "red", + "era": "Early Cold War", + "label": "Ural-375 ZU-23 Insurgent", + "shortLabel": "Ural-375 ZU-23 Insurgent", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Ural-375 ZU-23": { + "name": "Ural-375 ZU-23", + "coalition": "red", + "era": "Early Cold War", + "label": "Ural-375 ZU-23", + "shortLabel": "Ural-375 ZU-23", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Ural-375": { + "name": "Ural-375", + "coalition": "red", + "era": "Mid Cold War", + "label": "Ural-375", + "shortLabel": "Ural-375", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "Ural-4320 APA-5D": { + "name": "Ural-4320 APA-5D", + "coalition": "red", + "era": "Early Cold War", + "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": "Lightly armoured", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "Ural-4320-31": { + "name": "Ural-4320-31", + "coalition": "red", + "era": "Late Cold War", + "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": "", + "canTargetPoint": false, + "canRearm": true + }, + "Ural-4320T": { + "name": "Ural-4320T", + "coalition": "red", + "era": "Late Cold War", + "label": "Ural-4320T", + "shortLabel": "Ural-4320T", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "abilities": "", + "description": "", + "canTargetPoint": false, + "canRearm": true + }, + "VAZ Car": { + "name": "VAZ Car", + "coalition": "red", + "era": "Early Cold War", + "label": "VAZ Car", + "shortLabel": "VAZ Car", + "filename": "", + "type": "Unarmed", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Vulcan": { + "name": "Vulcan", + "coalition": "blue", + "era": "Late Cold War", + "label": "Vulcan", + "shortLabel": "Vulcan", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "usa_winter": { + "name": "USA_Winter", + "countries": "All" + }, + "isr_summer": { + "name": "ISR_Summer", + "countries": "All" + }, + "isr_spring": { + "name": "ISR_Spring", + "countries": "All" + }, + "usa_autumn": { + "name": "USA_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "isr_winter": { + "name": "ISR_Winter", + "countries": "All" + }, + "isr_autumn": { + "name": "ISR_Autumn", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "usa_summer": { + "name": "USA_Summer", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "usa_spring": { + "name": "USA_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZIL-131 KUNG": { + "name": "ZIL-131 KUNG", + "coalition": "red", + "era": "Early Cold War", + "label": "ZIL-131 KUNG", + "shortLabel": "ZIL-131 KUNG", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZIL-4331": { + "name": "ZIL-4331", + "coalition": "red", + "era": "Early Cold War", + "label": "ZIL-4331", + "shortLabel": "ZIL-4331", + "filename": "", + "type": "Unarmed", + "enabled": true, + "liveries": { + "winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZSU-23-4 Shilka": { + "name": "ZSU-23-4 Shilka", + "coalition": "red", + "era": "Late Cold War", + "label": "ZSU-23-4 Shilka", + "shortLabel": "ZSU-23-4 Shilka", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "ukr_summer": { + "name": "UKR_Summer", + "countries": "All" + }, + "ukr_spring": { + "name": "UKR_Spring", + "countries": "All" + }, + "winter": { + "name": "Winter", + "countries": "All" + }, + "ukr_autumn": { + "name": "UKR_Autumn", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "grg_summer": { + "name": "GRG_Summer", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "grg_autumn": { + "name": "GRG_Autumn", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "ukr_winter": { + "name": "UKR_Winter", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "grg_winter": { + "name": "GRG_Winter", + "countries": "All" + }, + "grg_spring": { + "name": "GRG_Spring", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZU-23 Closed Insurgent": { + "name": "ZU-23 Closed Insurgent", + "coalition": "red", + "era": "Early Cold War", + "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": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZU-23 Emplacement Closed": { + "name": "ZU-23 Emplacement Closed", + "coalition": "red", + "era": "Early Cold War", + "label": "ZU-23 Emplacement Closed", + "shortLabel": "ZU-23 Emplacement Closed", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZU-23 Emplacement": { + "name": "ZU-23 Emplacement", + "coalition": "red", + "era": "Early Cold War", + "label": "ZU-23 Emplacement", + "shortLabel": "ZU-23 Emplacement", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "grc_summer": { + "name": "GRC_Summer", + "countries": "All" + }, + "grc_spring": { + "name": "GRC_Spring", + "countries": "All" + }, + "grc_autumn": { + "name": "GRC_Autumn", + "countries": "All" + }, + "grc_winter": { + "name": "GRC_Winter", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZU-23 Insurgent": { + "name": "ZU-23 Insurgent", + "coalition": "red", + "era": "Early Cold War", + "label": "ZU-23 Insurgent", + "shortLabel": "ZU-23 Insurgent", + "filename": "", + "type": "AAA", + "enabled": true, + "liveries": { + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZiL-131 APA-80": { + "name": "ZiL-131 APA-80", + "coalition": "red", + "era": "Early Cold War", + "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": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "house1arm": { + "name": "house1arm", + "coalition": "", + "era": "", + "label": "house1arm", + "shortLabel": "house1arm", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "house2arm": { + "name": "house2arm", + "coalition": "", + "era": "", + "label": "house2arm", + "shortLabel": "house2arm", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "houseA_arm": { + "name": "houseA_arm", + "coalition": "", + "era": "", + "label": "houseA_arm", + "shortLabel": "houseA_arm", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "outpost": { + "name": "outpost", + "coalition": "", + "era": "", + "label": "outpost", + "shortLabel": "outpost", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "outpost_road": { + "name": "outpost_road", + "coalition": "", + "era": "", + "label": "outpost_road", + "shortLabel": "outpost_road", + "filename": "", + "type": "Structure", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "p-19 s-125 sr": { + "name": "p-19 s-125 sr", + "coalition": "red", + "era": "Mid Cold War", + "label": "SA-3 Flat Face B", + "shortLabel": "Flat Face B", + "filename": "", + "type": "SAM Search Radar", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "snr s-125 tr": { + "name": "snr s-125 tr", + "coalition": "red", + "era": "Early Cold War", + "label": "SA-3 Low Blow", + "shortLabel": "snr s-125 tr", + "range": "Medium", + "filename": "", + "type": "SAM Track Radar", + "enabled": true, + "liveries": { + "winter": { + "name": "Winter", + "countries": "All" + }, + "spring": { + "name": "Spring", + "countries": "All" + }, + "rus_summer": { + "name": "RUS_Summer", + "countries": "All" + }, + "rus_winter": { + "name": "RUS_Winter", + "countries": "All" + }, + "summer": { + "name": "Summer", + "countries": "All" + }, + "rus_autumn": { + "name": "RUS_Autumn", + "countries": "All" + }, + "rus_spring": { + "name": "RUS_Spring", + "countries": "All" + }, + "autumn": { + "name": "Autumn", + "countries": "All" + }, + "desert": { + "name": "Desert", + "countries": "All" + } + }, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SpGH_Dana": { + "name": "SpGH_Dana", + "coalition": "", + "era": "", + "label": "SPH Dana vz77 152mm", + "shortLabel": "SPH Dana vz77 152mm", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 18700, + "description": "", + "abilities": "" + }, + "Grad_FDDM": { + "name": "Grad_FDDM", + "coalition": "", + "era": "", + "label": "Grad MRL FDDM (FC)", + "shortLabel": "Grad MRL FDDM (FC)", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Infantry AK Ins": { + "name": "Infantry AK Ins", + "coalition": "", + "era": "", + "label": "Insurgent AK-74", + "shortLabel": "Insurgent AK-74", + "type": "Infantry", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "MLRS FDDM": { + "name": "MLRS FDDM", + "coalition": "", + "era": "", + "label": "MRLS FDDM (FC)", + "shortLabel": "MRLS FDDM (FC)", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Infantry AK ver2": { + "name": "Infantry AK ver2", + "coalition": "", + "era": "", + "label": "Infantry AK-74 Rus ver2", + "shortLabel": "Infantry AK-74 Rus ver2", + "type": "Infantry", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Infantry AK ver3": { + "name": "Infantry AK ver3", + "coalition": "", + "era": "", + "label": "Infantry AK-74 Rus ver3", + "shortLabel": "Infantry AK-74 Rus ver3", + "type": "Infantry", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Smerch_HE": { + "name": "Smerch_HE", + "coalition": "", + "era": "", + "label": "MLRS 9A52 Smerch HE 300mm", + "shortLabel": "MLRS 9A52 Smerch HE 300mm", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 70000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Soldier stinger": { + "name": "Soldier stinger", + "coalition": "", + "era": "", + "label": "MANPADS Stinger", + "shortLabel": "MANPADS Stinger", + "type": "MANPADS", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 4500, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-18 Igla comm": { + "name": "SA-18 Igla comm", + "coalition": "", + "era": "", + "label": "MANPADS SA-18 Igla \"Grouse\" C2", + "shortLabel": "MANPADS SA-18 Igla \"Grouse\" C2", + "type": "MANPADS", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA-18 Igla-S comm": { + "name": "SA-18 Igla-S comm", + "coalition": "", + "era": "", + "label": "MANPADS SA-18 Igla-S \"Grouse\" C2", + "shortLabel": "MANPADS SA-18 Igla-S \"Grouse\" C2", + "type": "MANPADS", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "TACAN_beacon": { + "name": "TACAN_beacon", + "coalition": "", + "era": "", + "label": "Beacon TACAN Portable TTS 3030", + "shortLabel": "Beacon TACAN Portable TTS 3030", + "type": "Structure", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Merkava_Mk4": { + "name": "Merkava_Mk4", + "coalition": "", + "era": "", + "label": "Tank Merkava IV", + "shortLabel": "Tank Merkava IV", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "LiAZ Bus": { + "name": "LiAZ Bus", + "coalition": "", + "era": "", + "label": "Bus LiAZ-677", + "shortLabel": "Bus LiAZ-677", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "KrAZ6322": { + "name": "KrAZ6322", + "coalition": "", + "era": "", + "label": "Truck KrAZ-6322 6x6", + "shortLabel": "Truck KrAZ-6322 6x6", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "JTAC": { + "name": "JTAC", + "coalition": "", + "era": "", + "label": "JTAC", + "shortLabel": "JTAC", + "type": "Infantry", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Infantry Animated": { + "name": "Infantry Animated", + "coalition": "", + "era": "", + "label": "Infantry", + "shortLabel": "Infantry", + "type": "Infantry", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Electric locomotive": { + "name": "Electric locomotive", + "coalition": "", + "era": "", + "label": "Loco VL80 Electric", + "shortLabel": "Loco VL80 Electric", + "type": "Locomotive", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Locomotive": { + "name": "Locomotive", + "coalition": "", + "era": "", + "label": "Loco CHME3T", + "shortLabel": "Loco CHME3T", + "type": "Locomotive", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach cargo": { + "name": "Coach cargo", + "coalition": "", + "era": "", + "label": "Freight Van", + "shortLabel": "Freight Van", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach cargo open": { + "name": "Coach cargo open", + "coalition": "", + "era": "", + "label": "Open Wagon", + "shortLabel": "Open Wagon", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach a tank blue": { + "name": "Coach a tank blue", + "coalition": "", + "era": "", + "label": "Tank Car blue", + "shortLabel": "Tank Car blue", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach a tank yellow": { + "name": "Coach a tank yellow", + "coalition": "", + "era": "", + "label": "Tank Car yellow", + "shortLabel": "Tank Car yellow", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach a passenger": { + "name": "Coach a passenger", + "coalition": "", + "era": "", + "label": "Passenger Car", + "shortLabel": "Passenger Car", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Coach a platform": { + "name": "Coach a platform", + "coalition": "", + "era": "", + "label": "Coach Platform", + "shortLabel": "Coach Platform", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "tacr2a": { + "name": "tacr2a", + "coalition": "", + "era": "", + "label": "RAF Rescue", + "shortLabel": "RAF Rescue", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "LARC-V": { + "name": "LARC-V", + "coalition": "", + "era": "", + "label": "LARC-V", + "shortLabel": "LARC-V", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 500, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "KS-19": { + "name": "KS-19", + "coalition": "", + "era": "", + "label": "AAA KS-19 100mm", + "shortLabel": "AAA KS-19 100mm", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 20000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SON_9": { + "name": "SON_9", + "coalition": "", + "era": "", + "label": "AAA Fire Can SON-9", + "shortLabel": "AAA Fire Can SON-9", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 55000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Scud_B": { + "name": "Scud_B", + "coalition": "", + "era": "", + "label": "SSM SS-1C Scud-B", + "shortLabel": "SSM SS-1C Scud-B", + "type": "Missile system", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 320000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HL_DSHK": { + "name": "HL_DSHK", + "coalition": "", + "era": "", + "label": "Scout HL with DSHK 12.7mm", + "shortLabel": "Scout HL with DSHK 12.7mm", + "type": "Armoured Car", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HL_KORD": { + "name": "HL_KORD", + "coalition": "", + "era": "", + "label": "Scout HL with KORD 12.7mm", + "shortLabel": "Scout HL with KORD 12.7mm", + "type": "Armoured Car", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "tt_DSHK": { + "name": "tt_DSHK", + "coalition": "", + "era": "", + "label": "Scout LC with DSHK 12.7mm", + "shortLabel": "Scout LC with DSHK 12.7mm", + "type": "Armoured Car", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "tt_KORD": { + "name": "tt_KORD", + "coalition": "", + "era": "", + "label": "Scout LC with KORD 12.7mm", + "shortLabel": "Scout LC with KORD 12.7mm", + "type": "Armoured Car", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HL_ZU-23": { + "name": "HL_ZU-23", + "coalition": "", + "era": "", + "label": "SPAAA HL with ZU-23", + "shortLabel": "SPAAA HL with ZU-23", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "tt_ZU-23": { + "name": "tt_ZU-23", + "coalition": "", + "era": "", + "label": "SPAAA LC with ZU-23", + "shortLabel": "SPAAA LC with ZU-23", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HL_B8M1": { + "name": "HL_B8M1", + "coalition": "", + "era": "", + "label": "MLRS HL with B8M1 80mm", + "shortLabel": "MLRS HL with B8M1 80mm", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "tt_B8M1": { + "name": "tt_B8M1", + "coalition": "", + "era": "", + "label": "MLRS LC with B8M1 80mm", + "shortLabel": "MLRS LC with B8M1 80mm", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "NASAMS_Radar_MPQ64F1": { + "name": "NASAMS_Radar_MPQ64F1", + "coalition": "", + "era": "", + "label": "SAM NASAMS SR MPQ64F1", + "shortLabel": "SAM NASAMS SR MPQ64F1", + "type": "SAM Search Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 50000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": "no", + "canRearm": "no" + }, + "NASAMS_Command_Post": { + "name": "NASAMS_Command_Post", + "coalition": "", + "era": "", + "label": "SAM NASAMS C2", + "shortLabel": "SAM NASAMS C2", + "type": "SAM Support vehicle", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "NASAMS_LN_B": { + "name": "NASAMS_LN_B", + "coalition": "", + "era": "", + "label": "SAM NASAMS LN AIM-120B", + "shortLabel": "SAM NASAMS LN AIM-120B", + "type": "SAM Launcher", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "NASAMS_LN_C": { + "name": "NASAMS_LN_C", + "coalition": "", + "era": "", + "label": "SAM NASAMS LN AIM-120C", + "shortLabel": "SAM NASAMS LN AIM-120C", + "type": "SAM Launcher", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M4_Sherman": { + "name": "M4_Sherman", + "coalition": "", + "era": "", + "label": "Tk M4 Sherman", + "shortLabel": "Tk M4 Sherman", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M2A1_halftrack": { + "name": "M2A1_halftrack", + "coalition": "", + "era": "", + "label": "Armoured Personnel Carrier M2A1 Halftrack", + "shortLabel": "Armoured Personnel Carrier M2A1 Halftrack", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "FPS-117 Dome": { + "name": "FPS-117 Dome", + "coalition": "", + "era": "", + "label": "EWR AN/FPS-117 Radar (domed)", + "shortLabel": "EWR AN/FPS-117 Radar (domed)", + "type": "EW Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 400000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "FPS-117 ECS": { + "name": "FPS-117 ECS", + "coalition": "", + "era": "", + "label": "EWR AN/FPS-117 ECS", + "shortLabel": "EWR AN/FPS-117 ECS", + "type": "EW Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "FPS-117": { + "name": "FPS-117", + "coalition": "", + "era": "", + "label": "EW Radar", + "shortLabel": "EWR AN/FPS-117 Radar", + "type": "EW Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 463000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "RD_75": { + "name": "RD_75", + "coalition": "", + "era": "", + "label": "SAM SA-2 S-75 RD-75 Amazonka RF", + "shortLabel": "SAM SA-2 S-75 RD-75 Amazonka RF", + "type": "EW Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 100000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZSU_57_2": { + "name": "ZSU_57_2", + "coalition": "", + "era": "", + "label": "SPAAA ZSU-57-2", + "shortLabel": "SPAAA ZSU-57-2", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 7000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "S-60_Type59_Artillery": { + "name": "S-60_Type59_Artillery", + "coalition": "", + "era": "", + "label": "AAA S-60 57mm", + "shortLabel": "AAA S-60 57mm", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "generator_5i57": { + "name": "generator_5i57", + "coalition": "", + "era": "", + "label": "Diesel Power Station 5I57A", + "shortLabel": "Diesel Power Station 5I57A", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "T-72B3": { + "name": "T-72B3", + "coalition": "", + "era": "", + "label": "Tank T-72B3", + "shortLabel": "Tank T-72B3", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "PT_76": { + "name": "PT_76", + "coalition": "", + "era": "", + "label": "LT PT-76", + "shortLabel": "LT PT-76", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "BTR-82A": { + "name": "BTR-82A", + "coalition": "", + "era": "", + "label": "Infantry Fighting Vehicle BTR-82A", + "shortLabel": "Infantry Fighting Vehicle BTR-82A", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ATZ-5": { + "name": "ATZ-5", + "coalition": "", + "era": "", + "label": "Refueler ATZ-5", + "shortLabel": "Refueler ATZ-5", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "AA8": { + "name": "AA8", + "coalition": "", + "era": "", + "label": "Firefighter Vehicle AA-7.2/60", + "shortLabel": "Firefighter Vehicle AA-7.2/60", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "TZ-22_KrAZ": { + "name": "TZ-22_KrAZ", + "coalition": "", + "era": "", + "label": "Refueler TZ-22 Tractor (KrAZ-258B1)", + "shortLabel": "Refueler TZ-22 Tractor (KrAZ-258B1)", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ATZ-60_Maz": { + "name": "ATZ-60_Maz", + "coalition": "", + "era": "", + "label": "Refueler ATZ-60 Tractor (MAZ-7410)", + "shortLabel": "Refueler ATZ-60 Tractor (MAZ-7410)", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZIL-135": { + "name": "ZIL-135", + "coalition": "", + "era": "", + "label": "Truck ZIL-135", + "shortLabel": "Truck ZIL-135", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "S_75_ZIL": { + "name": "S_75_ZIL", + "coalition": "", + "era": "", + "label": "S-75 Tractor (ZIL-131)", + "shortLabel": "S-75 Tractor (ZIL-131)", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "rapier_fsa_launcher": { + "name": "rapier_fsa_launcher", + "coalition": "", + "era": "", + "label": "SAM Rapier LN", + "shortLabel": "SAM Rapier LN", + "type": "SAM Launcher", + "enabled": true, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 6800, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "rapier_fsa_optical_tracker_unit": { + "name": "rapier_fsa_optical_tracker_unit", + "coalition": "", + "era": "", + "label": "SAM Rapier Tracker", + "shortLabel": "SAM Rapier Tracker", + "type": "SAM Track Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 20000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "rapier_fsa_blindfire_radar": { + "name": "rapier_fsa_blindfire_radar", + "coalition": "", + "era": "", + "label": "SAM Rapier Blindfire TR", + "shortLabel": "SAM Rapier Blindfire TR", + "type": "SAM Track Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "bofors40": { + "name": "bofors40", + "coalition": "", + "era": "", + "label": "AAA Bofors 40mm", + "shortLabel": "AAA Bofors 40mm", + "type": "AAA", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Chieftain_mk3": { + "name": "Chieftain_mk3", + "coalition": "", + "era": "", + "label": "Tank Chieftain Mk.3", + "shortLabel": "Tank Chieftain Mk.3", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Bedford_MWD": { + "name": "Bedford_MWD", + "coalition": "", + "era": "", + "label": "Truck Bedford", + "shortLabel": "Truck Bedford", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Land_Rover_101_FC": { + "name": "Land_Rover_101_FC", + "coalition": "", + "era": "", + "label": "Truck Land Rover 101 FC", + "shortLabel": "Truck Land Rover 101 FC", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Land_Rover_109_S3": { + "name": "Land_Rover_109_S3", + "coalition": "", + "era": "", + "label": "LUV Land Rover 109", + "shortLabel": "LUV Land Rover 109", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "hy_launcher": { + "name": "hy_launcher", + "coalition": "", + "era": "", + "label": "AShM SS-N-2 Silkworm", + "shortLabel": "AShM SS-N-2 Silkworm", + "type": "Missile system", + "enabled": true, + "liveries": {}, + "acquisitionRange": 100000, + "engagementRange": 100000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Silkworm_SR": { + "name": "Silkworm_SR", + "coalition": "", + "era": "", + "label": "AShM Silkworm SR", + "shortLabel": "AShM Silkworm SR", + "type": "Missile system", + "enabled": true, + "liveries": {}, + "acquisitionRange": 200000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ES44AH": { + "name": "ES44AH", + "coalition": "", + "era": "", + "label": "Loco ES44AH", + "shortLabel": "Loco ES44AH", + "type": "Locomotive", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Boxcartrinity": { + "name": "Boxcartrinity", + "coalition": "", + "era": "", + "label": "Flatcar", + "shortLabel": "Flatcar", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Tankcartrinity": { + "name": "Tankcartrinity", + "coalition": "", + "era": "", + "label": "Tank Cartrinity", + "shortLabel": "Tank Cartrinity", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Wellcarnsc": { + "name": "Wellcarnsc", + "coalition": "", + "era": "", + "label": "Well Car", + "shortLabel": "Well Car", + "type": "Carriage", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "flak18": { + "name": "flak18", + "coalition": "", + "era": "", + "label": "AAA 8,8cm Flak 18", + "shortLabel": "AAA 8,8cm Flak 18", + "type": "AAA", + "enabled": true, + "liveries": {}, + "aimTime": 20, + "shotsToFire": 1, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Pz_IV_H": { + "name": "Pz_IV_H", + "coalition": "", + "era": "", + "label": "Tk PzIV H", + "shortLabel": "Tk PzIV H", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Leopard-2A5": { + "name": "Leopard-2A5", + "coalition": "", + "era": "", + "label": "Tank Leopard-2A5", + "shortLabel": "Tank Leopard-2A5", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leopard-2A4": { + "name": "leopard-2A4", + "coalition": "", + "era": "", + "label": "Tank Leopard-2A4", + "shortLabel": "Tank Leopard-2A4", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leopard-2A4_trs": { + "name": "leopard-2A4_trs", + "coalition": "", + "era": "", + "label": "Tank Leopard-2A4 Trs", + "shortLabel": "Tank Leopard-2A4 Trs", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Sd_Kfz_251": { + "name": "Sd_Kfz_251", + "coalition": "", + "era": "", + "label": "Armoured Personnel Carrier Sd.Kfz.251 Halftrack", + "shortLabel": "Armoured Personnel Carrier Sd.Kfz.251 Halftrack", + "type": "Armoured Personnel Carrier", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1100, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Blitz_36-6700A": { + "name": "Blitz_36-6700A", + "coalition": "", + "era": "", + "label": "Truck Opel Blitz", + "shortLabel": "Truck Opel Blitz", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": true + }, + "T155_Firtina": { + "name": "T155_Firtina", + "coalition": "", + "era": "", + "label": "SPH T155 Firtina 155mm", + "shortLabel": "SPH T155 Firtina 155mm", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 41000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "VAB_Mephisto": { + "name": "VAB_Mephisto", + "coalition": "", + "era": "", + "label": "ATGM VAB Mephisto", + "shortLabel": "ATGM VAB Mephisto", + "type": "Armoured Car", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3800, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZTZ96B": { + "name": "ZTZ96B", + "coalition": "", + "era": "", + "label": "ZTZ-96B", + "shortLabel": "ZTZ-96B", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "ZBD04A": { + "name": "ZBD04A", + "coalition": "", + "era": "", + "label": "ZBD-04A", + "shortLabel": "ZBD-04A", + "type": "Infantry Fighting Vehicle", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4800, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HQ-7_LN_SP": { + "name": "HQ-7_LN_SP", + "coalition": "", + "era": "", + "label": "HQ-7 Self-Propelled LN", + "shortLabel": "HQ-7 Self-Propelled LN", + "type": "SAM Launcher", + "enabled": true, + "liveries": {}, + "acquisitionRange": 15000, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HQ-7_LN_EO": { + "name": "HQ-7_LN_EO", + "coalition": "", + "era": "", + "label": "HQ-7 LN Electro-Optics", + "shortLabel": "HQ-7 LN Electro-Optics", + "type": "SAM Track Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 8000, + "engagementRange": 12000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HQ-7_STR_SP": { + "name": "HQ-7_STR_SP", + "coalition": "", + "era": "", + "label": "HQ-7 Self-Propelled STR", + "shortLabel": "HQ-7 Self-Propelled STR", + "type": "SAM Track Radar", + "enabled": true, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "PLZ05": { + "name": "PLZ05", + "coalition": "", + "era": "", + "label": "PLZ-05", + "shortLabel": "PLZ-05", + "type": "Artillery", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 23500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "TYPE-59": { + "name": "TYPE-59", + "coalition": "", + "era": "", + "label": "MT Type 59", + "shortLabel": "MT Type 59", + "type": "Tank", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Kubelwagen_82": { + "name": "Kubelwagen_82", + "coalition": "", + "era": "", + "label": "LUV Kubelwagen Jeep", + "shortLabel": "LUV Kubelwagen Jeep", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Sd_Kfz_2": { + "name": "Sd_Kfz_2", + "coalition": "", + "era": "", + "label": "LUV Kettenrad", + "shortLabel": "LUV Kettenrad", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Sd_Kfz_7": { + "name": "Sd_Kfz_7", + "coalition": "", + "era": "", + "label": "Tractor Sd.Kfz.7 Art'y Tractor", + "shortLabel": "Tractor Sd.Kfz.7 Art'y Tractor", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Horch_901_typ_40_kfz_21": { + "name": "Horch_901_typ_40_kfz_21", + "coalition": "", + "era": "", + "label": "LUV Horch 901 Staff Car", + "shortLabel": "LUV Horch 901 Staff Car", + "type": "Unarmed", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Tiger_I": { + "name": "Tiger_I", + "coalition": "", + "era": "", + "label": "Tk Tiger 1", + "shortLabel": "Tk Tiger 1", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Tiger_II_H": { + "name": "Tiger_II_H", + "coalition": "", + "era": "", + "label": "Tk Tiger II", + "shortLabel": "Tk Tiger II", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Pz_V_Panther_G": { + "name": "Pz_V_Panther_G", + "coalition": "", + "era": "", + "label": "Tk Panther G (Pz V)", + "shortLabel": "Tk Panther G (Pz V)", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Jagdpanther_G1": { + "name": "Jagdpanther_G1", + "coalition": "", + "era": "", + "label": "Self Propelled Gun Jagdpanther TD", + "shortLabel": "Self Propelled Gun Jagdpanther TD", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 5000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "JagdPz_IV": { + "name": "JagdPz_IV", + "coalition": "", + "era": "", + "label": "Self Propelled Gun Jagdpanzer IV TD", + "shortLabel": "Self Propelled Gun Jagdpanzer IV TD", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Stug_IV": { + "name": "Stug_IV", + "coalition": "", + "era": "", + "label": "Self Propelled Gun StuG IV AG", + "shortLabel": "Self Propelled Gun StuG IV AG", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SturmPzIV": { + "name": "SturmPzIV", + "coalition": "", + "era": "", + "label": "Self Propelled Gun Brummbaer AG", + "shortLabel": "Self Propelled Gun Brummbaer AG", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Wespe124": { + "name": "Wespe124", + "coalition": "", + "era": "", + "label": "SPH Sd.Kfz.124 Wespe 105mm", + "shortLabel": "SPH Sd.Kfz.124 Wespe 105mm", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 10500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Sd_Kfz_234_2_Puma": { + "name": "Sd_Kfz_234_2_Puma", + "coalition": "", + "era": "", + "label": "Scout Puma AC", + "shortLabel": "Scout Puma AC", + "type": "Armoured Car", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "KDO_Mod40": { + "name": "KDO_Mod40", + "coalition": "", + "era": "", + "label": "AAA Kdo.G.40", + "shortLabel": "AAA Kdo.G.40", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Flakscheinwerfer_37": { + "name": "Flakscheinwerfer_37", + "coalition": "", + "era": "", + "label": "SL Flakscheinwerfer 37", + "shortLabel": "SL Flakscheinwerfer 37", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 15000, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Maschinensatz_33": { + "name": "Maschinensatz_33", + "coalition": "", + "era": "", + "label": "Maschinensatz 33 Gen", + "shortLabel": "Maschinensatz 33 Gen", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "soldier_mauser98": { + "name": "soldier_mauser98", + "coalition": "", + "era": "", + "label": "Infantry Mauser 98", + "shortLabel": "Infantry Mauser 98", + "type": "Infantry", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "SK_C_28_naval_gun": { + "name": "SK_C_28_naval_gun", + "coalition": "", + "era": "", + "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": false, + "canRearm": false + }, + "fire_control": { + "name": "fire_control", + "coalition": "", + "era": "", + "label": "Bunker with Fire Control Center", + "shortLabel": "Bunker with Fire Control Center", + "type": "Structure", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1100, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Stug_III": { + "name": "Stug_III", + "coalition": "", + "era": "", + "label": "Self Propelled Gun StuG III G AG", + "shortLabel": "Self Propelled Gun StuG III G AG", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Elefant_SdKfz_184": { + "name": "Elefant_SdKfz_184", + "coalition": "", + "era": "", + "label": "Self Propelled Gun Elefant TD", + "shortLabel": "Self Propelled Gun Elefant TD", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "v1_launcher": { + "name": "v1_launcher", + "coalition": "", + "era": "", + "label": "V-1 Launch Ramp", + "shortLabel": "V-1 Launch Ramp", + "type": "Missile System", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "FuMG-401": { + "name": "FuMG-401", + "coalition": "", + "era": "", + "label": "EWR FuMG-401 Freya LZ", + "shortLabel": "EWR FuMG-401 Freya LZ", + "type": "EW Radar", + "enabled": false, + "liveries": {}, + "acquisitionRange": 160000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "FuSe-65": { + "name": "FuSe-65", + "coalition": "", + "era": "", + "label": "EWR FuSe-65 W\u00c3\u00bcrzburg-Riese", + "shortLabel": "EWR FuSe-65 W\u00c3\u00bcrzburg-Riese", + "type": "EW Radar", + "enabled": false, + "liveries": {}, + "acquisitionRange": 60000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Pak40": { + "name": "Pak40", + "coalition": "", + "era": "", + "label": "FH Pak 40 75mm", + "shortLabel": "FH Pak 40 75mm", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "LeFH_18-40-105": { + "name": "LeFH_18-40-105", + "coalition": "", + "era": "", + "label": "FH LeFH-18 105mm", + "shortLabel": "FH LeFH-18 105mm", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 10500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Cromwell_IV": { + "name": "Cromwell_IV", + "coalition": "", + "era": "", + "label": "Tk Cromwell IV", + "shortLabel": "Tk Cromwell IV", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M4A4_Sherman_FF": { + "name": "M4A4_Sherman_FF", + "coalition": "", + "era": "", + "label": "Tk M4A4 Sherman Firefly", + "shortLabel": "Tk M4A4 Sherman Firefly", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "soldier_wwii_br_01": { + "name": "soldier_wwii_br_01", + "coalition": "", + "era": "", + "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 + }, + "Centaur_IV": { + "name": "Centaur_IV", + "coalition": "", + "era": "", + "label": "Tk Centaur IV CS", + "shortLabel": "Tk Centaur IV CS", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Churchill_VII": { + "name": "Churchill_VII", + "coalition": "", + "era": "", + "label": "Tk Churchill VII", + "shortLabel": "Tk Churchill VII", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 3000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Daimler_AC": { + "name": "Daimler_AC", + "coalition": "", + "era": "", + "label": "Car Daimler Armored", + "shortLabel": "Car Daimler Armored", + "type": "Armoured Car", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Tetrarch": { + "name": "Tetrarch", + "coalition": "", + "era": "", + "label": "Tk Tetrach", + "shortLabel": "Tk Tetrach", + "type": "Armoured Car", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "QF_37_AA": { + "name": "QF_37_AA", + "coalition": "", + "era": "", + "label": "AAA QF 3.7\"", + "shortLabel": "AAA QF 3.7\"", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 9000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Allies_Director": { + "name": "Allies_Director", + "coalition": "", + "era": "", + "label": "Allies Rangefinder (DRT)", + "shortLabel": "Allies Rangefinder (DRT)", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CCKW_353": { + "name": "CCKW_353", + "coalition": "", + "era": "", + "label": "Truck GMC \"Jimmy\" 6x6", + "shortLabel": "Truck GMC \"Jimmy\" 6x6", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Willys_MB": { + "name": "Willys_MB", + "coalition": "", + "era": "", + "label": "Car Willys Jeep", + "shortLabel": "Car Willys Jeep", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M12_GMC": { + "name": "M12_GMC", + "coalition": "", + "era": "", + "label": "SPH M12 GMC 155mm", + "shortLabel": "SPH M12 GMC 155mm", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 18300, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M30_CC": { + "name": "M30_CC", + "coalition": "", + "era": "", + "label": "Ammo M30 Cargo Carrier", + "shortLabel": "Ammo M30 Cargo Carrier", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "soldier_wwii_us": { + "name": "soldier_wwii_us", + "coalition": "", + "era": "", + "label": "Infantry M1 Garand", + "shortLabel": "Infantry M1 Garand", + "type": "Infantry", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M10_GMC": { + "name": "M10_GMC", + "coalition": "", + "era": "", + "label": "Self Propelled Gun M10 GMC TD", + "shortLabel": "Self Propelled Gun M10 GMC TD", + "type": "Tank", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 6000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M8_Greyhound": { + "name": "M8_Greyhound", + "coalition": "", + "era": "", + "label": "Scout M8 Greyhound AC", + "shortLabel": "Scout M8 Greyhound AC", + "type": "Armoured Car", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 2000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M2A1-105": { + "name": "M2A1-105", + "coalition": "", + "era": "", + "label": "FH M2A1 105mm", + "shortLabel": "FH M2A1 105mm", + "type": "Artillery", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 11500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M4_Tractor": { + "name": "M4_Tractor", + "coalition": "", + "era": "", + "label": "Tractor M4 High Speed", + "shortLabel": "Tractor M4 High Speed", + "type": "Unarmed", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1200, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "M45_Quadmount": { + "name": "M45_Quadmount", + "coalition": "", + "era": "", + "label": "AAA M45 Quadmount HB 12.7mm", + "shortLabel": "AAA M45 Quadmount HB 12.7mm", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 1500, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "M1_37mm": { + "name": "M1_37mm", + "coalition": "", + "era": "", + "label": "AAA M1 37mm", + "shortLabel": "AAA M1 37mm", + "type": "AAA", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 5700, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "DR_50Ton_Flat_Wagon": { + "name": "DR_50Ton_Flat_Wagon", + "coalition": "", + "era": "", + "label": "DR 50-ton flat wagon", + "shortLabel": "DR 50-ton flat wagon", + "type": "Carriage", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "DRG_Class_86": { + "name": "DRG_Class_86", + "coalition": "", + "era": "", + "label": "Loco DRG Class 86", + "shortLabel": "Loco DRG Class 86", + "type": "Locomotive", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "German_covered_wagon_G10": { + "name": "German_covered_wagon_G10", + "coalition": "", + "era": "", + "label": "Wagon G10 (Germany)", + "shortLabel": "Wagon G10 (Germany)", + "type": "Carriage", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "German_tank_wagon": { + "name": "German_tank_wagon", + "coalition": "", + "era": "", + "label": "Tank Car (Germany)", + "shortLabel": "Tank Car (Germany)", + "type": "Carriage", + "enabled": false, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + } } \ No newline at end of file diff --git a/client/public/databases/units/helicopterdatabase.json b/client/public/databases/units/helicopterdatabase.json index 3c7d4b8c..9508f21a 100644 --- a/client/public/databases/units/helicopterdatabase.json +++ b/client/public/databases/units/helicopterdatabase.json @@ -1,3991 +1,4017 @@ { - "AH-1W": { - "name": "AH-1W", - "coalition": "blue", - "era": "Mid Cold War", - "label": "AH-1W Cobra", - "shortLabel": "AH1", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "14xHYDRA-70 WP", - "name": "14xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "38xHYDRA-70 WP", - "name": "38xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "4 x BGM-71D TOW ATGM", - "quantity": 2 - }, - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xBGM-71, 14xHYDRA-70", - "name": "8xBGM-71, 14xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "4 x BGM-71D TOW ATGM", - "quantity": 2 - }, - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xBGM-71, 14xHYDRA-70 WP", - "name": "8xBGM-71, 14xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "4 x BGM-71D TOW ATGM", - "quantity": 2 - }, - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xBGM-71, 38xHYDRA-70 WP", - "name": "8xBGM-71, 38xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", - "quantity": 2 - } - ], - "enabled": true, - "code": "14xHYDRA-70", - "name": "14xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", - "quantity": 2 - } - ], - "enabled": true, - "code": "38xHYDRA-70", - "name": "38xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "M299 - 4 x AGM-114K Hellfire", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xAGM-114", - "name": "8xAGM-114", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", - "quantity": 4 - } - ], - "enabled": true, - "code": "28xHYDRA-70", - "name": "28xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "4 x BGM-71D TOW ATGM", - "quantity": 2 - }, - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xBGM-71, 38xHYDRA-70", - "name": "8xBGM-71, 38xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "M299 - 4 x AGM-114K Hellfire", - "quantity": 2 - }, - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xAGM-114, 38xHYDRA-70 WP", - "name": "8xAGM-114, 38xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "4 x BGM-71D TOW ATGM", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xBGM-71", - "name": "8xBGM-71", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "M299 - 4 x AGM-114K Hellfire", - "quantity": 2 - }, - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xAGM-114, 14xHYDRA-70 WP", - "name": "8xAGM-114, 14xHYDRA-70 WP", - "roles": [ - "AFAC" - ] - }, - { - "items": [ - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", - "quantity": 4 - } - ], - "enabled": true, - "code": "76xHYDRA-70", - "name": "76xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - }, - { - "items": [ - { - "name": "M299 - 4 x AGM-114K Hellfire", - "quantity": 2 - }, - { - "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xAGM-114, 38xHYDRA-70", - "name": "8xAGM-114, 38xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike", - "Antiship Strike" - ] - }, - { - "items": [ - { - "name": "M299 - 4 x AGM-114K Hellfire", - "quantity": 2 - }, - { - "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", - "quantity": 2 - } - ], - "enabled": true, - "code": "8xAGM-114, 14xHYDRA-70", - "name": "8xAGM-114, 14xHYDRA-70", - "roles": [ - "CAP", - "CAS", - "Strike" - ] - } - ], - "filename": "ah-1.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "CAP", - "AFAC", - "Antiship Strike" - ], - "liveries": { - "usa marines": { - "name": "Marines", - "countries": [ - "USA" - ] - }, - "turkey 1": { - "name": "Turkey", - "countries": [ - "TUR" - ] - }, - "standard": { - "name": "Standard", - "countries": [ - "ISR", - "USA" - ] - }, - "usa x black": { - "name": "Black", - "countries": [ - "USA" - ] - }, - "turkey 2": { - "name": "Turkey 2", - "countries": [ - "TUR" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 2 crew attack helicopter. Cobra", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "AH-64D_BLK_II": { - "name": "AH-64D_BLK_II", - "coalition": "blue", - "era": "Modern", - "label": "AH-64D Apache", - "shortLabel": "AH64", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "4 * Fuel Tank 230 gal", - "name": "4 * Fuel Tank 230 gal", - "roles": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "4 * Hellfire station: 4*AGM-114K", - "name": "4 * Hellfire station: 4*AGM-114K", - "roles": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "4 * M261: M151 (6PD)", - "name": "4 * M261: M151 (6PD)", - "roles": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", - "name": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", - "roles": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "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": [ - "AFAC", - "Antiship Strike", - "CAS", - "CAP", - "Strike" - ] - } - ], - "filename": "ah-64.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "CAP", - "AFAC", - "Antiship Strike" - ], - "liveries": { - "avengers 1-227th arb": { - "name": "A Company, Avengers, 1-227th ARB", - "countries": [ - "USA" - ] - }, - "devils 1-1 arb": { - "name": "A Company, Devils, 1-1 ARB", - "countries": [ - "USA" - ] - }, - "egypt air force": { - "name": "Egyptian Air Force", - "countries": [ - "EGY" - ] - }, - "indonesian army - 11th squadron by dendi wirson": { - "name": "Indonesian Army - 11th Squadron/Serbu by Dendi Wirson", - "countries": "All" - }, - "south carolina national guard - 40332": { - "name": "Ghostriders, 1-151st ATKHB SCNG - 40332", - "countries": [ - "USA" - ] - }, - "301 squadron redskins netherlands": { - "name": "301 Squadron Redskins, Royal Netherlands Air Force", - "countries": [ - "NETH" - ] - }, - "korea air force": { - "name": "Republic of Korea Army", - "countries": [ - "KOR" - ] - }, - "south carolina national guard - 40331": { - "name": "Ghostriders, 1-151st ATKHB SCNG - 40331", - "countries": [ - "USA" - ] - }, - "saudi arabian national guard": { - "name": "Saudi Arabian National Guard", - "countries": [ - "SAU" - ] - }, - "south carolina national guard": { - "name": "Ghostriders, 1-151st ATKHB SCNG - Gray TADS", - "countries": [ - "USA" - ] - }, - "664 squadron 9 regiment uk": { - "name": "664 Squadron 9 Regiment AAC UK", - "countries": [ - "UK" - ] - }, - "uae armed forces - od": { - "name": "UAE Armed Forces - Olive Drab", - "countries": [ - "ARE" - ] - }, - "grim reapers 4-2 arb": { - "name": "B Company, Grim Reapers, 4-2 ARB", - "countries": [ - "USA" - ] - }, - "default": { - "name": "default livery", - "countries": [ - "USA" - ] - }, - "662 squadron 3 regiment zj171 uk": { - "name": "662 Squadron 3 Regiment AAC UK - ZJ171", - "countries": [ - "UK" - ] - }, - "12th combat aviation brigade griffins": { - "name": "12th Combat Aviation Brigade Griffins", - "countries": [ - "USA" - ] - }, - "silver spurs 3-17 cav": { - "name": "A Troop, Silver Spurs, 3-17 CAV", - "countries": [ - "USA" - ] - }, - "qatar qeaf": { - "name": "Qatar Emiri Air Force", - "countries": [ - "QAT" - ] - }, - "south carolina national guard - drab tads": { - "name": "Ghostriders, 1-151st ATKHB SCNG - Drab TADS", - "countries": [ - "USA" - ] - }, - "archangel 4-2 arb": { - "name": "A Company, Archangel, 4-2 ARB", - "countries": [ - "USA" - ] - }, - "killer bees 1-130th arb ncng": { - "name": "B Company, Killer Bees, 1-130th ARB NCNG", - "countries": [ - "USA" - ] - }, - "wolfpack 1-82 arb": { - "name": "Wolfpack, 1-82 ARB", - "countries": [ - "USA" - ] - }, - "gunslingers 2-159th arb": { - "name": "C Company, Gunslingers, 2-159th ARB", - "countries": [ - "USA" - ] - }, - "the air pirates 1-211th arb": { - "name": "A Company, The Air Pirates, 1-211th ARB UTNG", - "countries": [ - "USA" - ] - }, - "25th_combat_aviation_brigade_by_lee1hy": { - "name": "2-6 CAV, 25th Combat Aviation Brigade", - "countries": [ - "USA" - ] - }, - "apache iaf grey": { - "name": "Indian Air Force - Gray", - "countries": [ - "IND" - ] - }, - "jgsdf——1st_combat_helicopter_unit": { - "name": "1st Combat Helicopter Unit, Japanese Ground SDF", - "countries": [ - "JPN" - ] - }, - "slayers 4-2 arb": { - "name": "C Company, Slayers, 4-2 ARB", - "countries": [ - "USA" - ] - }, - "iaf 113th hornet squadron": { - "name": "IAF 113th Hornet Squadron", - "countries": [ - "ISR" - ] - }, - "1st attack helicopter battalion greece": { - "name": "1st Attack Helicopter Battalion, Hellenic Army Aviation", - "countries": [ - "GRC" - ] - }, - "1st_bat_greek_pegasus_es1008": { - "name": "Pegasus Display Team - ES1008, Hellenic Army Aviation", - "countries": [ - "GRC" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 2 crew attack helicopter. Apache", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "Ka-50_3": { - "name": "Ka-50_3", - "coalition": "red", - "era": "Late Cold War", - "label": "Ka-50 Hokum A", - "shortLabel": "K50", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "9S846 Strelets - 2 x 9M39 Igla", - "quantity": 2 - } - ], - "enabled": true, - "code": "4xIgla", - "name": "4xIgla", - "roles": [ - "CAS" - ] - }, - { - "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "quantity": 2 - } - ], - "enabled": true, - "code": "2xKh-25ML, 10xS-13, 4xIgla", - "name": "2xKh-25ML, 10xS-13, 4xIgla", - "roles": [ - "Antiship Strike" - ] - }, - { - "items": [ - { - "name": "9S846 Strelets - 2 x 9M39 Igla", - "quantity": 2 - }, - { - "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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", - "CAP" - ] - }, - { - "items": [ - { - "name": "9S846 Strelets - 2 x 9M39 Igla", - "quantity": 2 - }, - { - "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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-1 Vikhr-M ATGM, LOSBR, Tandem HEAT/Frag", - "quantity": 2 - }, - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "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", - "CAP" - ] - }, - { - "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", - "CAP" - ] - }, - { - "items": [ - { - "name": "9S846 Strelets - 2 x 9M39 Igla", - "quantity": 2 - }, - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "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": [ - "AFAC" - ] - }, - { - "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": [ - "AFAC" - ] - }, - { - "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": [ - "CAP" - ] - }, - { - "items": [ - { - "name": "9S846 Strelets - 2 x 9M39 Igla", - "quantity": 2 - }, - { - "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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": [ - "CAP" - ] - } - ], - "filename": "ka-50.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "CAP", - "AFAC", - "Antiship Strike" - ], - "liveries": { - "ka-50_camo_chechnya_ussr": { - "name": "Standart camo n/a 2000-2001 Chechnya", - "countries": [ - "RSI", - "GRC", - "EGY", - "ITA", - "CHN", - "INS", - "SUI", - "AUT", - "SVK", - "AUSAF", - "MAR", - "CUB", - "NZG", - "UKR", - "RUS", - "DZA", - "ARE", - "BGR", - "POL", - "HUN", - "MYS", - "PHL", - "QAT", - "SYR", - "CAN", - "BEL", - "ABH", - "OMN", - "ROU", - "ETH", - "UK", - "BHR", - "USA", - "DEN", - "TUR", - "VEN", - "JOR", - "YUG", - "THA", - "SWE", - "JPN", - "BLR", - "HND", - "CHL", - "BRA", - "SRB", - "FRA", - "GRG", - "NETH", - "KAZ", - "MEX", - "PAK", - "ISR", - "KOR", - "SDN", - "FIN", - "SPN", - "RSO", - "CZE", - "SUN", - "YEM", - "PRK", - "LBY", - "NOR", - "VNM", - "IDN", - "GER", - "IND", - "IRN", - "HRV", - "KWT", - "TUN", - "IRQ", - "SAU", - "RSA", - "AUS" - ] - }, - "default": { - "name": "Standart camo Russian Air Force", - "countries": [ - "RUS" - ] - }, - "ka-50_desert_blackshark": { - "name": "Desert camo #018 Zhukovsky 1997 Black Shark", - "countries": [ - "RUS" - ] - }, - "ka-50_standart_black_russianairforce": { - "name": "Standart black Russian Air Force", - "countries": [ - "RUS" - ] - }, - "ka-50_black_neutral": { - "name": "Black neutral n/a", - "countries": [ - "RSI", - "GRC", - "EGY", - "ITA", - "CHN", - "INS", - "SUI", - "AUT", - "SVK", - "AUSAF", - "MAR", - "CUB", - "NZG", - "UKR", - "RUS", - "DZA", - "ARE", - "BGR", - "POL", - "HUN", - "MYS", - "PHL", - "QAT", - "SYR", - "CAN", - "BEL", - "ABH", - "OMN", - "ROU", - "ETH", - "UK", - "BHR", - "USA", - "DEN", - "TUR", - "VEN", - "JOR", - "YUG", - "THA", - "SWE", - "JPN", - "BLR", - "HND", - "CHL", - "BRA", - "SRB", - "FRA", - "GRG", - "NETH", - "KAZ", - "MEX", - "PAK", - "ISR", - "KOR", - "SDN", - "FIN", - "SPN", - "RSO", - "CZE", - "SUN", - "YEM", - "PRK", - "LBY", - "NOR", - "VNM", - "IDN", - "GER", - "IND", - "IRN", - "HRV", - "KWT", - "TUN", - "IRQ", - "SAU", - "RSA", - "AUS" - ] - }, - "ka-50_desert_werewolf": { - "name": "Desert camo #018 Zhukovsky 1995 Werewolf", - "countries": [ - "RUS" - ] - }, - "ka-50_blackshark_torzhok": { - "name": "344th Center for Combat Employment Torzhok city Shark 1997", - "countries": [ - "RUS" - ] - }, - "ka-50_black_werewolf": { - "name": "Black #020 Farnborough 1992 Werewolf", - "countries": [ - "RUS" - ] - }, - "ka-50_black_h347_blackshark": { - "name": "Black H347 Le Bourget 1997 Black Shark", - "countries": [ - "RUS" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 1 crew attack helicopter. Blackshark", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "Mi-24P": { - "name": "Mi-24P", - "coalition": "red", - "era": "Mid Cold War", - "label": "Mi-24P Hind", - "shortLabel": "Mi24", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "2 x 9M114 Shturm-V (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-V (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", - "CAP" - ] - }, - { - "items": [ - { - "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", - "quantity": 4 - }, - { - "name": "2 x 9M114 Shturm-V (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-V (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-V (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 pod - 32 x S-5KO", - "quantity": 4 - }, - { - "name": "2 x 9M114 Shturm-V (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-V (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-V (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-V (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", - "CAP" - ] - }, - { - "items": [ - { - "name": "2 x 9M114 Shturm-V (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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 2 - }, - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 2 - }, - { - "name": "APU-68 - S-24B", - "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 2 - }, - { - "name": "APU-68 - S-24B", - "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-V (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-V (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-V (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-V (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-V (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-V (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": [ - "CAS" - ] - } - ], - "filename": "mi-24.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "CAP", - "Transport", - "AFAC", - "Antiship Strike" - ], - "liveries": { - "af torzhok afb": { - "name": "RF Air Force, aerobatics team 'Berkuts'", - "countries": [ - "SUN", - "RUS" - ] - }, - "georgian air force": { - "name": "Georgian Air Force", - "countries": [ - "GRG" - ] - }, - "united nations": { - "name": "United Nations ", - "countries": [ - "UN", - "GRG", - "UKR", - "RUS" - ] - }, - "iqaf": { - "name": "Iraqi Army Air Corps", - "countries": [ - "IRQ" - ] - }, - "russian air force": { - "name": "RF Air Force Standard", - "countries": [ - "SUN", - "RUS" - ] - }, - "af 440 ovp": { - "name": "RF Air Force, 440th Helicopter Regiment", - "countries": [ - "SUN", - "RUS" - ] - }, - "syaaf": { - "name": "Syrian Air Force", - "countries": [ - "SYR" - ] - }, - "af syzran afb": { - "name": "RF Air Force, Syzran AFB", - "countries": [ - "SUN", - "RUS" - ] - }, - "af ussr": { - "name": "USSR Air Force", - "countries": [ - "SUN", - "RUS" - ] - }, - "ukrainian army aviation": { - "name": "Ukrainian Army Aviation", - "countries": [ - "UKR" - ] - }, - "af standard3 old": { - "name": "RF Air Force (weathered) type3", - "countries": [ - "SUN", - "RUS" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 2 crew attack helicopter. Hind", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "Mi-26": { - "name": "Mi-26", - "coalition": "red", - "era": "Late Cold War", - "label": "Mi-26 Halo", - "shortLabel": "M26", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "Transport" - ] - } - ], - "filename": "mi-26.png", - "enabled": true, - "roles": [ - "Transport" - ], - "liveries": { - "united nations": { - "name": "United Nations", - "countries": "All" - }, - "rf air force": { - "name": "RF Air Force", - "countries": [ - "SUN", - "RUS" - ] - }, - "7th separate brigade of aa (kalinov)": { - "name": "7th Separate Brigade of AA (Kalinov)", - "countries": [ - "UKR" - ] - }, - "china flying dragon aviation": { - "name": "China Flying Dragon Aviation", - "countries": [ - "CHN" - ] - }, - "russia_fsb": { - "name": "Russia_FSB", - "countries": [ - "RUS" - ] - }, - "russia_mvd": { - "name": "Russia_MVD", - "countries": [ - "RUS" - ] - }, - "algerian air force sl-22": { - "name": "Algerian AF SL-22 ", - "countries": [ - "DZA" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 5 crew transport helicopter. Halo", - "acquisitionRange": "", - "engagementRange": "", - "abilities": "" - }, - "Mi-28N": { - "name": "Mi-28N", - "coalition": "red", - "era": "Modern", - "label": "Mi-28N Havoc", - "shortLabel": "M28", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "FAB-250 - 250kg GP Bomb LD", - "quantity": 2 - } - ], - "enabled": true, - "code": "2xFAB-250", - "name": "2xFAB-250", - "roles": [ - "Strike" - ] - }, - { - "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", - "CAP" - ] - }, - { - "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", - "CAP" - ] - }, - { - "items": [ - { - "name": "8 x 9M114 Shturm-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 2 - }, - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "quantity": 2 - } - ], - "enabled": true, - "code": "16x9M114, 10xS-13", - "name": "16x9M114, 10xS-13", - "roles": [ - "CAS", - "Strike", - "CAP", - "Antiship Strike" - ] - }, - { - "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-V (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", - "CAP" - ] - }, - { - "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": [ - "AFAC" - ] - }, - { - "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", - "CAP" - ] - }, - { - "items": [ - { - "name": "8 x 9M114 Shturm-V (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", - "CAP" - ] - }, - { - "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-V (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", - "CAP", - "Antiship Strike" - ] - }, - { - "items": [ - { - "name": "8 x 9M114 Shturm-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 2 - } - ], - "enabled": true, - "code": "16x9M114", - "name": "16x9M114", - "roles": [ - "CAS", - "Strike", - "CAP" - ] - }, - { - "items": [ - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "quantity": 4 - } - ], - "enabled": true, - "code": "20xS-13", - "name": "20xS-13", - "roles": [ - "CAS", - "Strike", - "CAP" - ] - }, - { - "items": [ - { - "name": "8 x 9M114 Shturm-V (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", - "CAP" - ] - }, - { - "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-V (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": [ - "AFAC" - ] - }, - { - "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": [ - "AFAC" - ] - }, - { - "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", - "quantity": 1 - } - ], - "enabled": true, - "code": "9x9M114", - "name": "9x9M114", - "roles": [ - "CAS", - "Strike", - "CAP" - ] - }, - { - "items": [ - { - "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", - "quantity": 2 - } - ], - "enabled": true, - "code": "10xS-13", - "name": "10xS-13", - "roles": [ - "CAS", - "Strike", - "CAP" - ] - }, - { - "items": [ - { - "name": "8 x 9M114 Shturm-V (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-V (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", - "CAP" - ] - } - ], - "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" - ] - }, - "night": { - "name": "Night", - "countries": [ - "RUS" - ] - }, - "aaf sc-11": { - "name": "Algerian AF Desert SC-11", - "countries": [ - "DZA" - ] - }, - "standard": { - "name": "Standard", - "countries": [ - "RUS" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 2 crew attack helicopter. Havoc", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "Mi-8MT": { - "name": "Mi-8MT", - "coalition": "red", - "era": "Mid Cold War", - "label": "Mi-8MT Hip", - "shortLabel": "Mi8", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "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": { - "algerian af green": { - "name": "Algerian AF Green", - "countries": [ - "DZA" - ] - }, - "russia_mvd_mozdok": { - "name": "RF MVD Mozdok", - "countries": [ - "RUS" - ] - }, - "south ossetia": { - "name": "Fictional RSO", - "countries": [ - "RSO" - ] - }, - "united kingdom": { - "name": "Project curium", - "countries": [ - "UK" - ] - }, - "russia_kazanvz": { - "name": "Civil KazanVZ", - "countries": [ - "RUS" - ] - }, - "germany": { - "name": "Germany ARMY", - "countries": [ - "GER" - ] - }, - "china plaaa camo": { - "name": "PLA Army Aviation Camo", - "countries": [ - "CHN" - ] - }, - "russia_vvs_grey_2": { - "name": "RF Army Gray", - "countries": [ - "RUS" - ] - }, - "algerian af new desert": { - "name": "Algerian AF New Desert", - "countries": [ - "DZA" - ] - }, - "denmark": { - "name": "Fictional Olive", - "countries": [ - "DEN" - ] - }, - "russia_vvs_grey": { - "name": "RF Army Gray", - "countries": [ - "RUS" - ] - }, - "russia_aeroflot": { - "name": "Civil AEROFLOT", - "countries": [ - "SUN", - "RUS" - ] - }, - "russia_fsb": { - "name": "RF FSB Standard", - "countries": [ - "RUS" - ] - }, - "china plaaa white": { - "name": "PLA Army Aviation White", - "countries": [ - "CHN" - ] - }, - "ir afagir blue": { - "name": "AFAGIR Blue", - "countries": [ - "IRN" - ] - }, - "usa_afg": { - "name": "438th Air Expeditionary Wing", - "countries": [ - "USA" - ] - }, - "spain": { - "name": "Fictional Spain AF", - "countries": [ - "SPN" - ] - }, - "italy navy": { - "name": "Fictional NAVY", - "countries": [ - "ITA" - ] - }, - "russia_pf_ambulance": { - "name": "Russia Ambulance (PF)", - "countries": [ - "RUS" - ] - }, - "georgia": { - "name": "Georgian Standard", - "countries": [ - "GRG" - ] - }, - "russia_vertolety_russia_2": { - "name": "Civil Vertolety RUSSIA 22880", - "countries": [ - "RUS" - ] - }, - "ukraine": { - "name": "Standard", - "countries": [ - "UKR" - ] - }, - "russia_gazprom": { - "name": "Civil Gazprom Avia", - "countries": [ - "RUS" - ] - }, - "russia_utair": { - "name": "Civil Russia UTair", - "countries": [ - "RUS" - ] - }, - "russia_vvs_ma": { - "name": "RF Navy", - "countries": [ - "RUS" - ] - }, - "russia_vvs_standard_2": { - "name": "RF Army Standart", - "countries": [ - "RUS" - ] - }, - "hellenic army aviation": { - "name": "Hellenic Army Aviation (Fictional)", - "countries": [ - "GRC" - ] - }, - "belgium": { - "name": "Fictional Olive", - "countries": [ - "BEL" - ] - }, - "insurgents": { - "name": "Standard", - "countries": [ - "INS" - ] - }, - "ir afagir sand": { - "name": "AFAGIR Sand", - "countries": [ - "IRN" - ] - }, - "ir iranian special police forces": { - "name": "NAJA", - "countries": [ - "IRN" - ] - }, - "russia_lii_gromov ra-25546": { - "name": "Civil Lii Gromov RA-25546", - "countries": [ - "RUS" - ] - }, - "russia_naryan-mar": { - "name": "Civil_Russia Naryan-Mar", - "countries": [ - "RUS" - ] - }, - "algerian af vip": { - "name": "Algerian AF VIP", - "countries": [ - "DZA" - ] - }, - "russia_vvs_standard": { - "name": " RF Army Standard", - "countries": [ - "RUS" - ] - }, - "russia_mvd_standard": { - "name": "RF MVD Standard", - "countries": [ - "RUS" - ] - }, - "israel": { - "name": "Fictional ARMY", - "countries": [ - "ISR" - ] - }, - "china un": { - "name": "PLA Army Aviation United Nations", - "countries": [ - "CHN" - ] - }, - "algerian af green evsan": { - "name": "Algerian AF Green EVSAN", - "countries": [ - "DZA" - ] - }, - "algerian af old desert": { - "name": "Algerian AF Old Desert", - "countries": [ - "DZA" - ] - }, - "italy army": { - "name": "Fictional ARMY", - "countries": [ - "ITA" - ] - }, - "france army": { - "name": "Fictional ARMY", - "countries": [ - "FRA" - ] - }, - "abkhazia": { - "name": "Abkhazia", - "countries": [ - "ABH" - ] - }, - "czech air force dark camo": { - "name": "Czech Air Force ID-9XXX", - "countries": [ - "CZE" - ] - }, - "norway": { - "name": "Fictional NAVY", - "countries": [ - "NOR" - ] - }, - "netherlands navy": { - "name": "Fictional NAVY", - "countries": [ - "NETH" - ] - }, - "russia_un": { - "name": "RF UN", - "countries": [ - "UN", - "RUS" - ] - }, - "hellenic airforce sar": { - "name": "Hellenic Airforce - Search and Rescue (Fictional)", - "countries": [ - "GRC" - ] - }, - "canada": { - "name": "Canada_Afghanistan", - "countries": [ - "CAN" - ] - }, - "russia_army_weather": { - "name": "Russia Army Weather", - "countries": [ - "SUN", - "RUS" - ] - }, - "russia_vertolety_russia": { - "name": "Civil Vertolety RUSSIA", - "countries": [ - "RUS" - ] - }, - "turkey": { - "name": "JANDARMA", - "countries": [ - "TUR" - ] - }, - "france navy": { - "name": "Fictional NAVY", - "countries": [ - "FRA" - ] - }, - "netherlands army": { - "name": "Fictional ARMY", - "countries": [ - "NETH" - ] - }, - "standard": { - "name": "Standard", - "countries": [ - "SPN", - "ITA", - "INS", - "CAN", - "FRA", - "NETH", - "NOR", - "GER", - "UK", - "USA", - "ISR", - "TUR", - "AUS" - ] - }, - "australia": { - "name": "Fictional ARMY", - "countries": [ - "AUS" - ] - }, - "bulgarian af": { - "name": "Bulgarian Air Force", - "countries": [ - "BGR" - ] - }, - "russia_police": { - "name": "Civil Russia Police", - "countries": [ - "RUS" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 3 crew transport helicopter. Hip", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "SA342L": { - "name": "SA342L", - "coalition": "blue", - "era": "Mid Cold War", - "label": "SA342L Gazelle", - "shortLabel": "342", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", - "quantity": 1 - } - ], - "enabled": true, - "code": "M621, 8xSNEB68 EAP", - "name": "M621, 8xSNEB68 EAP", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", - "quantity": 1 - }, - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "M621, 8xSNEB68 EAP, IR Deflector", - "name": "M621, 8xSNEB68 EAP, IR Deflector", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", - "quantity": 1 - }, - { - "name": "IR Deflector", - "quantity": 1 - }, - { - "name": "Sand Filter", - "quantity": 1 - } - ], - "enabled": true, - "code": "M621, 8xSNEB68 EAP, IR Deflector, Sand Filter", - "name": "M621, 8xSNEB68 EAP, IR Deflector, Sand Filter", - "roles": [ - "CAS" - ] - } - ], - "filename": "sa-342.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "AFAC", - "CAP", - "Reconnaissance" - ], - "liveries": { - "portuguese modern fictional": { - "name": "Portuguese modern Fictional", - "countries": [ - "", - "FRA", - "PRT" - ] - }, - "uk fictional": { - "name": "UK Fictional", - "countries": [ - "UK" - ] - }, - "fr green armee hri daguet": { - "name": "Armee HRI Daguet", - "countries": [ - "FRA" - ] - }, - "israel fictional": { - "name": "Israel Fictional", - "countries": [ - "ISR" - ] - }, - "training ealat": { - "name": "Training EALAT", - "countries": [ - "FRA" - ] - }, - "lebanon": { - "name": "Lebanon", - "countries": "All" - }, - "nato_drab_us": { - "name": "US Army Olive Drab", - "countries": "All" - }, - "nato_drab_nl": { - "name": "RNLAF Olive Drab", - "countries": "All" - }, - "training": { - "name": "Training", - "countries": [ - "FRA" - ] - }, - "combat": { - "name": "Combat", - "countries": [ - "FRA" - ] - }, - "combat sable": { - "name": "Combat desert", - "countries": [ - "FRA" - ] - }, - "dutch fictional": { - "name": "RNLAF fictional", - "countries": [ - "", - "NETH" - ] - }, - "yugoslav fictional": { - "name": "Yugoslav Fictional", - "countries": [ - "SRB" - ] - }, - "us marines fictional": { - "name": "US Marines Fictional", - "countries": [ - "USA" - ] - }, - "nato_drab_hel": { - "name": "Hellenic Airforce Olive Drab", - "countries": "All" - }, - "nato_drab_uk": { - "name": "Army Air Corps Olive Drab", - "countries": "All" - }, - "tiger meet": { - "name": "Tiger Meet", - "countries": [ - "FRA" - ] - }, - "cyprus air force": { - "name": "Cyprus air force", - "countries": [ - "", - "CYP" - ] - }, - "russia fictional": { - "name": "Russia Fictional", - "countries": [ - "RUS" - ] - }, - "greece cyprus fictional desert": { - "name": "Greece Cyprus Fictional Desert", - "countries": [ - "GRC" - ] - }, - "fr green armee hri": { - "name": "Armee HRI", - "countries": [ - "FRA" - ] - }, - "tiger meet 2": { - "name": "Tiger Meet 2", - "countries": [ - "FRA" - ] - }, - "germany fictional": { - "name": "Germany Fictional", - "countries": [ - "GER" - ] - }, - "syria fictional": { - "name": "Syria Fictional", - "countries": [ - "SYR" - ] - }, - "serbia fictional": { - "name": "Serbia Fictional", - "countries": [ - "SRB" - ] - } - }, - "type": "Helicopter", - "description": "1 engine, 2 crew scout helicopter. Gazelle", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "SA342M": { - "name": "SA342M", - "coalition": "blue", - "era": "Mid Cold War", - "label": "SA342M Gazelle", - "shortLabel": "342", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "HOT3x4", - "name": "HOT3x4", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "IR Deflector", - "name": "IR Deflector", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - }, - { - "name": "Sand Filter", - "quantity": 1 - }, - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "Hot3x4, FAS, IR Deflector", - "name": "Hot3x4, FAS, IR Deflector", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 2 - } - ], - "enabled": true, - "code": "HOT3x2", - "name": "HOT3x2", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - }, - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "Hot3x4, IR Deflector", - "name": "Hot3x4, IR Deflector", - "roles": [ - "CAS" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 2 - }, - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "Hot3x2, IR Deflector", - "name": "Hot3x2, IR Deflector", - "roles": [ - "CAS" - ] - } - ], - "filename": "sa-342.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "AFAC", - "CAP", - "Reconnaissance" - ], - "liveries": { - "portuguese modern fictional": { - "name": "Portuguese modern Fictional", - "countries": [ - "", - "FRA", - "PRT" - ] - }, - "uk fictional": { - "name": "UK Fictional", - "countries": [ - "UK" - ] - }, - "training ealat": { - "name": "Training EALAT", - "countries": [ - "FRA" - ] - }, - "israel fictional": { - "name": "Israel Fictional", - "countries": [ - "ISR" - ] - }, - "nato_drab_us": { - "name": "US Army Olive Drab", - "countries": "All" - }, - "nato_drab_nl": { - "name": "RNLAF Olive Drab", - "countries": "All" - }, - "training": { - "name": "Training", - "countries": [ - "FRA" - ] - }, - "combat": { - "name": "Combat", - "countries": [ - "FRA" - ] - }, - "combat sable": { - "name": "Combat desert", - "countries": [ - "FRA" - ] - }, - "dutch fictional": { - "name": "RNLAF fictional", - "countries": [ - "", - "NETH" - ] - }, - "yugoslav fictional": { - "name": "Yugoslav Fictional", - "countries": [ - "SRB" - ] - }, - "us marines fictional": { - "name": "US Marines Fictional", - "countries": [ - "USA" - ] - }, - "nato_drab_hel": { - "name": "Hellenic Airforce Olive Drab", - "countries": "All" - }, - "nato_drab_uk": { - "name": "Army Air Corps Olive Drab", - "countries": "All" - }, - "tiger meet": { - "name": "Tiger Meet", - "countries": [ - "FRA" - ] - }, - "cyprus air force": { - "name": "Cyprus air force", - "countries": [ - "", - "CYP" - ] - }, - "russia fictional": { - "name": "Russia Fictional", - "countries": [ - "RUS" - ] - }, - "greece cyprus fictional desert": { - "name": "Greece Cyprus Fictional Desert", - "countries": [ - "GRC" - ] - }, - "tiger meet 2": { - "name": "Tiger Meet 2", - "countries": [ - "FRA" - ] - }, - "germany fictional": { - "name": "Germany Fictional", - "countries": [ - "GER" - ] - }, - "syria fictional": { - "name": "Syria Fictional", - "countries": [ - "SYR" - ] - }, - "serbia fictional": { - "name": "Serbia Fictional", - "countries": [ - "SRB" - ] - } - }, - "type": "Helicopter", - "description": "1 engine, 2 crew scout helicopter. Gazelle", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "SA342Mistral": { - "name": "SA342Mistral", - "coalition": "blue", - "era": "Mid Cold War", - "label": "SA342Mistral Gazelle", - "shortLabel": "342", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "CAP" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - } - ], - "enabled": true, - "code": "Mistral x 4", - "name": "Mistral x 4", - "roles": [ - "CAP" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - }, - { - "name": "IR Deflector", - "quantity": 1 - } - ], - "enabled": true, - "code": "Mistral x 4, IR Deflector", - "name": "Mistral x 4, IR Deflector", - "roles": [ - "CAP" - ] - }, - { - "items": [ - { - "name": null, - "quantity": 4 - }, - { - "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": [ - "CAP" - ] - } - ], - "filename": "sa-342.png", - "enabled": true, - "roles": [ - "AFAC", - "CAP", - "Reconnaissance" - ], - "liveries": { - "portuguese modern fictional": { - "name": "Portuguese modern Fictional", - "countries": [ - "", - "FRA", - "PRT" - ] - }, - "greece cyprus fictional desert": { - "name": "Greece Cyprus Fictional Desert", - "countries": [ - "GRC" - ] - }, - "russia fictional": { - "name": "Russia Fictional", - "countries": [ - "RUS" - ] - }, - "training ealat": { - "name": "Training EALAT", - "countries": [ - "FRA" - ] - }, - "tiger meet 2": { - "name": "Tiger Meet 2", - "countries": [ - "FRA" - ] - }, - "combat sable": { - "name": "Combat desert", - "countries": [ - "FRA" - ] - }, - "germany fictional": { - "name": "Germany Fictional", - "countries": [ - "GER" - ] - }, - "tiger meet": { - "name": "Tiger Meet", - "countries": [ - "FRA" - ] - }, - "uk fictional": { - "name": "UK Fictional", - "countries": [ - "UK" - ] - }, - "syria fictional": { - "name": "Syria Fictional", - "countries": [ - "SYR" - ] - }, - "dutch fictional": { - "name": "RNLAF fictional", - "countries": [ - "", - "NETH" - ] - }, - "yugoslav fictional": { - "name": "Yugoslav Fictional", - "countries": [ - "SRB" - ] - }, - "us marines fictional": { - "name": "US Marines Fictional", - "countries": [ - "USA" - ] - }, - "israel fictional": { - "name": "Israel Fictional", - "countries": [ - "ISR" - ] - }, - "training": { - "name": "Training", - "countries": [ - "FRA" - ] - }, - "combat": { - "name": "Combat", - "countries": [ - "FRA" - ] - }, - "serbia fictional": { - "name": "Serbia Fictional", - "countries": [ - "SRB" - ] - }, - "cyprus air force": { - "name": "Cyprus air force", - "countries": [ - "", - "CYP" - ] - } - }, - "type": "Helicopter", - "description": "1 engine, 2 crew scout helicopter. Gazelle", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "SH-60B": { - "name": "SH-60B", - "coalition": "blue", - "era": "Mid Cold War", - "label": "SH-60B Seahawk", - "shortLabel": "S60", - "loadouts": [ - { - "items": [ - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - } - ], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "Transport" - ] - }, - { - "items": [ - { - "name": "AGM-119B Penguin ASM", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - }, - { - "name": "", - "quantity": 1 - } - ], - "enabled": true, - "code": "AGM-119", - "name": "AGM-119", - "roles": [ - "Antiship Strike" - ] - }, - { - "name": "asd", - "code": "", - "fuel": 1, - "items": [], - "roles": [] - }, - { - "name": "asd", - "code": "", - "fuel": 1, - "items": [], - "roles": [] - } - ], - "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", - "acquisitionRange": "", - "engagementRange": "", - "abilities": "" - }, - "UH-1H": { - "name": "UH-1H", - "coalition": "blue", - "era": "Early Cold War", - "label": "UH-1H Huey", - "shortLabel": "UH1", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "Transport" - ] - }, - { - "items": [ - { - "name": "M134 - 6 x 7.62mm MiniGun left", - "quantity": 1 - }, - { - "name": "XM158 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, 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", - "AFAC" - ] - } - ], - "filename": "uh-1.png", - "enabled": true, - "roles": [ - "CAS", - "Strike", - "Transport" - ], - "liveries": { - "[civilian] nasa": { - "name": "[Civilian] NASA", - "countries": [ - "USA" - ] - }, - "norwegian coast guard (235)": { - "name": "Norwegian Coast Guard (235)", - "countries": [ - "NOR" - ] - }, - "australia royal navy": { - "name": "Royal Australian Navy", - "countries": [ - "AUS" - ] - }, - "australia raaf 171 sqn": { - "name": "RAAF 171 Sqn", - "countries": [ - "AUS" - ] - }, - "spanish un": { - "name": "Spanish UN", - "countries": [ - "UN", - "SPN" - ] - }, - "xw-pfj air america": { - "name": "XW-PFJ Air America", - "countries": [ - "USA" - ] - }, - "rf air force broken": { - "name": "RF Air Force Broken", - "countries": [ - "RUS" - ] - }, - "[civilian] standard": { - "name": "Olive drab", - "countries": [ - "RSO", - "INS", - "BEL", - "ABH", - "NOR", - "UK", - "DEN", - "USA" - ] - }, - "greek army aviation": { - "name": "Greek Army Aviation", - "countries": [ - "GRC" - ] - }, - "greek army aviation medic": { - "name": "Greek Army Aviation Medic", - "countries": [ - "GRC" - ] - }, - "italy marina militare s.n. 80951 7-20": { - "name": "Marina Militare s.n. 80951 7-20", - "countries": [ - "ITA" - ] - }, - "us navy": { - "name": "US NAVY", - "countries": [ - "USA" - ] - }, - "australia raaf 1968": { - "name": "RAAF 1968", - "countries": [ - "AUS" - ] - }, - "ukrainian army": { - "name": "Ukrainian Army", - "countries": [ - "UKR" - ] - }, - "[civilian] vip": { - "name": "[Civilian] VIP", - "countries": [ - "USA" - ] - }, - "usa un": { - "name": "USA UN", - "countries": [ - "USA", - "UN" - ] - }, - "royal netherlands af": { - "name": "Royal Netherlands AF", - "countries": [ - "NETH" - ] - }, - "turkish air force": { - "name": "Turkish Air Force", - "countries": [ - "TUR" - ] - }, - "israel army": { - "name": "Israel Army", - "countries": [ - "ISR" - ] - }, - "[civilian] medical": { - "name": "[Civilian] Medical", - "countries": [ - "USA" - ] - }, - "luftwaffe": { - "name": "Luftwaffe", - "countries": [ - "GER" - ] - }, - "usa red flag": { - "name": "USA Red Flag", - "countries": [ - "USA" - ] - }, - "canadian force": { - "name": "Canadian Force", - "countries": [ - "CAN" - ] - }, - "italy e.i. 4b regg. altair": { - "name": "E.I. 4В° Regg. ALTAIR", - "countries": [ - "ITA" - ] - }, - "georgian af camo": { - "name": "Georgian AF Camo", - "countries": [ - "GRG" - ] - }, - "us army 1972": { - "name": "US ARMY 1972", - "countries": [ - "USA" - ] - }, - "georgian air force": { - "name": "Georgian Air Force", - "countries": [ - "GRG" - ] - }, - "french army": { - "name": "French Army", - "countries": [ - "FRA" - ] - }, - "algerian af bv-32": { - "name": "Algerian AF BV-32", - "countries": [ - "DZA" - ] - }, - "hellenic airforce sar": { - "name": "Hellenic Airforce - S.A.R.", - "countries": [ - "GRC" - ] - }, - "italy 15b stormo s.a.r -soccorso": { - "name": "15В° Stormo S.A.R -Soccorso", - "countries": [ - "ITA" - ] - }, - "rf air force grey": { - "name": "RF Air Force Grey", - "countries": [ - "RUS" - ] - }, - "spanish army": { - "name": "Spanish Army", - "countries": [ - "SPN" - ] - }, - "norwegian un": { - "name": "Norwegian UN", - "countries": [ - "UN", - "NOR" - ] - }, - "us dos": { - "name": "US DOS", - "countries": [ - "USA" - ] - }, - "army standard": { - "name": "Army Standard", - "countries": [ - "USA" - ] - }, - "us ft. rucker": { - "name": "US Ft. Rucker", - "countries": [ - "USA" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 2 crew transport helicopter. Huey", - "abilities": "", - "acquisitionRange": "", - "engagementRange": "" - }, - "UH-60A": { - "name": "UH-60A", - "coalition": "blue", - "era": "Mid Cold War", - "label": "UH-60A Blackhawk", - "shortLabel": "U60", - "loadouts": [ - { - "items": [], - "enabled": true, - "code": "", - "name": "Empty loadout", - "roles": [ - "Transport" - ] - } - ], - "filename": "uh-60.png", - "enabled": true, - "roles": [ - "Transport" - ], - "liveries": { - "israil_un": { - "name": "ISRAIL_UN", - "countries": [ - "ISR", - "UN" - ] - }, - "standard": { - "name": "standard", - "countries": [ - "SPN", - "RSO", - "ITA", - "BEL", - "CAN", - "FRA", - "GRG", - "NETH", - "NOR", - "ABH", - "GER", - "UK", - "USA", - "UKR", - "DEN", - "RUS", - "ISR", - "TUR" - ] - } - }, - "type": "Helicopter", - "description": "2 engine, 3 crew transport helicopter. Blackhawk", - "acquisitionRange": "", - "engagementRange": "", - "abilities": "" - } + "AH-1W": { + "name": "AH-1W", + "coalition": "blue", + "era": "Mid Cold War", + "label": "AH-1W Cobra", + "shortLabel": "AH1", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70 WP", + "name": "14xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70 WP", + "name": "38xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 14xHYDRA-70", + "name": "8xBGM-71, 14xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 14xHYDRA-70 WP", + "name": "8xBGM-71, 14xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 38xHYDRA-70 WP", + "name": "8xBGM-71, 38xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "14xHYDRA-70", + "name": "14xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "38xHYDRA-70", + "name": "38xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114", + "name": "8xAGM-114", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 4 + } + ], + "enabled": true, + "code": "28xHYDRA-70", + "name": "28xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + }, + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71, 38xHYDRA-70", + "name": "8xBGM-71, 38xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70 WP", + "name": "8xAGM-114, 38xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "4 x BGM-71D TOW ATGM", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xBGM-71", + "name": "8xBGM-71", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts M156, Wht Phos", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 14xHYDRA-70 WP", + "name": "8xAGM-114, 14xHYDRA-70 WP", + "roles": [ + "AFAC" + ] + }, + { + "items": [ + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 4 + } + ], + "enabled": true, + "code": "76xHYDRA-70", + "name": "76xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "LAU-61 pod - 19 x 2.75\" Hydra, UnGd Rkts M151, HE", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 38xHYDRA-70", + "name": "8xAGM-114, 38xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "M299 - 4 x AGM-114K Hellfire", + "quantity": 2 + }, + { + "name": "M260 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "8xAGM-114, 14xHYDRA-70", + "name": "8xAGM-114, 14xHYDRA-70", + "roles": [ + "CAP", + "CAS", + "Strike" + ] + } + ], + "filename": "ah-1.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "usa marines": { + "name": "Marines", + "countries": [ + "USA" + ] + }, + "turkey 1": { + "name": "Turkey", + "countries": [ + "TUR" + ] + }, + "standard": { + "name": "Standard", + "countries": [ + "ISR", + "USA" + ] + }, + "usa x black": { + "name": "Black", + "countries": [ + "USA" + ] + }, + "turkey 2": { + "name": "Turkey 2", + "countries": [ + "TUR" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Cobra", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false + }, + "AH-64D_BLK_II": { + "name": "AH-64D_BLK_II", + "coalition": "blue", + "era": "Modern", + "label": "AH-64D Apache", + "shortLabel": "AH64", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "4 * Fuel Tank 230 gal", + "name": "4 * Fuel Tank 230 gal", + "roles": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "4 * Hellfire station: 4*AGM-114K", + "name": "4 * Hellfire station: 4*AGM-114K", + "roles": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "4 * M261: M151 (6PD)", + "name": "4 * M261: M151 (6PD)", + "roles": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", + "name": "2 * M261: M151 (6PD), 2 * Fuel Tank 230 gal", + "roles": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "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": [ + "AFAC", + "Antiship Strike", + "CAS", + "CAP", + "Strike" + ] + } + ], + "filename": "ah-64.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "avengers 1-227th arb": { + "name": "A Company, Avengers, 1-227th ARB", + "countries": [ + "USA" + ] + }, + "devils 1-1 arb": { + "name": "A Company, Devils, 1-1 ARB", + "countries": [ + "USA" + ] + }, + "egypt air force": { + "name": "Egyptian Air Force", + "countries": [ + "EGY" + ] + }, + "indonesian army - 11th squadron by dendi wirson": { + "name": "Indonesian Army - 11th Squadron/Serbu by Dendi Wirson", + "countries": "All" + }, + "south carolina national guard - 40332": { + "name": "Ghostriders, 1-151st ATKHB SCNG - 40332", + "countries": [ + "USA" + ] + }, + "301 squadron redskins netherlands": { + "name": "301 Squadron Redskins, Royal Netherlands Air Force", + "countries": [ + "NETH" + ] + }, + "korea air force": { + "name": "Republic of Korea Army", + "countries": [ + "KOR" + ] + }, + "south carolina national guard - 40331": { + "name": "Ghostriders, 1-151st ATKHB SCNG - 40331", + "countries": [ + "USA" + ] + }, + "saudi arabian national guard": { + "name": "Saudi Arabian National Guard", + "countries": [ + "SAU" + ] + }, + "south carolina national guard": { + "name": "Ghostriders, 1-151st ATKHB SCNG - Gray TADS", + "countries": [ + "USA" + ] + }, + "664 squadron 9 regiment uk": { + "name": "664 Squadron 9 Regiment AAC UK", + "countries": [ + "UK" + ] + }, + "uae armed forces - od": { + "name": "UAE Armed Forces - Olive Drab", + "countries": [ + "ARE" + ] + }, + "grim reapers 4-2 arb": { + "name": "B Company, Grim Reapers, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "default": { + "name": "default livery", + "countries": [ + "USA" + ] + }, + "662 squadron 3 regiment zj171 uk": { + "name": "662 Squadron 3 Regiment AAC UK - ZJ171", + "countries": [ + "UK" + ] + }, + "12th combat aviation brigade griffins": { + "name": "12th Combat Aviation Brigade Griffins", + "countries": [ + "USA" + ] + }, + "silver spurs 3-17 cav": { + "name": "A Troop, Silver Spurs, 3-17 CAV", + "countries": [ + "USA" + ] + }, + "qatar qeaf": { + "name": "Qatar Emiri Air Force", + "countries": [ + "QAT" + ] + }, + "south carolina national guard - drab tads": { + "name": "Ghostriders, 1-151st ATKHB SCNG - Drab TADS", + "countries": [ + "USA" + ] + }, + "archangel 4-2 arb": { + "name": "A Company, Archangel, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "killer bees 1-130th arb ncng": { + "name": "B Company, Killer Bees, 1-130th ARB NCNG", + "countries": [ + "USA" + ] + }, + "wolfpack 1-82 arb": { + "name": "Wolfpack, 1-82 ARB", + "countries": [ + "USA" + ] + }, + "gunslingers 2-159th arb": { + "name": "C Company, Gunslingers, 2-159th ARB", + "countries": [ + "USA" + ] + }, + "the air pirates 1-211th arb": { + "name": "A Company, The Air Pirates, 1-211th ARB UTNG", + "countries": [ + "USA" + ] + }, + "25th_combat_aviation_brigade_by_lee1hy": { + "name": "2-6 CAV, 25th Combat Aviation Brigade", + "countries": [ + "USA" + ] + }, + "apache iaf grey": { + "name": "Indian Air Force - Gray", + "countries": [ + "IND" + ] + }, + "jgsdf\u2014\u20141st_combat_helicopter_unit": { + "name": "1st Combat Helicopter Unit, Japanese Ground SDF", + "countries": [ + "JPN" + ] + }, + "slayers 4-2 arb": { + "name": "C Company, Slayers, 4-2 ARB", + "countries": [ + "USA" + ] + }, + "iaf 113th hornet squadron": { + "name": "IAF 113th Hornet Squadron", + "countries": [ + "ISR" + ] + }, + "1st attack helicopter battalion greece": { + "name": "1st Attack Helicopter Battalion, Hellenic Army Aviation", + "countries": [ + "GRC" + ] + }, + "1st_bat_greek_pegasus_es1008": { + "name": "Pegasus Display Team - ES1008, Hellenic Army Aviation", + "countries": [ + "GRC" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Apache", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false + }, + "Ka-50_3": { + "name": "Ka-50_3", + "coalition": "red", + "era": "Late Cold War", + "label": "Ka-50 Hokum A", + "shortLabel": "K50", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + } + ], + "enabled": true, + "code": "4xIgla", + "name": "4xIgla", + "roles": [ + "CAS" + ] + }, + { + "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xKh-25ML, 10xS-13, 4xIgla", + "name": "2xKh-25ML, 10xS-13, 4xIgla", + "roles": [ + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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", + "CAP" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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-1 Vikhr-M ATGM, LOSBR, Tandem HEAT/Frag", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "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", + "CAP" + ] + }, + { + "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", + "CAP" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "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 pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "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": [ + "AFAC" + ] + }, + { + "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": [ + "AFAC" + ] + }, + { + "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": [ + "CAP" + ] + }, + { + "items": [ + { + "name": "9S846 Strelets - 2 x 9M39 Igla", + "quantity": 2 + }, + { + "name": "APU-6 - 6 x 9M127-1 Vikhr-M 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": [ + "CAP" + ] + } + ], + "filename": "ka-50.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "ka-50_camo_chechnya_ussr": { + "name": "Standart camo n/a 2000-2001 Chechnya", + "countries": [ + "RSI", + "GRC", + "EGY", + "ITA", + "CHN", + "INS", + "SUI", + "AUT", + "SVK", + "AUSAF", + "MAR", + "CUB", + "NZG", + "UKR", + "RUS", + "DZA", + "ARE", + "BGR", + "POL", + "HUN", + "MYS", + "PHL", + "QAT", + "SYR", + "CAN", + "BEL", + "ABH", + "OMN", + "ROU", + "ETH", + "UK", + "BHR", + "USA", + "DEN", + "TUR", + "VEN", + "JOR", + "YUG", + "THA", + "SWE", + "JPN", + "BLR", + "HND", + "CHL", + "BRA", + "SRB", + "FRA", + "GRG", + "NETH", + "KAZ", + "MEX", + "PAK", + "ISR", + "KOR", + "SDN", + "FIN", + "SPN", + "RSO", + "CZE", + "SUN", + "YEM", + "PRK", + "LBY", + "NOR", + "VNM", + "IDN", + "GER", + "IND", + "IRN", + "HRV", + "KWT", + "TUN", + "IRQ", + "SAU", + "RSA", + "AUS" + ] + }, + "default": { + "name": "Standart camo Russian Air Force", + "countries": [ + "RUS" + ] + }, + "ka-50_desert_blackshark": { + "name": "Desert camo #018 Zhukovsky 1997 Black Shark", + "countries": [ + "RUS" + ] + }, + "ka-50_standart_black_russianairforce": { + "name": "Standart black Russian Air Force", + "countries": [ + "RUS" + ] + }, + "ka-50_black_neutral": { + "name": "Black neutral n/a", + "countries": [ + "RSI", + "GRC", + "EGY", + "ITA", + "CHN", + "INS", + "SUI", + "AUT", + "SVK", + "AUSAF", + "MAR", + "CUB", + "NZG", + "UKR", + "RUS", + "DZA", + "ARE", + "BGR", + "POL", + "HUN", + "MYS", + "PHL", + "QAT", + "SYR", + "CAN", + "BEL", + "ABH", + "OMN", + "ROU", + "ETH", + "UK", + "BHR", + "USA", + "DEN", + "TUR", + "VEN", + "JOR", + "YUG", + "THA", + "SWE", + "JPN", + "BLR", + "HND", + "CHL", + "BRA", + "SRB", + "FRA", + "GRG", + "NETH", + "KAZ", + "MEX", + "PAK", + "ISR", + "KOR", + "SDN", + "FIN", + "SPN", + "RSO", + "CZE", + "SUN", + "YEM", + "PRK", + "LBY", + "NOR", + "VNM", + "IDN", + "GER", + "IND", + "IRN", + "HRV", + "KWT", + "TUN", + "IRQ", + "SAU", + "RSA", + "AUS" + ] + }, + "ka-50_desert_werewolf": { + "name": "Desert camo #018 Zhukovsky 1995 Werewolf", + "countries": [ + "RUS" + ] + }, + "ka-50_blackshark_torzhok": { + "name": "344th Center for Combat Employment Torzhok city Shark 1997", + "countries": [ + "RUS" + ] + }, + "ka-50_black_werewolf": { + "name": "Black #020 Farnborough 1992 Werewolf", + "countries": [ + "RUS" + ] + }, + "ka-50_black_h347_blackshark": { + "name": "Black H347 Le Bourget 1997 Black Shark", + "countries": [ + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 1 crew attack helicopter. Blackshark", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false + }, + "Mi-24P": { + "name": "Mi-24P", + "coalition": "red", + "era": "Mid Cold War", + "label": "Mi-24P Hind", + "shortLabel": "Mi24", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm-V (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-V (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", + "CAP" + ] + }, + { + "items": [ + { + "name": "B-8V20A - 20 x UnGd Rkts, 80 mm S-8KOM HEAT/Frag", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm-V (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-V (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-V (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 pod - 32 x S-5KO", + "quantity": 4 + }, + { + "name": "2 x 9M114 Shturm-V (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-V (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-V (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-V (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", + "CAP" + ] + }, + { + "items": [ + { + "name": "2 x 9M114 Shturm-V (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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "APU-68 - S-24B", + "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "APU-68 - S-24B", + "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-V (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-V (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-V (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-V (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-V (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-V (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": [ + "CAS" + ] + } + ], + "filename": "mi-24.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "CAP", + "Transport", + "AFAC", + "Antiship Strike" + ], + "liveries": { + "af torzhok afb": { + "name": "RF Air Force, aerobatics team 'Berkuts'", + "countries": [ + "SUN", + "RUS" + ] + }, + "georgian air force": { + "name": "Georgian Air Force", + "countries": [ + "GRG" + ] + }, + "united nations": { + "name": "United Nations ", + "countries": [ + "UN", + "GRG", + "UKR", + "RUS" + ] + }, + "iqaf": { + "name": "Iraqi Army Air Corps", + "countries": [ + "IRQ" + ] + }, + "russian air force": { + "name": "RF Air Force Standard", + "countries": [ + "SUN", + "RUS" + ] + }, + "af 440 ovp": { + "name": "RF Air Force, 440th Helicopter Regiment", + "countries": [ + "SUN", + "RUS" + ] + }, + "syaaf": { + "name": "Syrian Air Force", + "countries": [ + "SYR" + ] + }, + "af syzran afb": { + "name": "RF Air Force, Syzran AFB", + "countries": [ + "SUN", + "RUS" + ] + }, + "af ussr": { + "name": "USSR Air Force", + "countries": [ + "SUN", + "RUS" + ] + }, + "ukrainian army aviation": { + "name": "Ukrainian Army Aviation", + "countries": [ + "UKR" + ] + }, + "af standard3 old": { + "name": "RF Air Force (weathered) type3", + "countries": [ + "SUN", + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Hind", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false + }, + "Mi-26": { + "name": "Mi-26", + "coalition": "red", + "era": "Late Cold War", + "label": "Mi-26 Halo", + "shortLabel": "M26", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "Transport" + ] + } + ], + "filename": "mi-26.png", + "enabled": true, + "roles": [ + "Transport" + ], + "liveries": { + "united nations": { + "name": "United Nations", + "countries": "All" + }, + "rf air force": { + "name": "RF Air Force", + "countries": [ + "SUN", + "RUS" + ] + }, + "7th separate brigade of aa (kalinov)": { + "name": "7th Separate Brigade of AA (Kalinov)", + "countries": [ + "UKR" + ] + }, + "china flying dragon aviation": { + "name": "China Flying Dragon Aviation", + "countries": [ + "CHN" + ] + }, + "russia_fsb": { + "name": "Russia_FSB", + "countries": [ + "RUS" + ] + }, + "russia_mvd": { + "name": "Russia_MVD", + "countries": [ + "RUS" + ] + }, + "algerian air force sl-22": { + "name": "Algerian AF SL-22 ", + "countries": [ + "DZA" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 5 crew transport helicopter. Halo", + "acquisitionRange": "", + "engagementRange": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Mi-28N": { + "name": "Mi-28N", + "coalition": "red", + "era": "Modern", + "label": "Mi-28N Havoc", + "shortLabel": "M28", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "FAB-250 - 250kg GP Bomb LD", + "quantity": 2 + } + ], + "enabled": true, + "code": "2xFAB-250", + "name": "2xFAB-250", + "roles": [ + "Strike" + ] + }, + { + "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", + "CAP" + ] + }, + { + "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", + "CAP" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + }, + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114, 10xS-13", + "name": "16x9M114, 10xS-13", + "roles": [ + "CAS", + "Strike", + "CAP", + "Antiship Strike" + ] + }, + { + "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-V (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", + "CAP" + ] + }, + { + "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": [ + "AFAC" + ] + }, + { + "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", + "CAP" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm-V (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", + "CAP" + ] + }, + { + "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-V (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", + "CAP", + "Antiship Strike" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 2 + } + ], + "enabled": true, + "code": "16x9M114", + "name": "16x9M114", + "roles": [ + "CAS", + "Strike", + "CAP" + ] + }, + { + "items": [ + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 4 + } + ], + "enabled": true, + "code": "20xS-13", + "name": "20xS-13", + "roles": [ + "CAS", + "Strike", + "CAP" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm-V (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", + "CAP" + ] + }, + { + "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-V (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": [ + "AFAC" + ] + }, + { + "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": [ + "AFAC" + ] + }, + { + "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-V (AT-6 Spiral) - ATGM, SACLOS, HEAT", + "quantity": 1 + } + ], + "enabled": true, + "code": "9x9M114", + "name": "9x9M114", + "roles": [ + "CAS", + "Strike", + "CAP" + ] + }, + { + "items": [ + { + "name": "B-13L pod - 5 x S-13-OF, 122mm UnGd Rkts, Blast/Frag", + "quantity": 2 + } + ], + "enabled": true, + "code": "10xS-13", + "name": "10xS-13", + "roles": [ + "CAS", + "Strike", + "CAP" + ] + }, + { + "items": [ + { + "name": "8 x 9M114 Shturm-V (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-V (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", + "CAP" + ] + } + ], + "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" + ] + }, + "night": { + "name": "Night", + "countries": [ + "RUS" + ] + }, + "aaf sc-11": { + "name": "Algerian AF Desert SC-11", + "countries": [ + "DZA" + ] + }, + "standard": { + "name": "Standard", + "countries": [ + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew attack helicopter. Havoc", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": true, + "canRearm": false + }, + "Mi-8MT": { + "name": "Mi-8MT", + "coalition": "red", + "era": "Mid Cold War", + "label": "Mi-8MT Hip", + "shortLabel": "Mi8", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "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": { + "algerian af green": { + "name": "Algerian AF Green", + "countries": [ + "DZA" + ] + }, + "russia_mvd_mozdok": { + "name": "RF MVD Mozdok", + "countries": [ + "RUS" + ] + }, + "south ossetia": { + "name": "Fictional RSO", + "countries": [ + "RSO" + ] + }, + "united kingdom": { + "name": "Project curium", + "countries": [ + "UK" + ] + }, + "russia_kazanvz": { + "name": "Civil KazanVZ", + "countries": [ + "RUS" + ] + }, + "germany": { + "name": "Germany ARMY", + "countries": [ + "GER" + ] + }, + "china plaaa camo": { + "name": "PLA Army Aviation Camo", + "countries": [ + "CHN" + ] + }, + "russia_vvs_grey_2": { + "name": "RF Army Gray", + "countries": [ + "RUS" + ] + }, + "algerian af new desert": { + "name": "Algerian AF New Desert", + "countries": [ + "DZA" + ] + }, + "denmark": { + "name": "Fictional Olive", + "countries": [ + "DEN" + ] + }, + "russia_vvs_grey": { + "name": "RF Army Gray", + "countries": [ + "RUS" + ] + }, + "russia_aeroflot": { + "name": "Civil AEROFLOT", + "countries": [ + "SUN", + "RUS" + ] + }, + "russia_fsb": { + "name": "RF FSB Standard", + "countries": [ + "RUS" + ] + }, + "china plaaa white": { + "name": "PLA Army Aviation White", + "countries": [ + "CHN" + ] + }, + "ir afagir blue": { + "name": "AFAGIR Blue", + "countries": [ + "IRN" + ] + }, + "usa_afg": { + "name": "438th Air Expeditionary Wing", + "countries": [ + "USA" + ] + }, + "spain": { + "name": "Fictional Spain AF", + "countries": [ + "SPN" + ] + }, + "italy navy": { + "name": "Fictional NAVY", + "countries": [ + "ITA" + ] + }, + "russia_pf_ambulance": { + "name": "Russia Ambulance (PF)", + "countries": [ + "RUS" + ] + }, + "georgia": { + "name": "Georgian Standard", + "countries": [ + "GRG" + ] + }, + "russia_vertolety_russia_2": { + "name": "Civil Vertolety RUSSIA 22880", + "countries": [ + "RUS" + ] + }, + "ukraine": { + "name": "Standard", + "countries": [ + "UKR" + ] + }, + "russia_gazprom": { + "name": "Civil Gazprom Avia", + "countries": [ + "RUS" + ] + }, + "russia_utair": { + "name": "Civil Russia UTair", + "countries": [ + "RUS" + ] + }, + "russia_vvs_ma": { + "name": "RF Navy", + "countries": [ + "RUS" + ] + }, + "russia_vvs_standard_2": { + "name": "RF Army Standart", + "countries": [ + "RUS" + ] + }, + "hellenic army aviation": { + "name": "Hellenic Army Aviation (Fictional)", + "countries": [ + "GRC" + ] + }, + "belgium": { + "name": "Fictional Olive", + "countries": [ + "BEL" + ] + }, + "insurgents": { + "name": "Standard", + "countries": [ + "INS" + ] + }, + "ir afagir sand": { + "name": "AFAGIR Sand", + "countries": [ + "IRN" + ] + }, + "ir iranian special police forces": { + "name": "NAJA", + "countries": [ + "IRN" + ] + }, + "russia_lii_gromov ra-25546": { + "name": "Civil Lii Gromov RA-25546", + "countries": [ + "RUS" + ] + }, + "russia_naryan-mar": { + "name": "Civil_Russia Naryan-Mar", + "countries": [ + "RUS" + ] + }, + "algerian af vip": { + "name": "Algerian AF VIP", + "countries": [ + "DZA" + ] + }, + "russia_vvs_standard": { + "name": " RF Army Standard", + "countries": [ + "RUS" + ] + }, + "russia_mvd_standard": { + "name": "RF MVD Standard", + "countries": [ + "RUS" + ] + }, + "israel": { + "name": "Fictional ARMY", + "countries": [ + "ISR" + ] + }, + "china un": { + "name": "PLA Army Aviation United Nations", + "countries": [ + "CHN" + ] + }, + "algerian af green evsan": { + "name": "Algerian AF Green EVSAN", + "countries": [ + "DZA" + ] + }, + "algerian af old desert": { + "name": "Algerian AF Old Desert", + "countries": [ + "DZA" + ] + }, + "italy army": { + "name": "Fictional ARMY", + "countries": [ + "ITA" + ] + }, + "france army": { + "name": "Fictional ARMY", + "countries": [ + "FRA" + ] + }, + "abkhazia": { + "name": "Abkhazia", + "countries": [ + "ABH" + ] + }, + "czech air force dark camo": { + "name": "Czech Air Force ID-9XXX", + "countries": [ + "CZE" + ] + }, + "norway": { + "name": "Fictional NAVY", + "countries": [ + "NOR" + ] + }, + "netherlands navy": { + "name": "Fictional NAVY", + "countries": [ + "NETH" + ] + }, + "russia_un": { + "name": "RF UN", + "countries": [ + "UN", + "RUS" + ] + }, + "hellenic airforce sar": { + "name": "Hellenic Airforce - Search and Rescue (Fictional)", + "countries": [ + "GRC" + ] + }, + "canada": { + "name": "Canada_Afghanistan", + "countries": [ + "CAN" + ] + }, + "russia_army_weather": { + "name": "Russia Army Weather", + "countries": [ + "SUN", + "RUS" + ] + }, + "russia_vertolety_russia": { + "name": "Civil Vertolety RUSSIA", + "countries": [ + "RUS" + ] + }, + "turkey": { + "name": "JANDARMA", + "countries": [ + "TUR" + ] + }, + "france navy": { + "name": "Fictional NAVY", + "countries": [ + "FRA" + ] + }, + "netherlands army": { + "name": "Fictional ARMY", + "countries": [ + "NETH" + ] + }, + "standard": { + "name": "Standard", + "countries": [ + "SPN", + "ITA", + "INS", + "CAN", + "FRA", + "NETH", + "NOR", + "GER", + "UK", + "USA", + "ISR", + "TUR", + "AUS" + ] + }, + "australia": { + "name": "Fictional ARMY", + "countries": [ + "AUS" + ] + }, + "bulgarian af": { + "name": "Bulgarian Air Force", + "countries": [ + "BGR" + ] + }, + "russia_police": { + "name": "Civil Russia Police", + "countries": [ + "RUS" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 3 crew transport helicopter. Hip", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA342L": { + "name": "SA342L", + "coalition": "blue", + "era": "Mid Cold War", + "label": "SA342L Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", + "quantity": 1 + } + ], + "enabled": true, + "code": "M621, 8xSNEB68 EAP", + "name": "M621, 8xSNEB68 EAP", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "M621, 8xSNEB68 EAP, IR Deflector", + "name": "M621, 8xSNEB68 EAP, IR Deflector", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "Telson 8 - 8 x UnGd Rkts, 68 mm SNEB Type 251 H1 HE", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + }, + { + "name": "Sand Filter", + "quantity": 1 + } + ], + "enabled": true, + "code": "M621, 8xSNEB68 EAP, IR Deflector, Sand Filter", + "name": "M621, 8xSNEB68 EAP, IR Deflector, Sand Filter", + "roles": [ + "CAS" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "portuguese modern fictional": { + "name": "Portuguese modern Fictional", + "countries": [ + "", + "FRA", + "PRT" + ] + }, + "uk fictional": { + "name": "UK Fictional", + "countries": [ + "UK" + ] + }, + "fr green armee hri daguet": { + "name": "Armee HRI Daguet", + "countries": [ + "FRA" + ] + }, + "israel fictional": { + "name": "Israel Fictional", + "countries": [ + "ISR" + ] + }, + "training ealat": { + "name": "Training EALAT", + "countries": [ + "FRA" + ] + }, + "lebanon": { + "name": "Lebanon", + "countries": "All" + }, + "nato_drab_us": { + "name": "US Army Olive Drab", + "countries": "All" + }, + "nato_drab_nl": { + "name": "RNLAF Olive Drab", + "countries": "All" + }, + "training": { + "name": "Training", + "countries": [ + "FRA" + ] + }, + "combat": { + "name": "Combat", + "countries": [ + "FRA" + ] + }, + "combat sable": { + "name": "Combat desert", + "countries": [ + "FRA" + ] + }, + "dutch fictional": { + "name": "RNLAF fictional", + "countries": [ + "", + "NETH" + ] + }, + "yugoslav fictional": { + "name": "Yugoslav Fictional", + "countries": [ + "SRB" + ] + }, + "us marines fictional": { + "name": "US Marines Fictional", + "countries": [ + "USA" + ] + }, + "nato_drab_hel": { + "name": "Hellenic Airforce Olive Drab", + "countries": "All" + }, + "nato_drab_uk": { + "name": "Army Air Corps Olive Drab", + "countries": "All" + }, + "tiger meet": { + "name": "Tiger Meet", + "countries": [ + "FRA" + ] + }, + "cyprus air force": { + "name": "Cyprus air force", + "countries": [ + "", + "CYP" + ] + }, + "russia fictional": { + "name": "Russia Fictional", + "countries": [ + "RUS" + ] + }, + "greece cyprus fictional desert": { + "name": "Greece Cyprus Fictional Desert", + "countries": [ + "GRC" + ] + }, + "fr green armee hri": { + "name": "Armee HRI", + "countries": [ + "FRA" + ] + }, + "tiger meet 2": { + "name": "Tiger Meet 2", + "countries": [ + "FRA" + ] + }, + "germany fictional": { + "name": "Germany Fictional", + "countries": [ + "GER" + ] + }, + "syria fictional": { + "name": "Syria Fictional", + "countries": [ + "SYR" + ] + }, + "serbia fictional": { + "name": "Serbia Fictional", + "countries": [ + "SRB" + ] + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA342M": { + "name": "SA342M", + "coalition": "blue", + "era": "Mid Cold War", + "label": "SA342M Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "HOT3x4", + "name": "HOT3x4", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "IR Deflector", + "name": "IR Deflector", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + }, + { + "name": "Sand Filter", + "quantity": 1 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Hot3x4, FAS, IR Deflector", + "name": "Hot3x4, FAS, IR Deflector", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 2 + } + ], + "enabled": true, + "code": "HOT3x2", + "name": "HOT3x2", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Hot3x4, IR Deflector", + "name": "Hot3x4, IR Deflector", + "roles": [ + "CAS" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 2 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Hot3x2, IR Deflector", + "name": "Hot3x2, IR Deflector", + "roles": [ + "CAS" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "portuguese modern fictional": { + "name": "Portuguese modern Fictional", + "countries": [ + "", + "FRA", + "PRT" + ] + }, + "uk fictional": { + "name": "UK Fictional", + "countries": [ + "UK" + ] + }, + "training ealat": { + "name": "Training EALAT", + "countries": [ + "FRA" + ] + }, + "israel fictional": { + "name": "Israel Fictional", + "countries": [ + "ISR" + ] + }, + "nato_drab_us": { + "name": "US Army Olive Drab", + "countries": "All" + }, + "nato_drab_nl": { + "name": "RNLAF Olive Drab", + "countries": "All" + }, + "training": { + "name": "Training", + "countries": [ + "FRA" + ] + }, + "combat": { + "name": "Combat", + "countries": [ + "FRA" + ] + }, + "combat sable": { + "name": "Combat desert", + "countries": [ + "FRA" + ] + }, + "dutch fictional": { + "name": "RNLAF fictional", + "countries": [ + "", + "NETH" + ] + }, + "yugoslav fictional": { + "name": "Yugoslav Fictional", + "countries": [ + "SRB" + ] + }, + "us marines fictional": { + "name": "US Marines Fictional", + "countries": [ + "USA" + ] + }, + "nato_drab_hel": { + "name": "Hellenic Airforce Olive Drab", + "countries": "All" + }, + "nato_drab_uk": { + "name": "Army Air Corps Olive Drab", + "countries": "All" + }, + "tiger meet": { + "name": "Tiger Meet", + "countries": [ + "FRA" + ] + }, + "cyprus air force": { + "name": "Cyprus air force", + "countries": [ + "", + "CYP" + ] + }, + "russia fictional": { + "name": "Russia Fictional", + "countries": [ + "RUS" + ] + }, + "greece cyprus fictional desert": { + "name": "Greece Cyprus Fictional Desert", + "countries": [ + "GRC" + ] + }, + "tiger meet 2": { + "name": "Tiger Meet 2", + "countries": [ + "FRA" + ] + }, + "germany fictional": { + "name": "Germany Fictional", + "countries": [ + "GER" + ] + }, + "syria fictional": { + "name": "Syria Fictional", + "countries": [ + "SYR" + ] + }, + "serbia fictional": { + "name": "Serbia Fictional", + "countries": [ + "SRB" + ] + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "SA342Mistral": { + "name": "SA342Mistral", + "coalition": "blue", + "era": "Mid Cold War", + "label": "SA342Mistral Gazelle", + "shortLabel": "342", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + } + ], + "enabled": true, + "code": "Mistral x 4", + "name": "Mistral x 4", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + }, + { + "name": "IR Deflector", + "quantity": 1 + } + ], + "enabled": true, + "code": "Mistral x 4, IR Deflector", + "name": "Mistral x 4, IR Deflector", + "roles": [ + "CAP" + ] + }, + { + "items": [ + { + "name": null, + "quantity": 4 + }, + { + "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": [ + "CAP" + ] + } + ], + "filename": "sa-342.png", + "enabled": true, + "roles": [ + "AFAC", + "CAP", + "Reconnaissance" + ], + "liveries": { + "portuguese modern fictional": { + "name": "Portuguese modern Fictional", + "countries": [ + "", + "FRA", + "PRT" + ] + }, + "greece cyprus fictional desert": { + "name": "Greece Cyprus Fictional Desert", + "countries": [ + "GRC" + ] + }, + "russia fictional": { + "name": "Russia Fictional", + "countries": [ + "RUS" + ] + }, + "training ealat": { + "name": "Training EALAT", + "countries": [ + "FRA" + ] + }, + "tiger meet 2": { + "name": "Tiger Meet 2", + "countries": [ + "FRA" + ] + }, + "combat sable": { + "name": "Combat desert", + "countries": [ + "FRA" + ] + }, + "germany fictional": { + "name": "Germany Fictional", + "countries": [ + "GER" + ] + }, + "tiger meet": { + "name": "Tiger Meet", + "countries": [ + "FRA" + ] + }, + "uk fictional": { + "name": "UK Fictional", + "countries": [ + "UK" + ] + }, + "syria fictional": { + "name": "Syria Fictional", + "countries": [ + "SYR" + ] + }, + "dutch fictional": { + "name": "RNLAF fictional", + "countries": [ + "", + "NETH" + ] + }, + "yugoslav fictional": { + "name": "Yugoslav Fictional", + "countries": [ + "SRB" + ] + }, + "us marines fictional": { + "name": "US Marines Fictional", + "countries": [ + "USA" + ] + }, + "israel fictional": { + "name": "Israel Fictional", + "countries": [ + "ISR" + ] + }, + "training": { + "name": "Training", + "countries": [ + "FRA" + ] + }, + "combat": { + "name": "Combat", + "countries": [ + "FRA" + ] + }, + "serbia fictional": { + "name": "Serbia Fictional", + "countries": [ + "SRB" + ] + }, + "cyprus air force": { + "name": "Cyprus air force", + "countries": [ + "", + "CYP" + ] + } + }, + "type": "Helicopter", + "description": "1 engine, 2 crew scout helicopter. Gazelle", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "SH-60B": { + "name": "SH-60B", + "coalition": "blue", + "era": "Mid Cold War", + "label": "SH-60B Seahawk", + "shortLabel": "S60", + "loadouts": [ + { + "items": [ + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "Transport" + ] + }, + { + "items": [ + { + "name": "AGM-119B Penguin ASM", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + }, + { + "name": "", + "quantity": 1 + } + ], + "enabled": true, + "code": "AGM-119", + "name": "AGM-119", + "roles": [ + "Antiship Strike" + ] + }, + { + "name": "asd", + "code": "", + "fuel": 1, + "items": [], + "roles": [] + }, + { + "name": "asd", + "code": "", + "fuel": 1, + "items": [], + "roles": [] + } + ], + "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", + "acquisitionRange": "", + "engagementRange": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "UH-1H": { + "name": "UH-1H", + "coalition": "blue", + "era": "Early Cold War", + "label": "UH-1H Huey", + "shortLabel": "UH1", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "Transport" + ] + }, + { + "items": [ + { + "name": "M134 - 6 x 7.62mm MiniGun left", + "quantity": 1 + }, + { + "name": "XM158 pod - 7 x 2.75\" Hydra, UnGd Rkts Mk5, 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", + "AFAC" + ] + } + ], + "filename": "uh-1.png", + "enabled": true, + "roles": [ + "CAS", + "Strike", + "Transport" + ], + "liveries": { + "[civilian] nasa": { + "name": "[Civilian] NASA", + "countries": [ + "USA" + ] + }, + "norwegian coast guard (235)": { + "name": "Norwegian Coast Guard (235)", + "countries": [ + "NOR" + ] + }, + "australia royal navy": { + "name": "Royal Australian Navy", + "countries": [ + "AUS" + ] + }, + "australia raaf 171 sqn": { + "name": "RAAF 171 Sqn", + "countries": [ + "AUS" + ] + }, + "spanish un": { + "name": "Spanish UN", + "countries": [ + "UN", + "SPN" + ] + }, + "xw-pfj air america": { + "name": "XW-PFJ Air America", + "countries": [ + "USA" + ] + }, + "rf air force broken": { + "name": "RF Air Force Broken", + "countries": [ + "RUS" + ] + }, + "[civilian] standard": { + "name": "Olive drab", + "countries": [ + "RSO", + "INS", + "BEL", + "ABH", + "NOR", + "UK", + "DEN", + "USA" + ] + }, + "greek army aviation": { + "name": "Greek Army Aviation", + "countries": [ + "GRC" + ] + }, + "greek army aviation medic": { + "name": "Greek Army Aviation Medic", + "countries": [ + "GRC" + ] + }, + "italy marina militare s.n. 80951 7-20": { + "name": "Marina Militare s.n. 80951 7-20", + "countries": [ + "ITA" + ] + }, + "us navy": { + "name": "US NAVY", + "countries": [ + "USA" + ] + }, + "australia raaf 1968": { + "name": "RAAF 1968", + "countries": [ + "AUS" + ] + }, + "ukrainian army": { + "name": "Ukrainian Army", + "countries": [ + "UKR" + ] + }, + "[civilian] vip": { + "name": "[Civilian] VIP", + "countries": [ + "USA" + ] + }, + "usa un": { + "name": "USA UN", + "countries": [ + "USA", + "UN" + ] + }, + "royal netherlands af": { + "name": "Royal Netherlands AF", + "countries": [ + "NETH" + ] + }, + "turkish air force": { + "name": "Turkish Air Force", + "countries": [ + "TUR" + ] + }, + "israel army": { + "name": "Israel Army", + "countries": [ + "ISR" + ] + }, + "[civilian] medical": { + "name": "[Civilian] Medical", + "countries": [ + "USA" + ] + }, + "luftwaffe": { + "name": "Luftwaffe", + "countries": [ + "GER" + ] + }, + "usa red flag": { + "name": "USA Red Flag", + "countries": [ + "USA" + ] + }, + "canadian force": { + "name": "Canadian Force", + "countries": [ + "CAN" + ] + }, + "italy e.i. 4b regg. altair": { + "name": "E.I. 4\u0412\u00b0 Regg. ALTAIR", + "countries": [ + "ITA" + ] + }, + "georgian af camo": { + "name": "Georgian AF Camo", + "countries": [ + "GRG" + ] + }, + "us army 1972": { + "name": "US ARMY 1972", + "countries": [ + "USA" + ] + }, + "georgian air force": { + "name": "Georgian Air Force", + "countries": [ + "GRG" + ] + }, + "french army": { + "name": "French Army", + "countries": [ + "FRA" + ] + }, + "algerian af bv-32": { + "name": "Algerian AF BV-32", + "countries": [ + "DZA" + ] + }, + "hellenic airforce sar": { + "name": "Hellenic Airforce - S.A.R.", + "countries": [ + "GRC" + ] + }, + "italy 15b stormo s.a.r -soccorso": { + "name": "15\u0412\u00b0 Stormo S.A.R -Soccorso", + "countries": [ + "ITA" + ] + }, + "rf air force grey": { + "name": "RF Air Force Grey", + "countries": [ + "RUS" + ] + }, + "spanish army": { + "name": "Spanish Army", + "countries": [ + "SPN" + ] + }, + "norwegian un": { + "name": "Norwegian UN", + "countries": [ + "UN", + "NOR" + ] + }, + "us dos": { + "name": "US DOS", + "countries": [ + "USA" + ] + }, + "army standard": { + "name": "Army Standard", + "countries": [ + "USA" + ] + }, + "us ft. rucker": { + "name": "US Ft. Rucker", + "countries": [ + "USA" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 2 crew transport helicopter. Huey", + "abilities": "", + "acquisitionRange": "", + "engagementRange": "", + "canTargetPoint": false, + "canRearm": false + }, + "UH-60A": { + "name": "UH-60A", + "coalition": "blue", + "era": "Mid Cold War", + "label": "UH-60A Blackhawk", + "shortLabel": "U60", + "loadouts": [ + { + "items": [], + "enabled": true, + "code": "", + "name": "Empty loadout", + "roles": [ + "Transport" + ] + } + ], + "filename": "uh-60.png", + "enabled": true, + "roles": [ + "Transport" + ], + "liveries": { + "israil_un": { + "name": "ISRAIL_UN", + "countries": [ + "ISR", + "UN" + ] + }, + "standard": { + "name": "standard", + "countries": [ + "SPN", + "RSO", + "ITA", + "BEL", + "CAN", + "FRA", + "GRG", + "NETH", + "NOR", + "ABH", + "GER", + "UK", + "USA", + "UKR", + "DEN", + "RUS", + "ISR", + "TUR" + ] + } + }, + "type": "Helicopter", + "description": "2 engine, 3 crew transport helicopter. Blackhawk", + "acquisitionRange": "", + "engagementRange": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + } } \ No newline at end of file diff --git a/client/public/databases/units/navyunitdatabase.json b/client/public/databases/units/navyunitdatabase.json index 3ed33e86..8aed1c41 100644 --- a/client/public/databases/units/navyunitdatabase.json +++ b/client/public/databases/units/navyunitdatabase.json @@ -1,1589 +1,1671 @@ { - "BDK-775": { - "name": "BDK-775", - "coalition": "blue", - "type": "Landing Ship", - "era": "Mid Cold War", - "label": "LS Ropucha", - "shortLabel": "LS Ropucha", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 25000, - "engagementRange": 6000, - "description": "Landing ship Ropucha", - "abilities": "" - }, - "CVN_71": { - "name": "CVN_71", - "coalition": "blue", - "type": "Super Aircraft Carrier", - "era": "Late Cold War", - "label": "CVN-71 Theodore Roosevelt", - "shortLabel": "CVN-71", - "range": "Short", - "filename": "", - "enabled": true, - "acquisitionRange": 50000, - "engagementRange": 25000, - "description": "Ship", - "abilities": "" - }, - "CVN_72": { - "name": "CVN_72", - "coalition": "blue", - "type": "Super Aircraft Carrier", - "era": "Late Cold War", - "label": "CVN-72 Abraham Lincoln", - "shortLabel": "CVN-72", - "range": "Short", - "filename": "", - "enabled": true, - "acquisitionRange": 50000, - "engagementRange": 25000, - "description": "Ship", - "abilities": "" - }, - "CVN_73": { - "name": "CVN_73", - "coalition": "blue", - "type": "Super Aircraft Carrier", - "era": "Late Cold War", - "label": "CVN-73 George Washington", - "shortLabel": "CVN-73", - "range": "Medium", - "filename": "", - "enabled": true, - "acquisitionRange": 50000, - "engagementRange": 25000, - "description": "Ship", - "abilities": "" - }, - "CVN_75": { - "name": "CVN_75", - "coalition": "blue", - "type": "Aircraft Carrier", - "era": "Late Cold War", - "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, - "description": "Ship", - "abilities": "" - }, - "CV_1143_5": { - "name": "CV_1143_5", - "coalition": "red", - "type": "Aircraft Carrier", - "era": "Modern", - "label": "CV Admiral Kuznetsov(2017)", - "shortLabel": "Admiral Kuznetsov(2017)", - "range": "Medium", - "filename": "", - "enabled": true, - "acquisitionRange": 25000, - "engagementRange": 12000, - "description": "Admiral Kuznetsov. Conventional STOBAR carrier", - "abilities": "" - }, - "CastleClass_01": { - "name": "CastleClass_01", - "coalition": "blue", - "type": "Patrol", - "era": "Mid Cold War", - "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, - "description": "HMS Leeds Castle. Smaller. Patrol craft", - "abilities": "" - }, - "HandyWind": { - "name": "HandyWind", - "coalition": "blue", - "type": "Cargoship", - "era": "Late Cold War", - "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, - "description": "", - "abilities": "" - }, - "HarborTug": { - "name": "HarborTug", - "coalition": "", - "type": "Tug", - "era": "Mid Cold War", - "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, - "description": "", - "abilities": "" - }, - "LHA_Tarawa": { - "name": "LHA_Tarawa", - "coalition": "blue", - "type": "Aircraft Carrier", - "era": "Mid Cold War", - "label": "LHA-1 Tarawa", - "shortLabel": "LHA-1 Tarawa", - "range": "Short", - "filename": "", - "enabled": true, - "acquisitionRange": 150000, - "engagementRange": 20000, - "description": "Ship", - "abilities": "" - }, - "La_Combattante_II": { - "name": "La_Combattante_II", - "coalition": "blue", - "type": "Fast Attack Craft", - "era": "Mid Cold War", - "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, - "description": "", - "abilities": "" - }, - "Seawise_Giant": { - "name": "Seawise_Giant", - "coalition": "blue", - "type": "Tanker", - "era": "Late Cold War", - "label": "Tanker Seawise Giant", - "shortLabel": "Seawise Giant", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Ship_Tilde_Supply": { - "name": "Ship_Tilde_Supply", - "coalition": "blue", - "type": "Transport", - "era": "Late Cold War", - "label": "Supply Ship MV Tilde", - "shortLabel": "Supply Ship Tilde", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Stennis": { - "name": "Stennis", - "coalition": "blue", - "type": "Aircraft Carrier", - "era": "Late Cold War", - "label": "CVN-74 John C. Stennis", - "shortLabel": "CVN-74", - "range": "Medium", - "filename": "", - "enabled": true, - "acquisitionRange": 50000, - "engagementRange": 25000, - "description": "", - "abilities": "" - }, - "TICONDEROG": { - "name": "TICONDEROG", - "coalition": "blue", - "type": "Cruiser", - "era": "Late Cold War", - "label": "Ticonderoga", - "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, - "description": "Ship", - "abilities": "" - }, - "Type_052B": { - "name": "Type_052B", - "coalition": "red", - "type": "Destroyer", - "era": "Modern", - "label": "052B DDG-168 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, - "description": "Ship", - "abilities": "" - }, - "Type_052C": { - "name": "Type_052C", - "coalition": "red", - "type": "Destroyer", - "era": "Modern", - "label": "052C DDG-171 Haikou", - "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, - "description": "Ship", - "abilities": "" - }, - "Type_054A": { - "name": "", - "coalition": "red", - "type": "Frigate", - "era": "Modern", - "label": "054A FFG-538 Yantai", - "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, - "description": "Ship", - "abilities": "35nm >50,000ft range" - }, - "Type_071": { - "name": "Type_071", - "coalition": "red", - "type": "Transport", - "era": "Modern", - "label": "Type 071", - "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, - "description": "Ship", - "abilities": "" - }, - "Type_093": { - "name": "Type_093", - "coalition": "red", - "type": "Submarine", - "era": "Modern", - "label": "Type 093", - "shortLabel": "Type 093", - "range": "", - "filename": "", - "enabled": true, - "liveries": { - "periscope_state_1": { - "name": "Periscope State 1", - "countries": "All" - } - }, - "acquisitionRange": 40000, - "engagementRange": 40000, - "description": "", - "abilities": "" - }, - "USS_Arleigh_Burke_IIa": { - "name": "USS_Arleigh_Burke_IIa", - "coalition": "blue", - "type": "Destroyer", - "era": "Late Cold War", - "label": "DDG Arleigh Burke lla", - "shortLabel": "DDG Arleigh Burke", - "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": "", - "description": "" - }, - "ara_vdm": { - "name": "ara_vdm", - "coalition": "", - "type": "Aircraft Carrier", - "era": "Mid Cold War", - "label": "ARA Vienticinco de Mayo", - "shortLabel": "ARA Vienticinco de Mayo", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 18000, - "engagementRange": 5000, - "description": "ARA Vienticinco de Mayo. Conventional CATOBAR carrier", - "abilities": "" - }, - "hms_invincible": { - "name": "hms_invincible", - "coalition": "blue", - "type": "Aircraft Carrier", - "era": "Mid Cold War", - "label": "HMS Invincible (R05)", - "shortLabel": "HMS Invincible", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 100000, - "engagementRange": 74000, - "description": "Ship", - "abilities": "" - }, - "leander-gun-achilles": { - "name": "leander-gun-achilles", - "coalition": "blue", - "type": "Frigate", - "era": "Mid Cold War", - "label": "HMS Achilles (F12)", - "shortLabel": "HMS Achilles", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 180000, - "engagementRange": 8000, - "description": "Ship", - "abilities": "" - }, - "leander-gun-andromeda": { - "name": "leander-gun-andromeda", - "coalition": "blue", - "type": "Frigate", - "era": "Mid Cold War", - "label": "HMS Andromeda (F57)", - "shortLabel": "HMS Andromeda", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 180000, - "engagementRange": 140000, - "description": "Ship", - "abilities": "" - }, - "leander-gun-ariadne": { - "name": "leander-gun-ariadne", - "coalition": "blue", - "type": "Frigate", - "era": "Mid Cold War", - "label": "HMS Ariadne (F72)", - "shortLabel": "HMS Ariadne", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 150000, - "engagementRange": 100000, - "description": "Ship", - "abilities": "" - }, - "leander-gun-condell": { - "name": "leander-gun-condell", - "coalition": "", - "type": "Frigate", - "era": "Mid Cold War", - "label": "Almirante Condell PFG-06", - "shortLabel": "Almirante Condell", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 150000, - "engagementRange": 100000, - "description": "Ship", - "abilities": "" - }, - "leander-gun-lynch": { - "name": "leander-gun-lynch", - "coalition": "", - "type": "Frigate", - "era": "Mid Cold War", - "label": "CNS Almirante Lynch (PFG-07)", - "shortLabel": "CNS Almirante Lynch", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 180000, - "engagementRange": 140000, - "description": "Ship", - "abilities": "" - }, - "santafe": { - "name": "santafe", - "coalition": "", - "type": "Submarine", - "era": "Early Cold War", - "label": "ARA Santa Fe S-21", - "shortLabel": "ARA Santa", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "speedboat": { - "name": "speedboat", - "coalition": "", - "era": "", - "label": "Boat Armed Hi-speed", - "shortLabel": "Boat Armed Hi-speed", - "type": "Speedboat", - "enabled": true, - "liveries": {}, - "acquisitionRange": 5000, - "engagementRange": 1000, - "description": "", - "abilities": "" - }, - "VINSON": { - "name": "VINSON", - "coalition": "", - "era": "", - "label": "CVN-70 Carl Vinson", - "shortLabel": "CVN-70 Carl Vinson", - "type": "Aircraft Carrier", - "enabled": true, - "liveries": {}, - "acquisitionRange": 30000, - "engagementRange": 15000, - "description": "", - "abilities": "" - }, - "PERRY": { - "name": "perry", - "coalition": "blue", - "type": "Frigate", - "era": "Mid Cold War", - "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 - }, - "ALBATROS": { - "name": "albatros", - "coalition": "red", - "type": "Frigade", - "era": "Early Cold War", - "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 - }, - "KUZNECOW": { - "name": "kuznecow", - "coalition": "red", - "type": "Aircraft Carrier", - "era": "Late Cold War", - "label": "Admiral Kuznetsov", - "shortLabel": "Admiral Kuznetsov", - "range": "Medium", - "filename": "", - "enabled": true, - "acquisitionRange": 25000, - "engagementRange": 12000 - }, - "MOLNIYA": { - "name": "molniya", - "coalition": "", - "type": "Corvette", - "era": "Late Cold War", - "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 - }, - "MOSCOW": { - "name": "moscow", - "coalition": "red", - "type": "Cruiser", - "era": "Late Cold War", - "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 - }, - "NEUSTRASH": { - "name": "neustrash", - "coalition": "red", - "type": "Frigate", - "era": "Late Cold War", - "label": "Neustrashimy", - "shortLabel": "Neustrashimy", - "range": "Short", - "filename": "", - "enabled": true, - "acquisitionRange": 27000, - "engagementRange": 12000 - }, - "PIOTR": { - "name": "PIOTR", - "coalition": "", - "era": "", - "label": "Battlecruiser 1144.2 Pyotr Velikiy", - "shortLabel": "Battlecruiser 1144.2 Pyotr Velikiy", - "type": "Cruiser", - "enabled": true, - "liveries": {}, - "acquisitionRange": 250000, - "engagementRange": 190000, - "description": "", - "abilities": "" - }, - "REZKY": { - "name": "Rezky (Krivak-2)", - "coalition": "red", - "type": "Frigate", - "era": "Early Cold War", - "label": "Rezky (Krivak-2)", - "shortLabel": "Rezky", - "range": "Short", - "filename": "", - "enabled": true, - "acquisitionRange": 30000, - "engagementRange": 16000 - }, - "ELNYA": { - "name": "elnya", - "coalition": "red", - "type": "Tanker", - "era": "Late Cold War", - "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 - }, - "Dry-cargo ship-2": { - "name": "Dry-cargo ship-2", - "coalition": "", - "era": "", - "label": "Cargo Ivanov", - "shortLabel": "Cargo Ivanov", - "type": "Cargo", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Dry-cargo ship-1": { - "name": "Dry-cargo ship-1", - "coalition": "", - "era": "", - "label": "Bulker Yakushev", - "shortLabel": "Bulker Yakushev", - "type": "Cargo", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "ZWEZDNY": { - "name": "zwezdny", - "coalition": "", - "type": "Civilian Boat", - "era": "Modern", - "label": "Zwezdny", - "shortLabel": "Zwezdny", - "range": "", - "filename": "", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0 - }, - "KILO": { - "name": "kilo", - "coalition": "red", - "type": "Submarine", - "era": "Late Cold War", - "label": "Project 636 Varshavyanka Basic", - "shortLabel": "Varshavyanka Basic", - "range": "Medium", - "filename": "", - "enabled": true, - "acquisitionRange": 0, - "engagementRange": 0 - }, - "IMPROVED_KILO": { - "name": "IMPROVED_KILO", - "coalition": "", - "era": "", - "label": "SSK 636 Improved Kilo", - "shortLabel": "SSK 636 Improved Kilo", - "type": "Submarine", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "SOM": { - "name": "SOM", - "coalition": "", - "era": "", - "label": "SSK 641B Tango", - "shortLabel": "SSK 641B Tango", - "type": "Submarine", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 0, - "description": "", - "abilities": "" - }, - "Forrestal": { - "name": "Forrestal", - "coalition": "", - "era": "", - "label": "CV-59 Forrestal", - "shortLabel": "CV-59 Forrestal", - "type": "Aircraft Carrier", - "enabled": true, - "liveries": {}, - "acquisitionRange": 50000, - "engagementRange": 25000, - "description": "", - "abilities": "" - }, - "LST_Mk2": { - "name": "LST_Mk2", - "coalition": "", - "era": "", - "label": "LST Mk.II", - "shortLabel": "LST Mk.II", - "type": "Landing Ship", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 4000, - "description": "", - "abilities": "" - }, - "USS_Samuel_Chase": { - "name": "USS_Samuel_Chase", - "coalition": "", - "era": "", - "label": "LS Samuel Chase", - "shortLabel": "LS Samuel Chase", - "type": "Landing SHip", - "enabled": true, - "liveries": {}, - "acquisitionRange": 0, - "engagementRange": 7000, - "description": "", - "abilities": "" - }, - "Higgins_boat": { - "name": "Higgins_boat", - "coalition": "", - "era": "", - "label": "Boat LCVP Higgins", - "shortLabel": "Boat LCVP Higgins", - "type": "Landing Ship", - "enabled": true, - "liveries": {}, - "acquisitionRange": 3000, - "engagementRange": 1000, - "description": "", - "abilities": "" - }, - "Uboat_VIIC": { - "name": "Uboat_VIIC", - "coalition": "", - "era": "", - "label": "U-boat VIIC U-flak", - "shortLabel": "U-boat VIIC U-flak", - "type": "Submarine", - "enabled": true, - "liveries": {}, - "acquisitionRange": 20000, - "engagementRange": 4000, - "description": "", - "abilities": "" - }, - "Schnellboot_type_S130": { - "name": "Schnellboot_type_S130", - "coalition": "", - "era": "", - "label": "Boat Schnellboot type S130", - "shortLabel": "Boat Schnellboot type S130", - "type": "Torpedo Boat", - "enabled": true, - "liveries": {}, - "acquisitionRange": 10000, - "engagementRange": 4000, - "description": "", - "abilities": "" - } + "BDK-775": { + "name": "BDK-775", + "coalition": "blue", + "type": "Landing Ship", + "era": "Mid Cold War", + "label": "LS Ropucha", + "shortLabel": "LS Ropucha", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 25000, + "engagementRange": 6000, + "description": "Landing ship Ropucha", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "CVN_71": { + "name": "CVN_71", + "coalition": "blue", + "type": "Super Aircraft Carrier", + "era": "Late Cold War", + "label": "CVN-71 Theodore Roosevelt", + "shortLabel": "CVN-71", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "description": "Ship", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CVN_72": { + "name": "CVN_72", + "coalition": "blue", + "type": "Super Aircraft Carrier", + "era": "Late Cold War", + "label": "CVN-72 Abraham Lincoln", + "shortLabel": "CVN-72", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "description": "Ship", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CVN_73": { + "name": "CVN_73", + "coalition": "blue", + "type": "Super Aircraft Carrier", + "era": "Late Cold War", + "label": "CVN-73 George Washington", + "shortLabel": "CVN-73", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "description": "Ship", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CVN_75": { + "name": "CVN_75", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "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, + "description": "Ship", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CV_1143_5": { + "name": "CV_1143_5", + "coalition": "red", + "type": "Aircraft Carrier", + "era": "Modern", + "label": "CV Admiral Kuznetsov(2017)", + "shortLabel": "Admiral Kuznetsov(2017)", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 25000, + "engagementRange": 12000, + "description": "Admiral Kuznetsov. Conventional STOBAR carrier", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "CastleClass_01": { + "name": "CastleClass_01", + "coalition": "blue", + "type": "Patrol", + "era": "Mid Cold War", + "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, + "description": "HMS Leeds Castle. Smaller. Patrol craft", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "HandyWind": { + "name": "HandyWind", + "coalition": "blue", + "type": "Cargoship", + "era": "Late Cold War", + "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, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "HarborTug": { + "name": "HarborTug", + "coalition": "", + "type": "Tug", + "era": "Mid Cold War", + "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, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "LHA_Tarawa": { + "name": "LHA_Tarawa", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Mid Cold War", + "label": "LHA-1 Tarawa", + "shortLabel": "LHA-1 Tarawa", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 20000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "La_Combattante_II": { + "name": "La_Combattante_II", + "coalition": "blue", + "type": "Fast Attack Craft", + "era": "Mid Cold War", + "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, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Seawise_Giant": { + "name": "Seawise_Giant", + "coalition": "blue", + "type": "Tanker", + "era": "Late Cold War", + "label": "Tanker Seawise Giant", + "shortLabel": "Seawise Giant", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Ship_Tilde_Supply": { + "name": "Ship_Tilde_Supply", + "coalition": "blue", + "type": "Transport", + "era": "Late Cold War", + "label": "Supply Ship MV Tilde", + "shortLabel": "Supply Ship Tilde", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Stennis": { + "name": "Stennis", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "label": "CVN-74 John C. Stennis", + "shortLabel": "CVN-74", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 50000, + "engagementRange": 25000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "TICONDEROG": { + "name": "TICONDEROG", + "coalition": "blue", + "type": "Cruiser", + "era": "Late Cold War", + "label": "Ticonderoga", + "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, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_052B": { + "name": "Type_052B", + "coalition": "red", + "type": "Destroyer", + "era": "Modern", + "label": "052B DDG-168 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, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_052C": { + "name": "Type_052C", + "coalition": "red", + "type": "Destroyer", + "era": "Modern", + "label": "052C DDG-171 Haikou", + "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, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_054A": { + "name": "", + "coalition": "red", + "type": "Frigate", + "era": "Modern", + "label": "054A FFG-538 Yantai", + "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, + "description": "Ship", + "abilities": "35nm >50,000ft range" + }, + "Type_071": { + "name": "Type_071", + "coalition": "red", + "type": "Transport", + "era": "Modern", + "label": "Type 071", + "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, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Type_093": { + "name": "Type_093", + "coalition": "red", + "type": "Submarine", + "era": "Modern", + "label": "Type 093", + "shortLabel": "Type 093", + "range": "", + "filename": "", + "enabled": true, + "liveries": { + "periscope_state_1": { + "name": "Periscope State 1", + "countries": "All" + } + }, + "acquisitionRange": 40000, + "engagementRange": 40000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "USS_Arleigh_Burke_IIa": { + "name": "USS_Arleigh_Burke_IIa", + "coalition": "blue", + "type": "Destroyer", + "era": "Late Cold War", + "label": "DDG Arleigh Burke lla", + "shortLabel": "DDG Arleigh Burke", + "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": "", + "description": "", + "canTargetPoint": true, + "canRearm": false + }, + "ara_vdm": { + "name": "ara_vdm", + "coalition": "", + "type": "Aircraft Carrier", + "era": "Mid Cold War", + "label": "ARA Vienticinco de Mayo", + "shortLabel": "ARA Vienticinco de Mayo", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 18000, + "engagementRange": 5000, + "description": "ARA Vienticinco de Mayo. Conventional CATOBAR carrier", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "hms_invincible": { + "name": "hms_invincible", + "coalition": "blue", + "type": "Aircraft Carrier", + "era": "Mid Cold War", + "label": "HMS Invincible (R05)", + "shortLabel": "HMS Invincible", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 100000, + "engagementRange": 74000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-achilles": { + "name": "leander-gun-achilles", + "coalition": "blue", + "type": "Frigate", + "era": "Mid Cold War", + "label": "HMS Achilles (F12)", + "shortLabel": "HMS Achilles", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 8000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-andromeda": { + "name": "leander-gun-andromeda", + "coalition": "blue", + "type": "Frigate", + "era": "Mid Cold War", + "label": "HMS Andromeda (F57)", + "shortLabel": "HMS Andromeda", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 140000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-ariadne": { + "name": "leander-gun-ariadne", + "coalition": "blue", + "type": "Frigate", + "era": "Mid Cold War", + "label": "HMS Ariadne (F72)", + "shortLabel": "HMS Ariadne", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 100000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-condell": { + "name": "leander-gun-condell", + "coalition": "", + "type": "Frigate", + "era": "Mid Cold War", + "label": "Almirante Condell PFG-06", + "shortLabel": "Almirante Condell", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 150000, + "engagementRange": 100000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "leander-gun-lynch": { + "name": "leander-gun-lynch", + "coalition": "", + "type": "Frigate", + "era": "Mid Cold War", + "label": "CNS Almirante Lynch (PFG-07)", + "shortLabel": "CNS Almirante Lynch", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 180000, + "engagementRange": 140000, + "description": "Ship", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "santafe": { + "name": "santafe", + "coalition": "", + "type": "Submarine", + "era": "Early Cold War", + "label": "ARA Santa Fe S-21", + "shortLabel": "ARA Santa", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "speedboat": { + "name": "speedboat", + "coalition": "", + "era": "", + "label": "Boat Armed Hi-speed", + "shortLabel": "Boat Armed Hi-speed", + "type": "Speedboat", + "enabled": true, + "liveries": {}, + "acquisitionRange": 5000, + "engagementRange": 1000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "VINSON": { + "name": "VINSON", + "coalition": "", + "era": "", + "label": "CVN-70 Carl Vinson", + "shortLabel": "CVN-70 Carl Vinson", + "type": "Aircraft Carrier", + "enabled": true, + "liveries": {}, + "acquisitionRange": 30000, + "engagementRange": 15000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "PERRY": { + "name": "perry", + "coalition": "blue", + "type": "Frigate", + "era": "Mid Cold War", + "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 + }, + "ALBATROS": { + "name": "albatros", + "coalition": "red", + "type": "Frigade", + "era": "Early Cold War", + "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 + }, + "KUZNECOW": { + "name": "kuznecow", + "coalition": "red", + "type": "Aircraft Carrier", + "era": "Late Cold War", + "label": "Admiral Kuznetsov", + "shortLabel": "Admiral Kuznetsov", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 25000, + "engagementRange": 12000 + }, + "MOLNIYA": { + "name": "molniya", + "coalition": "", + "type": "Corvette", + "era": "Late Cold War", + "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 + }, + "MOSCOW": { + "name": "moscow", + "coalition": "red", + "type": "Cruiser", + "era": "Late Cold War", + "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 + }, + "NEUSTRASH": { + "name": "neustrash", + "coalition": "red", + "type": "Frigate", + "era": "Late Cold War", + "label": "Neustrashimy", + "shortLabel": "Neustrashimy", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 27000, + "engagementRange": 12000 + }, + "PIOTR": { + "name": "PIOTR", + "coalition": "", + "era": "", + "label": "Battlecruiser 1144.2 Pyotr Velikiy", + "shortLabel": "Battlecruiser 1144.2 Pyotr Velikiy", + "type": "Cruiser", + "enabled": true, + "liveries": {}, + "acquisitionRange": 250000, + "engagementRange": 190000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "REZKY": { + "name": "Rezky (Krivak-2)", + "coalition": "red", + "type": "Frigate", + "era": "Early Cold War", + "label": "Rezky (Krivak-2)", + "shortLabel": "Rezky", + "range": "Short", + "filename": "", + "enabled": true, + "acquisitionRange": 30000, + "engagementRange": 16000 + }, + "ELNYA": { + "name": "elnya", + "coalition": "red", + "type": "Tanker", + "era": "Late Cold War", + "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 + }, + "Dry-cargo ship-2": { + "name": "Dry-cargo ship-2", + "coalition": "", + "era": "", + "label": "Cargo Ivanov", + "shortLabel": "Cargo Ivanov", + "type": "Cargoship", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Dry-cargo ship-1": { + "name": "Dry-cargo ship-1", + "coalition": "", + "era": "", + "label": "Bulker Yakushev", + "shortLabel": "Bulker Yakushev", + "type": "Cargoship", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "ZWEZDNY": { + "name": "zwezdny", + "coalition": "", + "type": "Civilian Boat", + "era": "Modern", + "label": "Zwezdny", + "shortLabel": "Zwezdny", + "range": "", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0 + }, + "KILO": { + "name": "kilo", + "coalition": "red", + "type": "Submarine", + "era": "Late Cold War", + "label": "Project 636 Varshavyanka Basic", + "shortLabel": "Varshavyanka Basic", + "range": "Medium", + "filename": "", + "enabled": true, + "acquisitionRange": 0, + "engagementRange": 0 + }, + "IMPROVED_KILO": { + "name": "IMPROVED_KILO", + "coalition": "", + "era": "", + "label": "SSK 636 Improved Kilo", + "shortLabel": "SSK 636 Improved Kilo", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "SOM": { + "name": "SOM", + "coalition": "", + "era": "", + "label": "SSK 641B Tango", + "shortLabel": "SSK 641B Tango", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 0, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "Forrestal": { + "name": "Forrestal", + "coalition": "", + "era": "", + "label": "CV-59 Forrestal", + "shortLabel": "CV-59 Forrestal", + "type": "Aircraft Carrier", + "enabled": true, + "liveries": {}, + "acquisitionRange": 50000, + "engagementRange": 25000, + "description": "", + "abilities": "", + "canTargetPoint": false, + "canRearm": false + }, + "LST_Mk2": { + "name": "LST_Mk2", + "coalition": "", + "era": "", + "label": "LST Mk.II", + "shortLabel": "LST Mk.II", + "type": "Landing Ship", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "USS_Samuel_Chase": { + "name": "USS_Samuel_Chase", + "coalition": "", + "era": "", + "label": "LS Samuel Chase", + "shortLabel": "LS Samuel Chase", + "type": "Landing SHip", + "enabled": true, + "liveries": {}, + "acquisitionRange": 0, + "engagementRange": 7000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Higgins_boat": { + "name": "Higgins_boat", + "coalition": "", + "era": "", + "label": "Boat LCVP Higgins", + "shortLabel": "Boat LCVP Higgins", + "type": "Landing Ship", + "enabled": true, + "liveries": {}, + "acquisitionRange": 3000, + "engagementRange": 1000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Uboat_VIIC": { + "name": "Uboat_VIIC", + "coalition": "", + "era": "", + "label": "U-boat VIIC U-flak", + "shortLabel": "U-boat VIIC U-flak", + "type": "Submarine", + "enabled": true, + "liveries": {}, + "acquisitionRange": 20000, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + }, + "Schnellboot_type_S130": { + "name": "Schnellboot_type_S130", + "coalition": "", + "era": "", + "label": "Boat Schnellboot type S130", + "shortLabel": "Boat Schnellboot type S130", + "type": "Torpedo Boat", + "enabled": true, + "liveries": {}, + "acquisitionRange": 10000, + "engagementRange": 4000, + "description": "", + "abilities": "", + "canTargetPoint": true, + "canRearm": false + } } \ No newline at end of file diff --git a/client/src/contextmenus/coalitionareacontextmenu.ts b/client/src/contextmenus/coalitionareacontextmenu.ts index 375355cc..ad6ab040 100644 --- a/client/src/contextmenus/coalitionareacontextmenu.ts +++ b/client/src/contextmenus/coalitionareacontextmenu.ts @@ -93,7 +93,7 @@ export class CoalitionAreaContextMenu extends ContextMenu { })); /* Create the checkboxes to select the unit ranges */ - this.#iadsRangesDropdown.setOptionsElements(groundUnitDatabase.getRanges().map((range: string) => { + this.#iadsRangesDropdown.setOptionsElements(["Short range", "Medium range", "Long range"].map((range: string) => { return createCheckboxOption(range, `Add ${range} units to the IADS`); })); diff --git a/client/src/contextmenus/mapcontextmenu.ts b/client/src/contextmenus/mapcontextmenu.ts index 72c73ec9..23f512cf 100644 --- a/client/src/contextmenus/mapcontextmenu.ts +++ b/client/src/contextmenus/mapcontextmenu.ts @@ -161,12 +161,16 @@ export class MapContextMenu extends ContextMenu { this.#aircraftSpawnMenu.reset(); this.#aircraftSpawnMenu.setCountries(); + this.#aircraftSpawnMenu.clearCirclesPreviews(); this.#helicopterSpawnMenu.reset(); this.#helicopterSpawnMenu.setCountries(); + this.#helicopterSpawnMenu.clearCirclesPreviews(); this.#groundUnitSpawnMenu.reset(); this.#groundUnitSpawnMenu.setCountries(); + this.#groundUnitSpawnMenu.clearCirclesPreviews(); this.#navyUnitSpawnMenu.reset(); this.#navyUnitSpawnMenu.setCountries(); + this.#navyUnitSpawnMenu.clearCirclesPreviews(); this.setVisibleSubMenu(type); this.clip(); diff --git a/client/src/interfaces.ts b/client/src/interfaces.ts index 84a8ea38..d520866f 100644 --- a/client/src/interfaces.ts +++ b/client/src/interfaces.ts @@ -191,6 +191,7 @@ export interface LoadoutBlueprint { roles: string[]; code: string; name: string; + enabled: boolean; } export interface UnitBlueprint { @@ -201,7 +202,6 @@ export interface UnitBlueprint { label: string; shortLabel: string; type?: string; - rangeType?: string; loadouts?: LoadoutBlueprint[]; filename?: string; liveries?: { [key: string]: { name: string, countries: string[] } }; @@ -214,8 +214,8 @@ export interface UnitBlueprint { abilities?: string; acquisitionRange?: number; engagementRange?: number; - refuelsFrom?: string; - refuellingType?: string; + canTargetPoint?: boolean; + canRearm?: boolean; } export interface UnitSpawnOptions { diff --git a/client/src/map/map.ts b/client/src/map/map.ts index e2e7c8ba..bd38e4b1 100644 --- a/client/src/map/map.ts +++ b/client/src/map/map.ts @@ -611,7 +611,7 @@ export class Map extends L.Map { options["land-at-point"] = { text: "Land here", tooltip: "Land at this precise location" }; } - if (selectedUnits.every((unit: Unit) => { return unit.canFulfillRole(["CAS", "Strike"]) })) { + if (selectedUnits.every((unit: Unit) => { return unit.canTargetPoint()})) { options["bomb"] = { text: "Precision bombing", tooltip: "Precision bombing of a specific point" }; options["carpet-bomb"] = { text: "Carpet bombing", tooltip: "Carpet bombing close to a point" }; } else { @@ -619,7 +619,7 @@ export class Map extends L.Map { } } else if (selectedUnitTypes.length === 1 && ["GroundUnit", "NavyUnit"].includes(selectedUnitTypes[0])) { - if (selectedUnits.every((unit: Unit) => { return ["AAA", "APC", "Gun Artillery", "Rocket Artillery", "Infantry", "IFV", "Tank", "Cruiser", "Destroyer", "Frigate"].includes(unit.getType()) })) { + if (selectedUnits.every((unit: Unit) => { return unit.canTargetPoint() })) { options["fire-at-area"] = { text: "Fire at area", tooltip: "Fire at a large area" }; options["simulate-fire-fight"] = { text: "Simulate fire fight", tooltip: "Simulate a fire fight by shooting randomly in a certain large area" }; } diff --git a/client/src/other/utils.ts b/client/src/other/utils.ts index d946de45..beeca20d 100644 --- a/client/src/other/utils.ts +++ b/client/src/other/utils.ts @@ -308,16 +308,24 @@ export function randomUnitBlueprint(unitDatabase: UnitDatabase, options: {type?: /* Keep only the units that have a range included in the requested values */ if (options.ranges) { unitBlueprints = unitBlueprints.filter((unitBlueprint: UnitBlueprint) => { - //@ts-ignore - return unitBlueprint.rangeType? options.ranges.includes(unitBlueprint.rangeType): true; + var rangeType = ""; + var range = unitBlueprint.acquisitionRange ; + if (range !== undefined) { + if (range >= 0 && range < 10000) + rangeType = "Short range"; + else if (range >= 10000 && range < 100000) + rangeType = "Medium range"; + else if (range >= 100000 && range < 999999) + rangeType = "Long range"; + } + return options.ranges?.includes(rangeType); }); } /* Keep only the units that have an era included in the requested values */ if (options.eras) { unitBlueprints = unitBlueprints.filter((unitBlueprint: UnitBlueprint) => { - //@ts-ignore - return unitBlueprint.era? options.eras.includes(unitBlueprint.era): true; + return unitBlueprint.era? options.eras?.includes(unitBlueprint.era): true; }); } diff --git a/client/src/unit/databases/unitdatabase.ts b/client/src/unit/databases/unitdatabase.ts index bd51e35b..ba7c41cc 100644 --- a/client/src/unit/databases/unitdatabase.ts +++ b/client/src/unit/databases/unitdatabase.ts @@ -117,25 +117,32 @@ export class UnitDatabase { return eras; } - /* Returns a list of all possible ranges in a database */ - getRanges() { - var filteredBlueprints = this.getBlueprints(); - var ranges: string[] = []; - for (let unit in filteredBlueprints) { - var range = filteredBlueprints[unit].rangeType; - if (range && range !== "" && !ranges.includes(range)) - ranges.push(range); - } - return ranges; - } - /* Get all blueprints by range */ getByRange(range: string) { var filteredBlueprints = this.getBlueprints(); var unitswithrange = []; + var minRange = 0; + var maxRange = 0; + + if (range === "Short range") { + minRange = 0; + maxRange = 10000; + } + else if (range === "Medium range") { + minRange = 10000; + maxRange = 100000; + } + else { + minRange = 100000; + maxRange = 999999; + } + for (let unit in filteredBlueprints) { - if (filteredBlueprints[unit].rangeType === range) { - unitswithrange.push(filteredBlueprints[unit]); + var engagementRange = filteredBlueprints[unit].engagementRange; + if (engagementRange !== undefined) { + if (engagementRange >= minRange && engagementRange < maxRange) { + unitswithrange.push(filteredBlueprints[unit]); + } } } return unitswithrange; diff --git a/client/src/unit/unit.ts b/client/src/unit/unit.ts index ac8ff99e..49fb687e 100644 --- a/client/src/unit/unit.ts +++ b/client/src/unit/unit.ts @@ -616,6 +616,14 @@ export class Unit extends CustomMarker { return getApp().getMap().getBounds().contains(this.getPosition()); } + canTargetPoint() { + return this.getDatabase()?.getByName(this.#name)?.canTargetPoint === true; + } + + canRearm() { + return this.getDatabase()?.getByName(this.#name)?.canRearm === true; + } + /********************** Unit commands *************************/ addDestination(latlng: L.LatLng) { if (!this.#human) { diff --git a/client/views/panels/unitcontrol.ejs b/client/views/panels/unitcontrol.ejs index d58de65f..aa48e8a4 100644 --- a/client/views/panels/unitcontrol.ejs +++ b/client/views/panels/unitcontrol.ejs @@ -63,14 +63,14 @@