diff --git a/media/attribution.js b/media/attribution.js
index 69e47569..d5a85c2a 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -601,6 +601,30 @@ const attributionData = {
"movler"
]
},
+ {
+ prefix: "./media/characters/teal/",
+ files: [
+ { name: "front.svg", source: null }
+ ],
+ authors: [
+ "i-am-an-eaglet"
+ ],
+ owners: [
+ "pilli10"
+ ]
+ },
+ {
+ prefix: "./media/characters/teal/",
+ files: [
+ { name: "front-alt.svg", source: null }
+ ],
+ authors: [
+ "ram-the-dragon"
+ ],
+ owners: [
+ "pilli10"
+ ]
+ },
{
prefix: "./media/characters/tiberius/",
files: [
@@ -901,6 +925,10 @@ const attributionData = {
name: "HIHIKORI",
url: "https://www.furaffinity.net/user/hihikori"
},
+ "i-am-an-eaglet": {
+ name: "IAMANEAGLEt",
+ url: "https://www.furaffinity.net/user/iamaneaglet/"
+ },
"jaro-the-dragon": {
name: "Jaro",
url: "https://www.furaffinity.net/user/jarothedragon/"
@@ -981,6 +1009,10 @@ const attributionData = {
name: "Oselotti",
url: "https://www.furaffinity.net/user/oselotti"
},
+ "pilli10": {
+ name: "Teal",
+ url: "https://www.furaffinity.net/user/pilli10"
+ },
"phil-bronnery": {
name: "Phil Bronnery",
url: "https://www.flickr.com/people/27919241@N02"
@@ -1001,6 +1033,10 @@ const attributionData = {
name: "Quake Yote",
url: "https://www.furaffinity.net/user/rokossovskiy"
},
+ "ram-the-dragon": {
+ name: "Ram the Dragon",
+ url: "https://www.furaffinity.net/user/ramthedragon"
+ },
"razinox": {
name: "Razinox",
url: "https://www.furaffinity.net/user/razinox"
diff --git a/media/characters/teal/front-alt.svg b/media/characters/teal/front-alt.svg
new file mode 100644
index 00000000..370116dd
--- /dev/null
+++ b/media/characters/teal/front-alt.svg
@@ -0,0 +1,98 @@
+
+
+
diff --git a/media/characters/teal/front.svg b/media/characters/teal/front.svg
new file mode 100644
index 00000000..aab1afc2
--- /dev/null
+++ b/media/characters/teal/front.svg
@@ -0,0 +1,84 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 4b786ba6..61d379e8 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5284,6 +5284,44 @@ characterMakers["Amanda"] = () => {
)
};
+characterMakers["Teal"] = () => {
+ return makeCharacter(
+ "Teal",
+ "Teal",
+ {
+ front: {
+ height: math.unit(5.59, "feet"),
+ weight: math.unit(250, "lbs"),
+ name: "Front",
+ image: {
+ source: "./media/characters/teal/front.svg"
+ }
+ },
+ frontAlt: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(250, "lbs"),
+ name: "Front (Alt)",
+ image: {
+ source: "./media/characters/teal/front-alt.svg",
+ bottom: 0.04,
+ extra: 1 / (1 - 0.04)
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(12, "feet"),
+ default: true
+ },
+ {
+ name: "Macro",
+ height: math.unit(300, "feet")
+ },
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];