From 971892f3e63074b10646095190b75efb3effcba8 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Wed, 26 Feb 2020 09:48:57 -0500 Subject: [PATCH] Add Fluoresce --- media/attribution.js | 13 ++++ media/characters/fluoresce/front.svg | 88 ++++++++++++++++++++++++++++ presets/characters.js | 36 ++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 media/characters/fluoresce/front.svg diff --git a/media/attribution.js b/media/attribution.js index 77f54796..f63dc2fd 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -313,6 +313,19 @@ const attributionData = { "beherit" ] }, + { + prefix: "./media/characters/fluoresce/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/25601125/" } + ], + authors: [ + "jackalope", + "wolfina-2007" + ], + owners: [ + "ravin-amulet" + ] + }, { prefix: "./media/characters/gemini/", files: [ diff --git a/media/characters/fluoresce/front.svg b/media/characters/fluoresce/front.svg new file mode 100644 index 00000000..c1f0255d --- /dev/null +++ b/media/characters/fluoresce/front.svg @@ -0,0 +1,88 @@ + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 7911abe8..6953ce11 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5382,6 +5382,42 @@ characterMakers["Ravin Amulet"] = () => { ) }; +characterMakers["Fluoresce"] = () => { + return makeCharacter( + "Fluoresce", + "Ravin Amulet", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(165, "lbs"), + name: "Front", + image: { + source: "./media/characters/fluoresce/front.svg" + } + } + }, + [ + { + name: "Micro", + height: math.unit(6, "cm") + }, + { + name: "Normal", + height: math.unit(5 + 7/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(56, "feet") + }, + { + name: "Megamacro", + height: math.unit(1.9, "miles") + }, + ] + ) +}; + function makeCharacters() { const results = [];