From bf8533a31a3d95c8c723cee778612088241d3df5 Mon Sep 17 00:00:00 2001 From: Fen Dweller Date: Sun, 15 Mar 2020 18:27:06 -0400 Subject: [PATCH] Add Nino and Viola. Correct heights for Aspen/Sheila/Michelle --- media/attribution.js | 24 ++++ media/characters/nino/front.svg | 214 +++++++++++++++++++++++++++++++ media/characters/viola/front.svg | 94 ++++++++++++++ presets/characters.js | 68 ++++++++-- 4 files changed, 392 insertions(+), 8 deletions(-) create mode 100644 media/characters/nino/front.svg create mode 100644 media/characters/viola/front.svg diff --git a/media/attribution.js b/media/attribution.js index 75fe2be7..f5bf53a8 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -6365,6 +6365,30 @@ const attributionData = { "fidchell" ] }, + { + prefix: "./media/characters/nino/", + files: [ + { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Nino_Stoat" } + ], + authors: [ + "fidchell" + ], + owners: [ + "fidchell" + ] + }, + { + prefix: "./media/characters/viola/", + files: [ + { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Viola_Stoat" } + ], + authors: [ + "fidchell" + ], + owners: [ + "fidchell" + ] + }, //characters { prefix: "./media/food/animals/", diff --git a/media/characters/nino/front.svg b/media/characters/nino/front.svg new file mode 100644 index 00000000..59f2451e --- /dev/null +++ b/media/characters/nino/front.svg @@ -0,0 +1,214 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/viola/front.svg b/media/characters/viola/front.svg new file mode 100644 index 00000000..5c53aaa9 --- /dev/null +++ b/media/characters/viola/front.svg @@ -0,0 +1,94 @@ + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 6ccdfb2c..06f0f763 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -15321,7 +15321,8 @@ characterMakers["Max Calore"] = () => { [ { name: "Normal", - height: math.unit(6 + 3/12, "feet") + height: math.unit(6 + 3/12, "feet"), + default: true }, ] ) @@ -15338,7 +15339,7 @@ characterMakers["Aspen"] = () => { name: "Side", image: { source: "./media/characters/aspen/side.svg", - extra: 152/97, + extra: 152/138, bottom: 0.032 } }, @@ -15346,7 +15347,8 @@ characterMakers["Aspen"] = () => { [ { name: "Normal", - height: math.unit(2 + 8/12, "feet") + height: math.unit(2 + 8/12, "feet"), + default: true }, ] ) @@ -15363,7 +15365,7 @@ characterMakers["Sheila (Wolf)"] = () => { name: "Side", image: { source: "./media/characters/sheila-wolf/side.svg", - extra: 179/112, + extra: 179/166, bottom: 0.03 } }, @@ -15371,7 +15373,8 @@ characterMakers["Sheila (Wolf)"] = () => { [ { name: "Normal", - height: math.unit(3 + 2/12, "feet") + height: math.unit(3 + 2/12, "feet"), + default: true }, ] ) @@ -15388,7 +15391,7 @@ characterMakers["Michelle"] = () => { name: "Side", image: { source: "./media/characters/michelle/side.svg", - extra: 147/64, + extra: 147/136.7, bottom: 0.03 } }, @@ -15396,11 +15399,60 @@ characterMakers["Michelle"] = () => { [ { name: "Normal", - height: math.unit(1 + 9/12, "feet") + height: math.unit(1 + 9/12, "feet"), + default: true + }, + ] + ) +}; + +characterMakers["Nino"] = () => { + return makeCharacter( + "Nino", + "Fidchell", + { + front: { + height: math.unit(1 + 1/12, "feet"), + weight: math.unit(18, "lb"), + name: "Front", + image: { + source: "./media/characters/nino/front.svg" + } + }, + }, + [ + { + name: "Normal", + height: math.unit(1 + 1/12, "feet"), + default: true }, ] ) -};c +}; + +characterMakers["Viola"] = () => { + return makeCharacter( + "Viola", + "Fidchell", + { + front: { + height: math.unit(1, "feet"), + weight: math.unit(16, "lb"), + name: "Front", + image: { + source: "./media/characters/viola/front.svg" + } + }, + }, + [ + { + name: "Normal", + height: math.unit(1, "feet"), + default: true + }, + ] + ) +}; //characters