diff --git a/media/attribution.js b/media/attribution.js
index f75908fb..d67ae5eb 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -960,6 +960,32 @@ const attributionData = {
"vemus"
]
},
+ {
+ prefix: "./media/characters/verin/",
+ files: [
+ { name: "front.svg", source: "https://www.furaffinity.net/view/31191465/" },
+ { name: "front-armor.svg", source: "https://www.furaffinity.net/view/31191465/" },
+ { name: "back.svg", source: "https://www.furaffinity.net/view/31191465/" }
+ ],
+ authors: [
+ "theme-finland"
+ ],
+ owners: [
+ "vonadi"
+ ]
+ },
+ {
+ prefix: "./media/characters/verin/",
+ files: [
+ { name: "foot.svg", source: "https://www.furaffinity.net/view/31191781/" }
+ ],
+ authors: [
+ "fandroit"
+ ],
+ owners: [
+ "vonadi"
+ ]
+ },
{
prefix: "./media/characters/wyvrn-ripsnarl/",
files: [
@@ -1203,6 +1229,10 @@ const attributionData = {
name: "Ethan64",
url: "https://www.furaffinity.net/user/ethan64/"
},
+ "fandroit": {
+ name: "fandroit",
+ url: "https://www.furaffinity.net/user/fandroit"
+ },
"fauxlacine": {
name: "Fauxlacine",
url: "https://www.furaffinity.net/user/fauxlacine"
@@ -1495,6 +1525,10 @@ const attributionData = {
name: "Marie",
url: "https://www.furaffinity.net/user/thatmuttmarie"
},
+ "theme-finland": {
+ name: "ThemeFinland",
+ url: "https://www.deviantart.com/themefinland"
+ },
"twitch-the-dragon": {
name: "Twitch",
url: "https://www.furaffinity.net/user/twitchthedragon/"
diff --git a/media/characters/verin/back.svg b/media/characters/verin/back.svg
new file mode 100644
index 00000000..5f1e73d2
--- /dev/null
+++ b/media/characters/verin/back.svg
@@ -0,0 +1,94 @@
+
+
+
diff --git a/media/characters/verin/foot.svg b/media/characters/verin/foot.svg
new file mode 100644
index 00000000..8f041d10
--- /dev/null
+++ b/media/characters/verin/foot.svg
@@ -0,0 +1,62 @@
+
+
+
diff --git a/media/characters/verin/front-armor.svg b/media/characters/verin/front-armor.svg
new file mode 100644
index 00000000..abbcdc42
--- /dev/null
+++ b/media/characters/verin/front-armor.svg
@@ -0,0 +1,163 @@
+
+
+
diff --git a/media/characters/verin/front.svg b/media/characters/verin/front.svg
new file mode 100644
index 00000000..bcf97f96
--- /dev/null
+++ b/media/characters/verin/front.svg
@@ -0,0 +1,387 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 65b7a1dc..de119a81 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5733,6 +5733,66 @@ characterMakers["Selka"] = () => {
)
};
+characterMakers["Verin"] = () => {
+ return makeCharacter(
+ "Verin",
+ "Vonadi",
+ {
+ front: {
+ height: math.unit(8 + 3/12, "feet"),
+ weight: math.unit(424, "lbs"),
+ name: "Front",
+ image: {
+ source: "./media/characters/verin/front.svg",
+ extra: 1845/1550
+ }
+ },
+ frontArmored: {
+ height: math.unit(8 + 3/12, "feet"),
+ weight: math.unit(424, "lbs"),
+ name: "Front (Armored)",
+ image: {
+ source: "./media/characters/verin/front-armor.svg",
+ extra: 1845/1550 * (1 / (1 - 0.01)),
+ bottom: 0.01
+ }
+ },
+ back: {
+ height: math.unit(8 + 3/12, "feet"),
+ weight: math.unit(424, "lbs"),
+ name: "Back",
+ image: {
+ source: "./media/characters/verin/back.svg",
+ bottom: 0.1,
+ extra: 1 / (1 - 0.1)
+ }
+ },
+ foot: {
+ height: math.unit((8 + 3/12) / 4.7, "feet"),
+ name: "Foot",
+ image: {
+ source: "./media/characters/verin/foot.svg"
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(8 + 3/12, "feet")
+ },
+ {
+ name: "Minimacro",
+ height: math.unit(21, "feet"),
+ default: true
+ },
+ {
+ name: "Macro",
+ height: math.unit(626, "feet")
+ },
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];