From 25faf68447d67cadaf4f18f1a48a4dcaf546110d Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 25 Apr 2020 19:51:24 -0400 Subject: [PATCH] Add the T95 Super Heavy Tank --- media/attribution.js | 8 + .../tanks/t95-super-heavy-tank-front.svg | 181 +++++++++ .../tanks/t95-super-heavy-tank-side.svg | 374 ++++++++++++++++++ .../tanks/t95-super-heavy-tank-top.svg | 182 +++++++++ presets/vehicles.js | 17 + 5 files changed, 762 insertions(+) create mode 100644 media/vehicles/tanks/t95-super-heavy-tank-front.svg create mode 100644 media/vehicles/tanks/t95-super-heavy-tank-side.svg create mode 100644 media/vehicles/tanks/t95-super-heavy-tank-top.svg diff --git a/media/attribution.js b/media/attribution.js index 5b87b762..95f3776a 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -9611,6 +9611,14 @@ const attributionData = { "wargaming" ] }, + { + prefix: "./media/vehicles/tanks", + all: "https://gamemodels3d.com/", + authors: [ + "gamemodels3d", + "wargaming" + ] + }, ], people: { diff --git a/media/vehicles/tanks/t95-super-heavy-tank-front.svg b/media/vehicles/tanks/t95-super-heavy-tank-front.svg new file mode 100644 index 00000000..a493e743 --- /dev/null +++ b/media/vehicles/tanks/t95-super-heavy-tank-front.svg @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + diff --git a/media/vehicles/tanks/t95-super-heavy-tank-side.svg b/media/vehicles/tanks/t95-super-heavy-tank-side.svg new file mode 100644 index 00000000..49d83d6e --- /dev/null +++ b/media/vehicles/tanks/t95-super-heavy-tank-side.svg @@ -0,0 +1,374 @@ + + + + + + + + + + + + + + + + + + diff --git a/media/vehicles/tanks/t95-super-heavy-tank-top.svg b/media/vehicles/tanks/t95-super-heavy-tank-top.svg new file mode 100644 index 00000000..7e3ffe9d --- /dev/null +++ b/media/vehicles/tanks/t95-super-heavy-tank-top.svg @@ -0,0 +1,182 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/vehicles.js b/presets/vehicles.js index c504bdad..3645b484 100644 --- a/presets/vehicles.js +++ b/presets/vehicles.js @@ -516,5 +516,22 @@ function makeVehicles() { "") }); + results.push({ + name: "Tanks", + constructor: () => makeVehicleGroup([ + { + name: "T95 Super Heavy Tank", + mass: math.unit(95, "tons"), + sides: { + "Side": { height: math.unit(18.83, "feet") }, + "Front": { height: math.unit(18.83, "feet") }, + "Top": { height: math.unit(2608/1659*36.5, "feet") }, + } + }, + ], + "Tanks", + "") + }); + return results; }