diff --git a/media/attribution.js b/media/attribution.js index 8c602f34..6f6e6f52 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -601,6 +601,20 @@ const attributionData = { "lobo-raptor-lo" ] }, + { + prefix: "./media/characters/yozey/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/31547387/" }, + { name: "front-alt.svg", source: "https://www.furaffinity.net/view/31547387/" }, + { name: "side.svg", source: "https://www.furaffinity.net/view/31547387/" }, + ], + authors: [ + "pocket-opossum" + ], + owners: [ + "yozey" + ] + }, { prefix: "./media/characters/", files: [ @@ -894,6 +908,10 @@ const attributionData = { name: "Phil Bronnery", url: "https://www.flickr.com/people/27919241@N02" }, + "pocket-opossum": { + name: "Pocket Opossum", + url: "https://www.furaffinity.net/user/pocketopossum/" + }, "pornkitsi": { name: "Pornkitsi", url: "https://www.furaffinity.net/user/pornkitsi/" @@ -966,6 +984,10 @@ const attributionData = { name: "Wonderball", url: "https://www.furaffinity.net/user/wonderball" }, + "yozey": { + name: "Yozey", + url: "https://www.furaffinity.net/user/yozey/" + }, "zyraxus": { name: "Zyraxus", url: "https://www.furaffinity.net/user/zyraxus" diff --git a/media/characters/yozey/front-alt.svg b/media/characters/yozey/front-alt.svg new file mode 100644 index 00000000..9e4d8138 --- /dev/null +++ b/media/characters/yozey/front-alt.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + diff --git a/media/characters/yozey/front.svg b/media/characters/yozey/front.svg new file mode 100644 index 00000000..9d327804 --- /dev/null +++ b/media/characters/yozey/front.svg @@ -0,0 +1,80 @@ + + + + + diff --git a/media/characters/yozey/side.svg b/media/characters/yozey/side.svg new file mode 100644 index 00000000..db7cad46 --- /dev/null +++ b/media/characters/yozey/side.svg @@ -0,0 +1,77 @@ + + + + + diff --git a/presets/characters.js b/presets/characters.js index b7da726c..40c1cf7e 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5067,6 +5067,50 @@ characterMakers["Mandake"] = () => { ) }; +characterMakers["Yozey"] = () => { + return makeCharacter( + "Yozey", + "Yozey", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(120, "lbs"), + name: "Front", + image: { + source: "./media/characters/yozey/front.svg" + } + }, + frontAlt: { + height: math.unit(6, "feet"), + weight: math.unit(120, "lbs"), + name: "Front (Alt)", + image: { + source: "./media/characters/yozey/front-alt.svg" + } + }, + side: { + height: math.unit(6, "feet"), + weight: math.unit(120, "lbs"), + name: "Side", + image: { + source: "./media/characters/yozey/side.svg" + } + }, + }, + [ + { + name: "Micro", + height: math.unit(3, "inches"), + default: true + }, + { + name: "Normal", + height: math.unit(6, "feet") + } + ] + ) +}; + function makeCharacters() { const results = [];