From 5691a17c7f7cf3eecb8b48f818d0279884b1b089 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 4 Mar 2020 14:28:17 -0500 Subject: [PATCH] Add Mal --- media/attribution.js | 20 +++++ media/characters/mal/front.svg | 135 +++++++++++++++++++++++++++++++++ presets/characters.js | 34 +++++++++ 3 files changed, 189 insertions(+) create mode 100644 media/characters/mal/front.svg diff --git a/media/attribution.js b/media/attribution.js index 3c99a7d6..9bfc3e96 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -2461,6 +2461,18 @@ const attributionData = { "major-colonel" ] }, + { + prefix: "./media/characters/mal/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/35287475/" } + ], + authors: [ + "holyspaghettiobatman" + ], + owners: [ + "agrosarmadillo" + ] + }, { prefix: "./media/characters/malfressa/", files: [ @@ -5265,6 +5277,14 @@ const attributionData = { "name": "adamphillip", "url": "https://www.furaffinity.net/user/adamphillip/", }, + "agrosarmadillo": { + "name": "agrosarmadillo", + "url": "https://www.furaffinity.net/user/agrosarmadillo/", + }, + "holyspaghettiobatman": { + "name": "holyspaghettiobatman", + "url": "https://www.furaffinity.net/user/holyspaghettiobatman", + }, } } diff --git a/media/characters/mal/front.svg b/media/characters/mal/front.svg new file mode 100644 index 00000000..167eb448 --- /dev/null +++ b/media/characters/mal/front.svg @@ -0,0 +1,135 @@ + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 039ea130..bdebcd43 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -8741,6 +8741,40 @@ characterMakers["Ky'owin"] = () => { ) }; +characterMakers["Mal"] = () => { + return makeCharacter( + "Mal", + "agrosarmadillo", + { + front: { + height: math.unit(4, "feet"), + weight: math.unit(50, "lb"), + name: "Front", + image: { + source: "./media/characters/mal/front.svg", + extra: 785/724 * (1 / (1 - 0.07)), + bottom: 0.07 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(4, "inches") + }, + { + name: "Normal", + height: math.unit(4, "feet") + }, + { + name: "Macro", + height: math.unit(200, "feet"), + default: true + }, + ] + ) +}; + function makeCharacters() { const results = [];