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;
}