diff --git a/media/LICENSES.md b/media/LICENSES.md
index fee16d79..17c8aec5 100644
--- a/media/LICENSES.md
+++ b/media/LICENSES.md
@@ -402,6 +402,15 @@ https://www.furaffinity.net/view/23287543/
* front-alt.svg
+## Mech
+
+**http://www.furaffinity.net/user/tanraak**
+
+https://www.furaffinity.net/view/25688886/
+
+* front.svg
+* back.svg
+
# Naturals
* front.svg
diff --git a/media/characters/mech/back.svg b/media/characters/mech/back.svg
new file mode 100644
index 00000000..cf1512fc
--- /dev/null
+++ b/media/characters/mech/back.svg
@@ -0,0 +1,124 @@
+
+
+
diff --git a/media/characters/mech/front.svg b/media/characters/mech/front.svg
new file mode 100644
index 00000000..59c8ea43
--- /dev/null
+++ b/media/characters/mech/front.svg
@@ -0,0 +1,109 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 4ae3af2c..67f2bf1e 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -1981,6 +1981,48 @@ characterMakers["Ona"] = () => {
)
};
+characterMakers["Mech"] = () => {
+ return makeCharacter(
+ "Mech",
+ "mechEdragon",
+ {
+ front: {
+ height: math.unit(12, "feet"),
+ weight: math.unit(3000, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/mech/front.svg",
+ bottom: 0.025,
+ }
+ },
+ back: {
+ height: math.unit(12, "feet"),
+ weight: math.unit(3000, "lb"),
+ name: "Back",
+ image: {
+ source: "./media/characters/mech/back.svg",
+ bottom: 0.03,
+ }
+ }
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(12, "feet")
+ },
+ {
+ name: "Macro",
+ height: math.unit(300, "feet")
+ },
+ {
+ name: "Macro+",
+ height: math.unit(1500, "feet")
+ },
+ ],
+ math.unit(300, "feet")
+ )
+};
+
function makeCharacters() {
const results = [];