diff --git a/media/attribution.js b/media/attribution.js index d5a85c2a..77f54796 100644 --- a/media/attribution.js +++ b/media/attribution.js @@ -498,6 +498,21 @@ const attributionData = { "flyhar" ] }, + { + prefix: "./media/characters/ravin-amulet/", + files: [ + { name: "front-cat.svg", source: null }, + { name: "front-cat-alt.svg", source: null }, + { name: "front-werewolf.svg", source: null }, + { name: "back-werewolf.svg", source: null }, + ], + authors: [ + "levi-ann-porter" + ], + owners: [ + "ravin-amulet" + ] + }, { prefix: "./media/characters/razinox/", files: [ @@ -929,6 +944,10 @@ const attributionData = { name: "IAMANEAGLEt", url: "https://www.furaffinity.net/user/iamaneaglet/" }, + "jackalope": { + name: "jackalope", + url: "https://www.furaffinity.net/user/jackalope" + }, "jaro-the-dragon": { name: "Jaro", url: "https://www.furaffinity.net/user/jarothedragon/" @@ -957,6 +976,10 @@ const attributionData = { name: "lerchief2007", url: "https://www.furaffinity.net/user/lerchief2007" }, + "levi-ann-porter": { + name: "Levi Ann Porter", + url: "https://twitter.com/LeviAnnPorter" + }, "little-big-x110": { name: "LittleBig", url: "https://www.furaffinity.net/user/LittlebigX110" @@ -1037,6 +1060,10 @@ const attributionData = { name: "Ram the Dragon", url: "https://www.furaffinity.net/user/ramthedragon" }, + "ravin-amulet": { + name: "Ravin Amulet", + url: "https://www.furaffinity.net/user/ravinamulet/" + }, "razinox": { name: "Razinox", url: "https://www.furaffinity.net/user/razinox" @@ -1109,6 +1136,10 @@ const attributionData = { name: "vemus", url: "https://www.furaffinity.net/user/vemus" }, + "wolfina-2007": { + name: "Wolfina 2007", + url: "https://www.furaffinity.net/user/wolfina2007" + }, "wonderball": { name: "Wonderball", url: "https://www.furaffinity.net/user/wonderball" diff --git a/media/characters/ravin-amulet/back-werewolf.svg b/media/characters/ravin-amulet/back-werewolf.svg new file mode 100644 index 00000000..5fab417f --- /dev/null +++ b/media/characters/ravin-amulet/back-werewolf.svg @@ -0,0 +1,82 @@ + + + + + diff --git a/media/characters/ravin-amulet/front-cat-alt.svg b/media/characters/ravin-amulet/front-cat-alt.svg new file mode 100644 index 00000000..3828ffdf --- /dev/null +++ b/media/characters/ravin-amulet/front-cat-alt.svg @@ -0,0 +1,84 @@ + + + + + diff --git a/media/characters/ravin-amulet/front-cat.svg b/media/characters/ravin-amulet/front-cat.svg new file mode 100644 index 00000000..33abc7c0 --- /dev/null +++ b/media/characters/ravin-amulet/front-cat.svg @@ -0,0 +1,94 @@ + + + + + diff --git a/media/characters/ravin-amulet/front-werewolf.svg b/media/characters/ravin-amulet/front-werewolf.svg new file mode 100644 index 00000000..4d016a8f --- /dev/null +++ b/media/characters/ravin-amulet/front-werewolf.svg @@ -0,0 +1,68 @@ + + + + + diff --git a/presets/characters.js b/presets/characters.js index 61d379e8..7911abe8 100644 --- a/presets/characters.js +++ b/presets/characters.js @@ -5322,6 +5322,66 @@ characterMakers["Teal"] = () => { ) }; +characterMakers["Ravin Amulet"] = () => { + return makeCharacter( + "Ravin Amulet", + "Ravin Amulet", + { + frontCat: { + height: math.unit(6, "feet"), + weight: math.unit(180, "lbs"), + name: "Front (Cat)", + image: { + source: "./media/characters/ravin-amulet/front-cat.svg" + } + }, + frontCatAlt: { + height: math.unit(6, "feet"), + weight: math.unit(180, "lbs"), + name: "Front (Alt, Cat)", + image: { + source: "./media/characters/ravin-amulet/front-cat-alt.svg" + } + }, + frontWerewolf: { + height: math.unit(6*1.2, "feet"), + weight: math.unit(225, "lbs"), + name: "Front (Werewolf)", + image: { + source: "./media/characters/ravin-amulet/front-werewolf.svg" + } + }, + backWerewolf: { + height: math.unit(6*1.2, "feet"), + weight: math.unit(225, "lbs"), + name: "Back (Werewolf)", + image: { + source: "./media/characters/ravin-amulet/back-werewolf.svg" + } + }, + }, + [ + { + name: "Nano", + height: math.unit(1, "micrometer") + }, + { + name: "Micro", + height: math.unit(1, "inch") + }, + { + name: "Normal", + height: math.unit(6, "feet"), + default: true + }, + { + name: "Macro", + height: math.unit(60, "feet") + } + ] + ) +}; + function makeCharacters() { const results = [];