From db71f5ac548e1ac097a86259c6d4716668022f1d Mon Sep 17 00:00:00 2001 From: Red <88052002+RedisPerfect@users.noreply.github.com> Date: Wed, 20 Jul 2022 04:25:05 +0200 Subject: [PATCH] Add Boeing 737 MAX 200 / 8200 This will add the Boeing 737 MAX 200 or also known as the Boeing 737 8200 or Boeing 737 MAX 8200. Norebbo has not made a image for this aircraft, therefore one isn't provided here either. Source: EASA https://www.easa.europa.eu/downloads/7297/en -- (page 69) --- .../src/main/scala/com/patson/model/airplane/Model.scala | 1 + 1 file changed, 1 insertion(+) diff --git a/airline-data/src/main/scala/com/patson/model/airplane/Model.scala b/airline-data/src/main/scala/com/patson/model/airplane/Model.scala index 16c7e3889..b31637d12 100644 --- a/airline-data/src/main/scala/com/patson/model/airplane/Model.scala +++ b/airline-data/src/main/scala/com/patson/model/airplane/Model.scala @@ -205,6 +205,7 @@ object Model { Model("Boeing 737-900", "Boeing 737 Next Generation", capacity = 189, fuelBurn = (189 * 4).toInt, speed = 830, range = 6660, price = 105000000, lifespan = 35 * 52, constructionTime = 24, Manufacturer("Boeing", countryCode = "US"), runwayRequirement = 3000, imageUrl = "https://www.norebbo.com/2014/08/boeing-737-900-blank-illustration-templates/"), Model("Boeing 737 MAX 8", "Boeing 737 MAX", capacity = 189, fuelBurn = (189 * 3.9).toInt, speed = 830, range = 6500, price = 110000000, lifespan = 35 * 52, constructionTime = 24, Manufacturer("Boeing", countryCode = "US"), runwayRequirement = 2500, imageUrl = "https://www.norebbo.com/2016/07/boeing-737-max-8-blank-illustration-templates/"), Model("Airbus A320neo", "Airbus A320", capacity = 195, fuelBurn = (195 * 4).toInt, speed = 833, range = 6500, price = 110000000, lifespan = 35 * 52, constructionTime = 24, Manufacturer("Airbus", countryCode = "NL"), runwayRequirement = 2100, imageUrl = "https://www.norebbo.com/2017/08/airbus-a320-neo-blank-illustration-templates/"), + Model("Boeing 737 MAX 200", "Boeing 737 MAX", capacity = 202, fuelBurn = (202 * 3.9).toInt, speed = 830, range = 6300, price = 115000000, lifespan = 35 * 52, constructionTime = 24, Manufacturer("Boeing", countryCode = "US"), runwayRequirement = 2500), Model("Tupolev Tu-204", "Tupolev Tu", capacity = 210, fuelBurn = (210 * 4.5).toInt, speed = 810, range = 4300, price = 50000000, lifespan = 25 * 52, constructionTime = 24, Manufacturer("Tupolev", countryCode = "RU"), runwayRequirement = 1870), Model("Boeing 737-900ER", "Boeing 737 Next Generation", capacity = 220, fuelBurn = (220 * 4).toInt, speed = 830, range = 6500, price = 110000000, lifespan = 35 * 52, constructionTime = 24, Manufacturer("Boeing", countryCode = "US"), runwayRequirement = 3000, imageUrl = "https://www.norebbo.com/2016/07/boeing-737-900er-with-split-scimitar-winglets-blank-illustration-templates/"), Model("Boeing 737 MAX 9", "Boeing 737 MAX", capacity = 220, fuelBurn = (220 * 3.9).toInt, speed = 839, range = 6570, price = 124000000, lifespan = 35 * 52, constructionTime = 36, Manufacturer("Boeing", countryCode = "US"), runwayRequirement = 2600, imageUrl = "https://www.norebbo.com/2018/05/boeing-737-9-max-blank-illustration-templates/"),