diff --git a/media/attribution.js b/media/attribution.js index 76253d9d..c1c1d896 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -337,6 +337,31 @@ const attributionData = { "miateshcha" ] }, + { + prefix: "./media/characters/corvin/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/15581561/" }, + { name: "back.svg", source: "https://www.furaffinity.net/view/15581561/" } + ], + authors: [ + "fiuefey" + ], + owners: [ + "sirffuzzylogik" + ] + }, + { + prefix: "./media/characters/corvin/", + files: [ + { name: "side.svg", source: "https://www.furaffinity.net/view/18178601/" } + ], + authors: [ + "tylowell" + ], + owners: [ + "sirffuzzylogik" + ] + }, { prefix: "./media/characters/daniel/", files: [ @@ -1982,6 +2007,18 @@ const attributionData = { "name": "Sentri", "url": "https://www.furaffinity.net/user/sparkfloof/", }, + "fiuefey": { + "name": "Fiurfey", + "url": "https://www.furaffinity.net/user/fiuefey/", + }, + "tylowell": { + "name": "TyLowell", + "url": "https://www.furaffinity.net/user/tylowell/", + }, + "sirffuzzylogik": { + "name": "sirffuzzylogik", + "url": "https://www.furaffinity.net/user/sirffuzzylogik", + }, } } diff --git a/media/characters/corvin/back.svg b/media/characters/corvin/back.svg new file mode 100644 index 00000000..b942d897 --- /dev/null +++ b/media/characters/corvin/back.svg @@ -0,0 +1,70 @@ + + + + + + diff --git a/media/characters/corvin/front.svg b/media/characters/corvin/front.svg new file mode 100644 index 00000000..59471e20 --- /dev/null +++ b/media/characters/corvin/front.svg @@ -0,0 +1,82 @@ + + + + + + diff --git a/media/characters/corvin/side.svg b/media/characters/corvin/side.svg new file mode 100644 index 00000000..e9269401 --- /dev/null +++ b/media/characters/corvin/side.svg @@ -0,0 +1,334 @@ + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index 92c8fddf..c47b1eed 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -6012,6 +6012,61 @@ characterMakers["Sentri"] = () => { ) }; +characterMakers["Corvin"] = () => { + return makeCharacter( + "Corvin", + "Sirffuzzylogik", + { + front: { + height: math.unit(5 + 8/12, "feet"), + weight: math.unit(130, "lbs"), + name: "Front", + image: { + source: "./media/characters/corvin/front.svg", + extra: 1803/1629 + } + }, + side: { + height: math.unit(5 + 8/12, "feet"), + weight: math.unit(130, "lbs"), + name: "Side", + image: { + source: "./media/characters/corvin/side.svg", + extra: 1012/945 + } + }, + back: { + height: math.unit(5 + 8/12, "feet"), + weight: math.unit(130, "lbs"), + name: "Back", + image: { + source: "./media/characters/corvin/back.svg", + extra: 1803/1629 + } + }, + }, + [ + { + name: "Micro", + height: math.unit(3, "inches") + }, + { + name: "Normal", + height: math.unit(5 + 8/12, "feet") + }, + { + name: "Macro", + height: math.unit(300, "feet"), + default: true + }, + { + name: "Megamacro", + height: math.unit(500, "miles") + } + ] + ) +}; + function makeCharacters() { const results = [];