From 4a9fa30d993279b30ae15a3d9ecc03ebc3e98c3c Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 26 Feb 2020 09:21:46 -0500 Subject: [PATCH] Add Teal --- media/attribution.js | 36 +++++++++++ media/characters/teal/front-alt.svg | 98 +++++++++++++++++++++++++++++ media/characters/teal/front.svg | 84 +++++++++++++++++++++++++ presets/characters.js | 38 +++++++++++ 4 files changed, 256 insertions(+) create mode 100644 media/characters/teal/front-alt.svg create mode 100644 media/characters/teal/front.svg 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 = [];