diff --git a/macrovision.js b/macrovision.js index d8208070..4fac4b66 100644 --- a/macrovision.js +++ b/macrovision.js @@ -730,11 +730,13 @@ function displayAttribution(file) { div.innerText = "Unknown"; authorHolder.innerHTML = ""; authorHolder.appendChild(div); + console.warn("No authors: " + file); } else if (authors === undefined) { const div = document.createElement("div"); div.innerText = "Not yet entered"; authorHolder.innerHTML = ""; authorHolder.appendChild(div); + console.warn("No authors: " + file); } else { authorHolder.innerHTML = ""; @@ -767,6 +769,7 @@ function displayAttribution(file) { div.innerText = "Not yet entered"; ownerHolder.innerHTML = ""; ownerHolder.appendChild(div); + console.warn("No owners: " + file); } else { ownerHolder.innerHTML = ""; diff --git a/media/LICENSES.md b/media/LICENSES.md index 9268af40..92e85e10 100644 --- a/media/LICENSES.md +++ b/media/LICENSES.md @@ -255,17 +255,6 @@ https://www.furaffinity.net/view/21787301/ * front.svg -## Cimmaron - -**https://www.furaffinity.net/user/vallhund/** - -https://www.furaffinity.net/view/20308475/ - -* front-clothed.svg -* back-clothed.svg -* front-nude.svg -* back-nude.svg - ## Akari **https://www.furaffinity.net/user/spyropurple/** diff --git a/media/attribution.js b/media/attribution.js index 57617ebe..1e3024d0 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -1184,6 +1184,19 @@ const attributionData = { "adamphillip" ] }, + { + prefix: "./media/characters/aevsivs/", + files: [ + { name: "front.svg", source: "https://www.furaffinity.net/view/28301694/" }, + { name: "back.svg", source: "https://www.furaffinity.net/view/28301694/" }, + ], + authors: [ + "tankh" + ], + owners: [ + "aevsivs" + ] + }, { prefix: "./media/characters/aigey/", files: [ @@ -1375,7 +1388,7 @@ const attributionData = { { prefix: "./media/characters/arc/", files: [ - { name: "front.svg", source: "https://www.furaffinity.net/view/35343831/" } + { name: "side.svg", source: "https://www.furaffinity.net/view/35343831/" }, ], authors: [ "poketto-monsta" @@ -1720,6 +1733,21 @@ const attributionData = { "movler" ] }, + { + prefix: "./media/characters/cimmaron/", + files: [ + { name: "front-clothed.svg", source: "https://www.furaffinity.net/user/cimmaronspirit11/" }, + { name: "back-clothed.svg", source: "https://www.furaffinity.net/user/cimmaronspirit11/" }, + { name: "front-nude.svg", source: "https://www.furaffinity.net/user/cimmaronspirit11/" }, + { name: "back-nude.svg", source: "https://www.furaffinity.net/user/cimmaronspirit11/" }, + ], + authors: [ + "vallhund" + ], + owners: [ + "cimmaron" + ] + }, { prefix: "./media/characters/citrine/", files: [ @@ -7241,6 +7269,14 @@ const attributionData = { "name": "dracodare", "url": "www.furaffinity.com/user/dracodare", }, + "cimmaron": { + "name": "Cimmaron", + "url": "https://www.furaffinity.net/user/cimmaronspirit11/", + }, + "aevsivs": { + "name": "Aevsivs", + "url": "https://twitter.com/Aevsivs", + }, } } diff --git a/media/characters/aevsivs/back.svg b/media/characters/aevsivs/back.svg new file mode 100644 index 00000000..386d6230 --- /dev/null +++ b/media/characters/aevsivs/back.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/media/characters/aevsivs/front.svg b/media/characters/aevsivs/front.svg new file mode 100644 index 00000000..c9c6a54a --- /dev/null +++ b/media/characters/aevsivs/front.svg @@ -0,0 +1,247 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/presets/characters.js b/presets/characters.js index f4bc15ab..95ce25e0 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -12978,6 +12978,44 @@ characterMakers["Roy"] = () => { ) }; +characterMakers["Aevsivs"] = () => { + return makeCharacter( + "Aevsivs", + "Aevsivs", + { + front: { + height: math.unit(6, "feet"), + weight: math.unit(100, "lb"), + name: "Front", + image: { + source: "./media/characters/aevsivs/front.svg", + extra: (1 / (1 - 0.03)), + bottom: 0.03 + } + }, + back: { + height: math.unit(6, "feet"), + weight: math.unit(100, "lb"), + name: "Back", + image: { + source: "./media/characters/aevsivs/back.svg" + } + }, + }, + [ + { + name: "Micro", + height: math.unit(2, "inches"), + default: true + }, + { + name: "Normal", + height: math.unit(5, "feet") + }, + ] + ) +}; + function makeCharacters() { const results = []; @@ -12987,5 +13025,22 @@ function makeCharacters() { constructor: value }); }); + + results.push({ + name: "Aigey", + constructor: makeAigey + }); + results.push({ + name: "Natasha", + constructor: makeNatasha + }); + results.push({ + name: "Malik", + constructor: makeMalik + }); + results.push({ + name: "Sefer", + constructor: makeSefer + }); return results; }