From 655113cb74cf1b38cb31e6875cde907e61257537 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 14 May 2020 17:49:21 -0400 Subject: [PATCH] Add Angel and Pixil --- media/attribution.js | 28 +++ media/characters/angel/front.svg | 235 ++++++++++++++++++++ media/characters/pixil/front.svg | 353 +++++++++++++++++++++++++++++++ presets/characters.js | 71 +++++++ 4 files changed, 687 insertions(+) create mode 100644 media/characters/angel/front.svg create mode 100644 media/characters/pixil/front.svg diff --git a/media/attribution.js b/media/attribution.js index f7f6e6ea..fc29ee44 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -9806,6 +9806,30 @@ const attributionData = { "mandarax" ] }, + { + prefix: "./media/characters/pixil/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/21697998/", nsfw: true } + ], + authors: [ + "angelthecatgirl" + ], + owners: [ + "angelthecatgirl" + ] + }, + { + prefix: "./media/characters/angel/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/13713112/" } + ], + authors: [ + "angelthecatgirl" + ], + owners: [ + "angelthecatgirl" + ] + }, //characters { prefix: "./media/dildos/chance/", @@ -13600,6 +13624,10 @@ const attributionData = { "name": "drewbermeister", "url": "https://www.furaffinity.net/user/drewbermeister/", }, + "angelthecatgirl": { + "name": "AngelTheCatgirl", + "url": "https://www.furaffinity.net/user/angelthecatgirl/", + }, } } diff --git a/media/characters/angel/front.svg b/media/characters/angel/front.svg new file mode 100644 index 00000000..1a17df8a --- /dev/null +++ b/media/characters/angel/front.svg @@ -0,0 +1,235 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/pixil/front.svg b/media/characters/pixil/front.svg new file mode 100644 index 00000000..98baabfd --- /dev/null +++ b/media/characters/pixil/front.svg @@ -0,0 +1,353 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index e2432126..db63bc01 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -486,6 +486,16 @@ const speciesData = { name: "Medihound", parents: ["robot", "dog"] }, + "sylveon": { + name: "Sylveon", + parents: ["pokemon"] + }, + "catgirl": { + name: "Catgirl", + parents: ["mammal"] + }, + + @@ -23413,6 +23423,67 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Pixil", species: ["sylveon"], tags: ["anthro"] }, + { + front: { + height: math.unit(5, "feet"), + weight: math.unit(90, "lb"), + name: "Front", + image: { + source: "./media/characters/pixil/front.svg", + extra: 2000/1618, + bottom: 12.3/2011 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(5, "feet"), + default: true + }, + { + name: "Megamacro", + height: math.unit(10, "miles"), + }, + ] +)) + +characterMakers.push(() => makeCharacter( + { name: "Angel", species: ["catgirl"], tags: ["anthro"] }, + { + front: { + height: math.unit(7, "feet"), + weight: math.unit(200, "lb"), + name: "Front", + image: { + source: "./media/characters/angel/front.svg", + extra: 1830/1737, + bottom: 22.6/1854, + } + }, + }, + [ + { + name: "Normal", + height: math.unit(7, "feet") + }, + { + name: "Macro", + height: math.unit(1000, "feet") + }, + { + name: "Megamacro", + height: math.unit(2, "miles") + }, + { + name: "Gigamacro", + height: math.unit(20, "earths") + }, + ] +)) + //characters function makeCharacters() {