Add Douglas C-47 to route dialog and update performance

This commit is contained in:
PlayeRom
2022-08-19 22:15:08 +02:00
parent 3c49ba9d47
commit 8a0eaab753
3 changed files with 6 additions and 5 deletions

View File

@@ -60,7 +60,7 @@
<value type="string">c182</value>
</binding>
</item>
<item>
<item>
<label>Call for Douglas C-47 aircraft</label>
<binding>
<command>property-assign</command>

View File

@@ -88,6 +88,7 @@
<value>Piper J3 Cub</value>
<value>Robin DR400</value>
<value>Cessna 182</value>
<value>Douglas C-47</value>
<binding>
<command>dialog-apply</command>
</binding>

View File

@@ -180,15 +180,14 @@ var AircraftC182 = {
# Douglas C-47
# Cruise Speed 152 kt
# Max speeed 199 kt
# Stall speed 50 kt
# Stall speed 57 kt
# Best climb: 1052 ft/min
#
var AircraftC47 = {
new: func () {
return {
parents: [Aircraft],
vs: 295,
vs: 310,
speed: 85,
speedLimit: 90,
rolling: 2.2,
@@ -199,10 +198,11 @@ var AircraftC47 = {
};
},
};
# Create Aircraft objects
var g_Aircrafts = [
AircraftCub.new(),
AircraftRobin.new(),
AircraftC182.new(),
AircraftC47.new(),
AircraftC47.new(),
];