diff --git a/media/attribution.js b/media/attribution.js index f63dc2fd..fac8c536 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -199,6 +199,18 @@ const attributionData = { "ashtrek" ] }, + { + prefix: "./media/characters/aurora/", + files: [ + { name: "side.svg", source: "https://www.furaffinity.net/view/31191812/" } + ], + authors: [ + "sunkaro" + ], + owners: [ + "vonadi" + ] + }, { prefix: "./media/characters/azura-saharah/", files: [ @@ -1129,6 +1141,10 @@ const attributionData = { name: "sugarbeans", url: "https://www.furaffinity.net/user/sugarbeans/" }, + "sunkaro": { + name: "Sunkaro", + url: "https://www.deviantart.com/sunkaro" + }, "teaselbone": { name: "Teaselbone", url: "https://www.furaffinity.net/user/teaselbone/" @@ -1149,6 +1165,10 @@ const attributionData = { name: "vemus", url: "https://www.furaffinity.net/user/vemus" }, + "vonadi": { + name: "Vonadi", + url: "https://www.furaffinity.net/user/vonadi/" + }, "wolfina-2007": { name: "Wolfina 2007", url: "https://www.furaffinity.net/user/wolfina2007" diff --git a/media/characters/aurora/side.svg b/media/characters/aurora/side.svg new file mode 100644 index 00000000..31d79fa8 --- /dev/null +++ b/media/characters/aurora/side.svg @@ -0,0 +1,125 @@ + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 6953ce11..c98b8704 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5418,6 +5418,38 @@ characterMakers["Fluoresce"] = () => { ) }; +characterMakers["Aurora"] = () => { + return makeCharacter( + "Aurora", + "Vonadi", + { + front: { + height: math.unit(9 + 6/12, "feet"), + weight: math.unit(523, "lbs"), + name: "Side", + image: { + source: "./media/characters/aurora/side.svg" + } + } + }, + [ + { + name: "Normal", + height: math.unit(9 + 6/12, "feet") + }, + { + name: "Macro", + height: math.unit(96, "feet"), + default: true + }, + { + name: "Macro+", + height: math.unit(243, "feet") + }, + ] + ) +}; + function makeCharacters() { const results = [];