From f3af79eda81bc67a05492386e12ecdeff3eec52b Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Mon, 21 Feb 2022 10:06:26 -0500 Subject: [PATCH] Add Vincent (the fox) --- media/attribution.js | 19 + media/characters/vincent-fox/back.svg | 1168 ++++++++++++++++++ media/characters/vincent-fox/ear.svg | 320 +++++ media/characters/vincent-fox/front.svg | 1574 ++++++++++++++++++++++++ media/characters/vincent-fox/paw.svg | 279 +++++ presets/characters.js | 55 + 6 files changed, 3415 insertions(+) create mode 100644 media/characters/vincent-fox/back.svg create mode 100644 media/characters/vincent-fox/ear.svg create mode 100644 media/characters/vincent-fox/front.svg create mode 100644 media/characters/vincent-fox/paw.svg diff --git a/media/attribution.js b/media/attribution.js index 9a4d8721..2d29b5f9 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -20411,6 +20411,21 @@ const attributionData = { "bootysquish" ] }, + { + prefix: "./media/characters/vincent-fox/", + files: [ + { name: "front.svg", source: "https://twitter.com/NotFlamm/status/1494118038823702528?s=20&t=cZRFxGiikHG3IqeC3i1CRA" }, + { name: "back.svg", source: "https://twitter.com/NotFlamm/status/1494118038823702528?s=20&t=cZRFxGiikHG3IqeC3i1CRA" }, + { name: "paw.svg", source: "https://twitter.com/NotFlamm/status/1494118038823702528?s=20&t=cZRFxGiikHG3IqeC3i1CRA" }, + { name: "ear.svg", source: "https://twitter.com/NotFlamm/status/1494118038823702528?s=20&t=cZRFxGiikHG3IqeC3i1CRA" }, + ], + authors: [ + "talidrawing" + ], + owners: [ + "flamm" + ] + }, //characters { prefix: "./media/fiction/halo/halo/", @@ -28474,6 +28489,10 @@ const attributionData = { "name": "bootysquish", "url": "https://twitter.com/bootysquish" }, + "talidrawing": { + "name": "Tali", + "url": "https://twitter.com/Talidrawing" + }, } } diff --git a/media/characters/vincent-fox/back.svg b/media/characters/vincent-fox/back.svg new file mode 100644 index 00000000..7e8e5666 --- /dev/null +++ b/media/characters/vincent-fox/back.svg @@ -0,0 +1,1168 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/vincent-fox/ear.svg b/media/characters/vincent-fox/ear.svg new file mode 100644 index 00000000..714ecf41 --- /dev/null +++ b/media/characters/vincent-fox/ear.svg @@ -0,0 +1,320 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/vincent-fox/front.svg b/media/characters/vincent-fox/front.svg new file mode 100644 index 00000000..e533fe78 --- /dev/null +++ b/media/characters/vincent-fox/front.svg @@ -0,0 +1,1574 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/vincent-fox/paw.svg b/media/characters/vincent-fox/paw.svg new file mode 100644 index 00000000..cd2181c0 --- /dev/null +++ b/media/characters/vincent-fox/paw.svg @@ -0,0 +1,279 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 3d011972..d72a612d 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -2138,6 +2138,10 @@ const speciesData = { name: "Swampert", parents: ["pokemon"] }, + "red-fox": { + name: "Red Fox", + parents: ["fox"] + }, } //species @@ -56551,6 +56555,57 @@ characterMakers.push(() => makeCharacter( ] )) +characterMakers.push(() => makeCharacter( + { name: "Vincent (Fox)", species: ["red-fox"], tags: ["anthro"] }, + { + front: { + height: math.unit(7 + 8/12, "feet"), + weight: math.unit(333, "lb"), + name: "Front", + image: { + source: "./media/characters/vincent-fox/front.svg", + extra: 1962/1860, + bottom: 41/2003 + } + }, + back: { + height: math.unit(7 + 8/12, "feet"), + weight: math.unit(333, "lb"), + name: "Back", + image: { + source: "./media/characters/vincent-fox/back.svg", + extra: 1952/1815, + bottom: 33/1985 + } + }, + paw: { + height: math.unit(1.24, "feet"), + name: "Paw", + image: { + source: "./media/characters/vincent-fox/paw.svg" + } + }, + ear: { + height: math.unit(0.75, "feet"), + name: "Ear", + image: { + source: "./media/characters/vincent-fox/ear.svg" + } + }, + }, + [ + { + name: "Nano", + height: math.unit(92, "micrometers") + }, + { + name: "Normal", + height: math.unit(7 + 8/12, "feet"), + default: true + }, + ] +)) + //characters function makeCharacters() {