From 3052c5409e03707f77325586d51f96b47442a4ee Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 26 Mar 2020 17:08:05 -0400 Subject: [PATCH] Add Hipster --- media/attribution.js | 21 +++ media/characters/hipster/back.svg | 214 +++++++++++++++++++++++++++++ media/characters/hipster/front.svg | 177 ++++++++++++++++++++++++ presets/characters.js | 47 +++++++ 4 files changed, 459 insertions(+) create mode 100644 media/characters/hipster/back.svg create mode 100644 media/characters/hipster/front.svg diff --git a/media/attribution.js b/media/attribution.js index 2b8e1637..1741e890 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -7867,6 +7867,19 @@ const attributionData = { "dahwchooa" ] }, + { + prefix: "./media/characters/hipster/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/33250417/" }, + { name: "back.svg", source: "https://www.furaffinity.net/view/33250417/" }, + ], + authors: [ + "strawbear" + ], + owners: [ + "hipsterfox37" + ] + }, //characters { prefix: "./media/fiction/halo/halo/", @@ -10852,6 +10865,14 @@ const attributionData = { "name": "dahwchooa", "url": "https://www.furaffinity.net/user/dahwchooa/", }, + "strawbear": { + "name": "StrawBear", + "url": "https://www.furaffinity.net/user/strawbear", + }, + "hipsterfox37": { + "name": "Hipsterfox37", + "url": "https://www.furaffinity.net/user/hipsterfox37/", + }, } } diff --git a/media/characters/hipster/back.svg b/media/characters/hipster/back.svg new file mode 100644 index 00000000..53d80204 --- /dev/null +++ b/media/characters/hipster/back.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/hipster/front.svg b/media/characters/hipster/front.svg new file mode 100644 index 00000000..105fa3d4 --- /dev/null +++ b/media/characters/hipster/front.svg @@ -0,0 +1,177 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 6e4f84c4..c2389ae0 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -19117,6 +19117,53 @@ characterMakers["Juniper"] = () => { ) }; +characterMakers["Hipster"] = () => { + return makeCharacter( + "Hipster", + "Hipsterfox37", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(150, "lb"), + name: "Front", + image: { + source: "./media/characters/hipster/front.svg", + extra: 1312/1209, + bottom: 0.025 + } + }, + back: { + height: math.unit(6, "feet"), + weight: math.unit(150, "lb"), + name: "Back", + image: { + source: "./media/characters/hipster/back.svg", + extra: 1281/1196, + bottom: 0.01 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(1, "mm") + }, + { + name: "Normal", + height: math.unit(4, "inches"), + default: true + }, + { + name: "Macro", + height: math.unit(500, "feet") + }, + { + name: "Megamacro", + height: math.unit(1000, "miles") + }, + ] + ) +}; //characters