From 6342681e4eb13aa26423a526a505b5cfad87e8f6 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 5 Mar 2020 07:37:18 -0500 Subject: [PATCH] Add Toto --- media/attribution.js | 20 ++++++ media/characters/toto/front.svg | 115 ++++++++++++++++++++++++++++++++ presets/characters.js | 37 ++++++++++ 3 files changed, 172 insertions(+) create mode 100644 media/characters/toto/front.svg diff --git a/media/attribution.js b/media/attribution.js index bc75d279..1c556078 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -3659,6 +3659,18 @@ const attributionData = { "ranger" ] }, + { + prefix: "./media/characters/toto/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/27390320/" } + ], + authors: [ + "catarsi" + ], + owners: [ + "totoly-toto" + ] + }, { prefix: "./media/characters/tyrone/", files: [ @@ -5485,6 +5497,14 @@ const attributionData = { "name": "BigMountainCat", "url": "https://www.furaffinity.net/user/bigmountaincat/", }, + "catarsi": { + "name": "Catarsi", + "url": "https://www.furaffinity.net/user/fattygatr", + }, + "totoly-toto": { + "name": "Toto", + "url": "https://twitter.com/totoly_toto", + }, } } diff --git a/media/characters/toto/front.svg b/media/characters/toto/front.svg new file mode 100644 index 00000000..d98e3e19 --- /dev/null +++ b/media/characters/toto/front.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 32f349ee..544dc73c 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -9236,6 +9236,43 @@ characterMakers["Rhys"] = () => { ) }; +characterMakers["Toto"] = () => { + return makeCharacter( + "Toto", + "Totoly_Toto", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(250, "lb"), + name: "Front", + image: { + source: "./media/characters/toto/front.svg", + exra: 527 / 479 * (1 / (1 - 0.05)), + bottom: 0.05 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(3, "feet") + }, + { + name: "Normal", + height: math.unit(10, "feet") + }, + { + name: "Macro", + height: math.unit(150, "feet"), + default: true + }, + { + name: "Megamacro", + height: math.unit(1200, "feet") + }, + ] + ) +}; function makeCharacters() { const results = [];