From 57aabdadfa25eaa073b1c40652abc6cd9f1568d3 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 1 Feb 2021 13:48:14 -0500 Subject: [PATCH] Add Spot Tea --- media/attribution.js | 23 + media/characters/spot-tea/daily-wear.svg | 380 +++++++++++++ .../spot-tea/fully-equipped-back.svg | 405 ++++++++++++++ .../spot-tea/fully-equipped-front.svg | 498 ++++++++++++++++++ media/characters/spot-tea/maid-work.svg | 314 +++++++++++ presets/characters.js | 57 ++ 6 files changed, 1677 insertions(+) create mode 100644 media/characters/spot-tea/daily-wear.svg create mode 100644 media/characters/spot-tea/fully-equipped-back.svg create mode 100644 media/characters/spot-tea/fully-equipped-front.svg create mode 100644 media/characters/spot-tea/maid-work.svg diff --git a/media/attribution.js b/media/attribution.js index 03b6ebc5..4af6b807 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -14204,6 +14204,21 @@ const attributionData = { "thelightfury290" ] }, + { + prefix: "./media/characters/spot-tea/", + files: [ + { name: "fully-equipped-front.svg", source: null }, + { name: "fully-equipped-back.svg", source: null }, + { name: "daily-wear.svg", source: null }, + { name: "maid-work.svg", source: null }, + ], + authors: [ + "timor" + ], + owners: [ + "teathescout" + ] + }, //characters { prefix: "./media/dildos/chance/", @@ -19475,6 +19490,14 @@ const attributionData = { "name": "Rackiera", "url": "https://www.weasyl.com/~rackie" }, + "teathescout": { + "name": "Tea", + "url": "https://twitter.com/TeaTheScout " + }, + "timor": { + "name": "Timor", + "url": null + }, } } diff --git a/media/characters/spot-tea/daily-wear.svg b/media/characters/spot-tea/daily-wear.svg new file mode 100644 index 00000000..965d890c --- /dev/null +++ b/media/characters/spot-tea/daily-wear.svg @@ -0,0 +1,380 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/spot-tea/fully-equipped-back.svg b/media/characters/spot-tea/fully-equipped-back.svg new file mode 100644 index 00000000..2547f566 --- /dev/null +++ b/media/characters/spot-tea/fully-equipped-back.svg @@ -0,0 +1,405 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/spot-tea/fully-equipped-front.svg b/media/characters/spot-tea/fully-equipped-front.svg new file mode 100644 index 00000000..e409cfef --- /dev/null +++ b/media/characters/spot-tea/fully-equipped-front.svg @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/spot-tea/maid-work.svg b/media/characters/spot-tea/maid-work.svg new file mode 100644 index 00000000..afff8507 --- /dev/null +++ b/media/characters/spot-tea/maid-work.svg @@ -0,0 +1,314 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 67f3457a..3abc0084 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -1604,6 +1604,10 @@ const speciesData = { name: "Program", parents: ["construct"] }, + "space-springhare": { + name: "Space Springhare", + parents: ["rabbit"] + }, } //species @@ -37044,6 +37048,59 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Spot Tea", species: ["space-springhare"], tags: ["anthro"] }, + { + fullyEquippedFront: { + height: math.unit(3 + 1/12, "feet"), + weight: math.unit(24, "lb"), + name: "Fully Equipped (Front)", + image: { + source: "./media/characters/spot-tea/fully-equipped-front.svg", + extra: 687/605, + bottom: 18/705 + } + }, + fullyEquippedBack: { + height: math.unit(3 + 1/12, "feet"), + weight: math.unit(24, "lb"), + name: "Fully Equipped (Back)", + image: { + source: "./media/characters/spot-tea/fully-equipped-back.svg", + extra: 689/590, + bottom: 18/707 + } + }, + dailyWear: { + height: math.unit(3 + 1/12, "feet"), + weight: math.unit(24, "lb"), + name: "Daily Wear", + image: { + source: "./media/characters/spot-tea/daily-wear.svg", + extra: 701/620, + bottom: 21/722 + } + }, + maidWork: { + height: math.unit(3 + 1/12, "feet"), + weight: math.unit(24, "lb"), + name: "Maid Work", + image: { + source: "./media/characters/spot-tea/maid-work.svg", + extra: 693/609, + bottom: 15/708 + } + }, + }, + [ + { + name: "Normal", + height: math.unit(3 + 1/12, "feet"), + default: true + }, + ] +)) + //characters function makeCharacters() {