From 2d287ede6956827013e923ddc8c1817855a7fe52 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Thu, 19 Mar 2020 15:58:51 -0400 Subject: [PATCH] Add Irish; change Kiro's default size --- media/attribution.js | 20 ++ media/characters/irishfox/front.svg | 383 ++++++++++++++++++++++++++++ presets/characters.js | 44 +++- 3 files changed, 444 insertions(+), 3 deletions(-) create mode 100644 media/characters/irishfox/front.svg diff --git a/media/attribution.js b/media/attribution.js index c36294eb..94bf43bd 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -7134,6 +7134,18 @@ const attributionData = { "keeya" ] }, + { + prefix: "./media/characters/irishfox/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/17906067/" } + ], + authors: [ + "tesxacoyote" + ], + owners: [ + "irishfox" + ] + }, //characters { prefix: "./media/food/animals/", @@ -9895,6 +9907,14 @@ const attributionData = { "name": "Keeya", "url": "https://www.furaffinity.net/user/keeya", }, + "irishfox": { + "name": "IrishFox", + "url": "https://www.furaffinity.net/user/irishfox/", + }, + "tesxacoyote": { + "name": "tesxacoyote", + "url": "https://www.furaffinity.net/user/tesxacoyote/", + }, } } diff --git a/media/characters/irishfox/front.svg b/media/characters/irishfox/front.svg new file mode 100644 index 00000000..7ee59e89 --- /dev/null +++ b/media/characters/irishfox/front.svg @@ -0,0 +1,383 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 57002e70..ebbff66d 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -17456,12 +17456,12 @@ characterMakers["Kiro"] = () => { [ { name: "Micro", - height: math.unit(6, "inches"), - default: true + height: math.unit(6, "inches") }, { name: "Normal", - height: math.unit(6, "feet") + height: math.unit(6, "feet"), + default: true }, { name: "Macro", @@ -17471,6 +17471,44 @@ characterMakers["Kiro"] = () => { ) }; +characterMakers["Irishfox"] = () => { + return makeCharacter( + "Irishfox", + "IrishFox", + { + front: { + height: math.unit(5 + 9/12, "feet"), + weight: math.unit(150, "lb"), + name: "Front", + image: { + source: "./media/characters/irishfox/front.svg", + extra: 1912/1680, + bottom: 0.02 + } + }, + }, + [ + { + name: "Nano", + height: math.unit(1, "mm") + }, + { + name: "Micro", + height: math.unit(2, "inches") + }, + { + name: "Normal", + height: math.unit(5 + 9/12, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(45, "feet") + }, + ] + ) +}; + //characters function makeCharacters() {