Added missing planes

This commit is contained in:
Pax1601
2023-04-20 17:28:46 +02:00
parent 090973a3d1
commit a9e18e42d3
3 changed files with 80 additions and 5 deletions

View File

@@ -16,7 +16,7 @@ const maxSpeedValues: { [key: string]: number } = { Aircraft: 800, Helicopter: 3
const speedIncrements: { [key: string]: number } = { Aircraft: 25, Helicopter: 10, NavyUnit: 5, GroundUnit: 5 };
const minAltitudeValues: { [key: string]: number } = { Aircraft: 0, Helicopter: 0 };
const maxAltitudeValues: { [key: string]: number } = { Aircraft: 50000, Helicopter: 10000 };
const altitudeIncrements: { [key: string]: number } = { Aircraft: 2500, Helicopter: 1000 };
const altitudeIncrements: { [key: string]: number } = { Aircraft: 500, Helicopter: 100 };
export class UnitControlPanel extends Panel {
#altitudeSlider: Slider;

View File

@@ -4,7 +4,6 @@ export class AircraftDatabase extends UnitDatabase {
constructor() {
super();
this.blueprints = {
"A-10C": {
"name": "A-10C",
"label": "A-10CII",
@@ -727,9 +726,85 @@ export class AircraftDatabase extends UnitDatabase {
],
"filename": "kc-135.png"
},
"I-16": {
"name": "I-16",
"label": "I-16",
"shortLabel": "I16",
"loadouts": [
{
"fuel": 1,
"items": [
],
"roles": [
"CAP"
],
"code": "",
"name": "Empty Loadout"
}
],
"filename": "i-16.png"
},
"MiG-15bis": {
"name": "MiG-15bis",
"label": "MiG-15",
"shortLabel": "M15",
"loadouts": [
{
"fuel": 1,
"items": [
],
"roles": [
"CAP"
],
"code": "",
"name": "Empty Loadout"
}
],
"filename": "mig-15.png"
},
"MiG-19P": {
"name": "MiG-19P",
"label": "MiG-19",
"shortLabel": "19",
"loadouts": [
{
"fuel": 1,
"items": [
],
"roles": [
"CAP"
],
"code": "",
"name": "Empty Loadout"
}
],
"filename": "mig-19.png"
},
"MiG-21Bis": {
"name": "MiG-21Bis",
"label": "MiG-21",
"shortLabel": "21",
"loadouts": [
{
"fuel": 1,
"items": [
],
"roles": [
"CAP"
],
"code": "",
"name": "Empty Loadout"
}
],
"filename": "mig-21.png"
},
"MiG-23MLD": {
"name": "MiG-23MLD",
"label": "MiG-23MLD",
"label": "MiG-23",
"shortLabel": "23",
"loadouts": [
{