From fded95498f804fdf5942a44f714093db30e8626e Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sat, 28 Nov 2020 14:17:43 -0500 Subject: [PATCH] Add Cindy --- media/attribution.js | 16 +- media/characters/cindy/back.svg | 257 +++++++++++++++++ media/characters/cindy/front-dressed.svg | 345 +++++++++++++++++++++++ media/characters/cindy/front.svg | 295 +++++++++++++++++++ presets/characters.js | 43 +++ 5 files changed, 955 insertions(+), 1 deletion(-) create mode 100644 media/characters/cindy/back.svg create mode 100644 media/characters/cindy/front-dressed.svg create mode 100644 media/characters/cindy/front.svg diff --git a/media/attribution.js b/media/attribution.js index 7fd5e762..305a2926 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -13749,7 +13749,7 @@ const attributionData = { { prefix: "./media/characters/eleanor/", files: [ - { name: "front.svg", source: "https://www.furaffinity.net/view/26206622/" }, + { name: "front.svg", source: "https://www.furaffinity.net/view/26206622/", nsfw: true }, { name: "back.svg", source: "https://www.furaffinity.net/view/26206622/" }, { name: "head.svg", source: "https://www.furaffinity.net/view/26206622/" }, ], @@ -13772,6 +13772,20 @@ const attributionData = { "drawsgel" ] }, + { + prefix: "./media/characters/cindy/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/35088272/", nsfw: true }, + { name: "back.svg", source: "https://www.furaffinity.net/view/35088272/", nsfw: true }, + { name: "front-dressed.svg", source: "https://www.furaffinity.net/view/35088272/" }, + ], + authors: [ + "deervvitch" + ], + owners: [ + "mirandaarqayla" + ] + }, //characters { prefix: "./media/dildos/chance/", diff --git a/media/characters/cindy/back.svg b/media/characters/cindy/back.svg new file mode 100644 index 00000000..e9578f6d --- /dev/null +++ b/media/characters/cindy/back.svg @@ -0,0 +1,257 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/cindy/front-dressed.svg b/media/characters/cindy/front-dressed.svg new file mode 100644 index 00000000..508c65da --- /dev/null +++ b/media/characters/cindy/front-dressed.svg @@ -0,0 +1,345 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/cindy/front.svg b/media/characters/cindy/front.svg new file mode 100644 index 00000000..f97ed161 --- /dev/null +++ b/media/characters/cindy/front.svg @@ -0,0 +1,295 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 0ac43bd4..eee60256 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -35853,6 +35853,49 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Cindy", species: ["dragon"], tags: ["anthro"] }, + { + front: { + height: math.unit(5, "feet"), + weight: math.unit(225, "lb"), + name: "Front", + image: { + source: "./media/characters/cindy/front.svg", + extra: 1320/1250, + bottom: 42/1362 + } + }, + frontDressed: { + height: math.unit(5, "feet"), + weight: math.unit(225, "lb"), + name: "Front (Dressed)", + image: { + source: "./media/characters/cindy/front-dressed.svg", + extra: 1320/1250, + bottom: 42/1362 + } + }, + back: { + height: math.unit(5, "feet"), + weight: math.unit(225, "lb"), + name: "Back", + image: { + source: "./media/characters/cindy/back.svg", + extra: 1384/1346, + bottom: 14/1398 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(5, "feet"), + default: true + }, + ] +)) + //characters function makeCharacters() {