From 923774f8076f6f83048b084159cfd8025be5e572 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Fri, 16 Apr 2021 08:53:42 -0400 Subject: [PATCH] Add fennec foxes --- media/attribution.js | 15 + media/species/fennec-fox/back.svg | 411 ++++++++++++++++++ media/species/fennec-fox/front.svg | 647 +++++++++++++++++++++++++++++ media/species/fennec-fox/mouth.svg | 204 +++++++++ presets/species.js | 48 +++ 5 files changed, 1325 insertions(+) create mode 100644 media/species/fennec-fox/back.svg create mode 100644 media/species/fennec-fox/front.svg create mode 100644 media/species/fennec-fox/mouth.svg diff --git a/media/attribution.js b/media/attribution.js index 09db2985..2bbb162e 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -15880,6 +15880,17 @@ const attributionData = { "sareii" ] }, + { + prefix: "./media/species/fennec-fox/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/40640151/" }, + { name: "back.svg", source: "https://www.furaffinity.net/view/40640151/" }, + { name: "mouth.svg", source: "https://www.furaffinity.net/view/40640151/" }, + ], + authors: [ + "detruo" + ] + }, { prefix: "./media/vehicles/", files: [ @@ -21101,6 +21112,10 @@ const attributionData = { "name": "Wren", "url": "https://www.furaffinity.net/user/sareii/" }, + "detruo": { + "name": "detruo", + "url": "https://www.furaffinity.net/user/detruo/" + }, } } diff --git a/media/species/fennec-fox/back.svg b/media/species/fennec-fox/back.svg new file mode 100644 index 00000000..3ef437eb --- /dev/null +++ b/media/species/fennec-fox/back.svg @@ -0,0 +1,411 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/species/fennec-fox/front.svg b/media/species/fennec-fox/front.svg new file mode 100644 index 00000000..871ba3ef --- /dev/null +++ b/media/species/fennec-fox/front.svg @@ -0,0 +1,647 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/species/fennec-fox/mouth.svg b/media/species/fennec-fox/mouth.svg new file mode 100644 index 00000000..79e20a3b --- /dev/null +++ b/media/species/fennec-fox/mouth.svg @@ -0,0 +1,204 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/species.js b/presets/species.js index f0851e87..a3423898 100644 --- a/presets/species.js +++ b/presets/species.js @@ -239,6 +239,54 @@ speciesMakers["Werewolf"] = () => makeCharacter( ] ) +speciesMakers["Fennec Fox"] = () => makeCharacter( + { name: "Fennec Fox", species: ["fennec-fox"], tags: ["anthro"] }, + { + front: { + height: math.unit(5 + 6/12, "feet"), + weight: math.unit(130, "lb"), + name: "Front", + image: { + source: "./media/species/fennec-fox/front.svg", + extra: 1148/1001, + bottom: 21/1169 + } + }, + back: { + height: math.unit(5 + 6/12, "feet"), + weight: math.unit(130, "lb"), + name: "Back", + image: { + source: "./media/species/fennec-fox/back.svg", + extra: 1155/1007, + bottom: 12/1167 + } + }, + mouth: { + height: math.unit(0.2, "meters"), + name: "Mouth", + image: { + source: "./media/species/fennec-fox/mouth.svg" + } + }, + }, + [ + { + name: "Small", + height: math.unit(4, "feet") + }, + { + name: "Human-Sized", + height: math.unit(5 + 6/12, "feet"), + default: true + }, + { + name: "Big", + height: math.unit(9, "feet") + }, + ] +) + function makeSpecies() { const results = [];