diff --git a/media/attribution.js b/media/attribution.js index 2468ba70..64e4d035 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -9696,6 +9696,17 @@ const attributionData = { "wargaming" ] }, + { + prefix: "./media/vehicles/helicopters/", + files: [ + { name: "mil-mi-26-side.svg", source: "https://en.wikipedia.org/wiki/Mil_Mi-26#/media/File:Mil_Mi-26_Line_Drawing.svg" }, + { name: "mil-mi-26-front.svg", source: "https://en.wikipedia.org/wiki/Mil_Mi-26#/media/File:Mil_Mi-26_Line_Drawing.svg" }, + { name: "mil-mi-26-bottom.svg", source: "https://en.wikipedia.org/wiki/Mil_Mi-26#/media/File:Mil_Mi-26_Line_Drawing.svg" }, + ], + authors: [ + "jetijones" + ] + }, ], people: { @@ -12743,6 +12754,10 @@ const attributionData = { "name": "TxDOT", "url": "https://www.txdot.gov/content/txdot/en.html", }, + "jetijones": { + "name": "Jetijones", + "url": "https://commons.wikimedia.org/wiki/User:Jetijones", + }, } } diff --git a/media/vehicles/helicopters/mil-mi-26-bottom.svg b/media/vehicles/helicopters/mil-mi-26-bottom.svg new file mode 100644 index 00000000..8997854e --- /dev/null +++ b/media/vehicles/helicopters/mil-mi-26-bottom.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/vehicles/helicopters/mil-mi-26-front.svg b/media/vehicles/helicopters/mil-mi-26-front.svg new file mode 100644 index 00000000..524301d9 --- /dev/null +++ b/media/vehicles/helicopters/mil-mi-26-front.svg @@ -0,0 +1,237 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/vehicles/helicopters/mil-mi-26-side.svg b/media/vehicles/helicopters/mil-mi-26-side.svg new file mode 100644 index 00000000..d3157ba8 --- /dev/null +++ b/media/vehicles/helicopters/mil-mi-26-side.svg @@ -0,0 +1,180 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/vehicles.js b/presets/vehicles.js index e90d7c43..03be7d35 100644 --- a/presets/vehicles.js +++ b/presets/vehicles.js @@ -542,5 +542,22 @@ function makeVehicles() { "") }); + results.push({ + name: "Helicopters", + constructor: () => makeVehicleGroup([ + { + name: "Mil Mi-26", + mass: math.unit(109349, "lbs"), + sides: { + "Side": { height: math.unit(12.2, "meters") }, + "Front": { height: math.unit(12.2, "meters") }, + "Bottom": { height: math.unit(40.025, "meters") }, + } + } + ], + "Helicopters", + "") + }) + return results; }