diff --git a/media/attribution.js b/media/attribution.js index fbcfc9dc..b9826c29 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -1326,6 +1326,43 @@ const attributionData = { "ashtrek" ] }, + { + prefix: "./media/characters/aura-starwind/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/28114444/" } + ], + authors: [ + "blackfoxguts" + ], + owners: [ + "strikevixen" + ] + }, + { + prefix: "./media/characters/aura-starwind/", + files: [ + { name: "side.svg", source: "https://www.furaffinity.net/view/28114444/" }, + { name: "taur.svg", source: "https://www.furaffinity.net/view/28114444/" } + ], + authors: [ + "tenewuff" + ], + owners: [ + "strikevixen" + ] + }, + { + prefix: "./media/characters/aura-starwind/", + files: [ + { name: "feral.svg", source: null } + ], + authors: [ + "slckness" + ], + owners: [ + "strikevixen" + ] + }, { prefix: "./media/characters/aurora/", files: [ @@ -3178,6 +3215,22 @@ const attributionData = { "name": "thunderstrike23", "url": "https://www.furaffinity.net/user/thunderstrike23/", }, + "blackfoxguts": { + "name": "blackfoxguts", + "url": "https://www.furaffinity.net/user/blackfoxguts/", + }, + "strikevixen": { + "name": "StrikeVixen", + "url": "https://www.furaffinity.net/user/strikevixen/", + }, + "tenewuff": { + "name": "TeneWuff", + "url": "http://furaffinity.net/user/tenewuff", + }, + "slckness": { + "name": "Slckness", + "url": "http://furaffinity.net/user/slckness", + }, } } diff --git a/media/characters/aura-starwind/feral.svg b/media/characters/aura-starwind/feral.svg new file mode 100644 index 00000000..aa58f852 --- /dev/null +++ b/media/characters/aura-starwind/feral.svg @@ -0,0 +1,108 @@ + + + + + + + diff --git a/media/characters/aura-starwind/front.svg b/media/characters/aura-starwind/front.svg new file mode 100644 index 00000000..626c291c --- /dev/null +++ b/media/characters/aura-starwind/front.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + diff --git a/media/characters/aura-starwind/side.svg b/media/characters/aura-starwind/side.svg new file mode 100644 index 00000000..34af0d66 --- /dev/null +++ b/media/characters/aura-starwind/side.svg @@ -0,0 +1,44 @@ + + + + + diff --git a/media/characters/aura-starwind/taur.svg b/media/characters/aura-starwind/taur.svg new file mode 100644 index 00000000..2a4f3c81 --- /dev/null +++ b/media/characters/aura-starwind/taur.svg @@ -0,0 +1,67 @@ + + + + + diff --git a/presets/characters.js b/presets/characters.js index d34dad9d..a01f41ee 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -6209,6 +6209,68 @@ characterMakers["Citrine"] = () => { ) }; +characterMakers["Aura Starwind"] = () => { + return makeCharacter( + "Aura Starwind", + "StrikeVixen", + { + front: { + height: math.unit(14, "feet"), + weight: math.unit(1450, "kg"), + name: "Front", + image: { + source: "./media/characters/aura-starwind/front.svg", + extra: 1455/1335 + } + }, + side: { + height: math.unit(14, "feet"), + weight: math.unit(1450, "kg"), + name: "Side", + image: { + source: "./media/characters/aura-starwind/side.svg", + extra: 1654/1497 + } + }, + taur: { + height: math.unit(18, "feet"), + weight: math.unit(5500, "kg"), + name: "Taur", + image: { + source: "./media/characters/aura-starwind/taur.svg", + extra: 1760/1650 + } + }, + feral: { + height: math.unit(46, "feet"), + weight: math.unit(25000, "kg"), + name: "Feral", + image: { + source: "./media/characters/aura-starwind/feral.svg" + } + }, + }, + [ + { + name: "Normal", + height: math.unit(14, "feet") + }, + { + name: "Macro", + height: math.unit(50, "meters") + }, + { + name: "Megamacro", + height: math.unit(5000, "meters") + }, + { + name: "Gigamacro", + height: math.unit(100000, "kilometers") + }, + ] + ) +}; + function makeCharacters() { const results = [];