From 134150b8caa8e52efa3fb08f15ac2d2243acdab3 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 28 Feb 2020 15:19:47 -0500 Subject: [PATCH] Add Coffee --- media/attribution.js | 16 +++ media/characters/coffee/front.svg | 175 ++++++++++++++++++++++++++++++ presets/characters.js | 37 +++++++ 3 files changed, 228 insertions(+) create mode 100644 media/characters/coffee/front.svg diff --git a/media/attribution.js b/media/attribution.js index 7e88c6fa..2723d59b 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -1488,6 +1488,18 @@ const attributionData = { "miateshcha" ] }, + { + prefix: "./media/characters/coffee/", + files: [ + { name: "front.svg", source: "https://twitter.com/NShayd22/status/1162200383487217667" } + ], + authors: [ + "bkdebo" + ], + owners: [ + "bkdebo" + ] + }, { prefix: "./media/characters/corvin/", files: [ @@ -3248,6 +3260,10 @@ const attributionData = { "name": "Waga", "url": "https://twitter.com/WagaDraws", }, + "bkdebo": { + "name": "BKdebo", + "url": "https://www.furaffinity.net/user/bkdebo", + }, } } diff --git a/media/characters/coffee/front.svg b/media/characters/coffee/front.svg new file mode 100644 index 00000000..2434f054 --- /dev/null +++ b/media/characters/coffee/front.svg @@ -0,0 +1,175 @@ + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 221b07ca..61e6114b 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -6317,6 +6317,43 @@ characterMakers["Rivet"] = () => { ) }; +characterMakers["Coffee"] = () => { + return makeCharacter( + "Coffee", + "Vonadi", + { + front: { + height: math.unit(5 + 9/12, "feet"), + weight: math.unit(150, "lbs"), + name: "Front", + image: { + source: "./media/characters/coffee/front.svg", + extra: 3666/3032 + } + } + }, + [ + { + name: "Micro", + height: math.unit(2, "inches"), + }, + { + name: "Normal", + height: math.unit(5 + 9/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(80, "feet") + }, + { + name: "Megamacro", + height: math.unit(25, "miles") + } + ] + ) +}; + function makeCharacters() { const results = [];