mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
This PR: - Introduces a new member of UnitType, hit_points, which is an abstract representation of the durability of a unit, and loads it in from the YAML files in the various subclasses (Ship, Ground etc). - Adds scripts for populating/updating the unit YAML files with hit point data from DCS. This script also gets the data for static objects, but I'll leave the plugging in of static object data into Liberation for another PR. - Updates the unit YAML files by running the above scripts. I did toy with the idea of adding this data to the unit definitions in pydcs via an export from DCS, but it would be a more involved change, since the current pydcs export script runs in the Hooks Lua environment in DCS and AFAICT the hit points (via Unit.getLife()) is run in the mission scripting environment.
36 lines
1.5 KiB
YAML
36 lines
1.5 KiB
YAML
description: # From wikipedia
|
|
The Dassault Mirage F1 is a French fighter and attack aircraft designed and manufactured
|
|
by Dassault Aviation. It was developed as a successor to the popular Mirage III family.
|
|
|
|
The Mirage F1CT is a ground attack version of the Mirage F1C-200.
|
|
Following their replacement in the air defence role by the Mirage 2000,
|
|
the French Air Force had a number of surplus Mirage F1C-200s, and in 1988 it launched a conversion
|
|
programme to turn these aircraft into interim ground attack aircraft to replace elderly Mirage IIIEs
|
|
and Mirage 5s. The Mirage F1CT program brought the avionics of the F1C up to the standard of the F1CR,
|
|
with the radar upgraded with the additional air-to-ground modes of the Cyrano IVM-R,
|
|
an improved navigation/attack system fitted, with a laser rangefinder fitted under the nose.
|
|
It was fitted with new Mk 10 ejection seats, while improved radar detection and warning devices,
|
|
chaff/flare dispensers, and secure radios were also added. It gained the ability to carry a variety
|
|
of air-to-ground weapons, including rockets, cluster bombs and laser-guided bombs,
|
|
while retaining the F1C's air-to-air armament.
|
|
introduced: 1988
|
|
manufacturer: Dassault
|
|
origin: France
|
|
price: 15
|
|
role: Multirole Fighter
|
|
max_range: 200
|
|
variants:
|
|
Mirage-F1CT: {}
|
|
tasks:
|
|
BAI: 270
|
|
BARCAP: 250
|
|
CAS: 270
|
|
Escort: 250
|
|
Fighter sweep: 250
|
|
Intercept: 250
|
|
OCA/Aircraft: 270
|
|
OCA/Runway: 240
|
|
Strike: 240
|
|
TARCAP: 250
|
|
hit_points: 18
|