diff --git a/media/attribution.js b/media/attribution.js
index fac8c536..3bb612e3 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -523,6 +523,43 @@ const attributionData = {
"flyhar"
]
},
+ {
+ prefix: "./media/characters/ranek/",
+ files: [
+ { name: "front.svg", source: "https://www.furaffinity.net/view/13716690/" },
+ { name: "back.svg", source: "https://www.furaffinity.net/view/13716690/" }
+ ],
+ authors: [
+ "deets"
+ ],
+ owners: [
+ "ranek"
+ ]
+ },
+ {
+ prefix: "./media/characters/ranek/",
+ files: [
+ { name: "side.svg", source: "https://www.furaffinity.net/view/23396128/" }
+ ],
+ authors: [
+ "shuryashish"
+ ],
+ owners: [
+ "ranek"
+ ]
+ },
+ {
+ prefix: "./media/characters/ranek/",
+ files: [
+ { name: "feral.svg", source: "https://www.furaffinity.net/view/12974202/" }
+ ],
+ authors: [
+ "meershroom"
+ ],
+ owners: [
+ "ranek"
+ ]
+ },
{
prefix: "./media/characters/ravin-amulet/",
files: [
@@ -913,6 +950,10 @@ const attributionData = {
name: "Deathy",
url: "https://www.furaffinity.net/user/d-eath-tail"
},
+ "deets": {
+ name: "Deets",
+ url: "https://www.furaffinity.net/user/deets"
+ },
"dialuca": {
name: "Dialuca",
url: "https://www.furaffinity.net/user/dialuca01"
@@ -1033,6 +1074,10 @@ const attributionData = {
name: "Matty the Mouse",
url: "https://www.furaffinity.net/user/mattythemouse/"
},
+ "meershroom": {
+ name: "Meershroom",
+ url: "https://www.furaffinity.net/user/meershroom"
+ },
"miateshcha": {
name: "Miateshcha",
url: "https://www.furaffinity.net/user/miateshcha/"
@@ -1085,6 +1130,10 @@ const attributionData = {
name: "Ram the Dragon",
url: "https://www.furaffinity.net/user/ramthedragon"
},
+ "ranek": {
+ name: "Ranek",
+ url: "https://www.furaffinity.net/user/ranek"
+ },
"ravin-amulet": {
name: "Ravin Amulet",
url: "https://www.furaffinity.net/user/ravinamulet/"
@@ -1109,6 +1158,10 @@ const attributionData = {
name: "Scareye",
url: "https://www.furaffinity.net/user/scareye/"
},
+ "shuryashish": {
+ name: "Shuryashish",
+ url: "https://www.furaffinity.net/user/shuryashish"
+ },
"silverwingink": {
name: "silverwingink",
url: "https://www.furaffinity.net/user/silverwingink/"
diff --git a/media/characters/ranek/back.svg b/media/characters/ranek/back.svg
new file mode 100644
index 00000000..7c2da277
--- /dev/null
+++ b/media/characters/ranek/back.svg
@@ -0,0 +1,91 @@
+
+
+
diff --git a/media/characters/ranek/feral.svg b/media/characters/ranek/feral.svg
new file mode 100644
index 00000000..aecb603f
--- /dev/null
+++ b/media/characters/ranek/feral.svg
@@ -0,0 +1,74 @@
+
+
+
diff --git a/media/characters/ranek/front.svg b/media/characters/ranek/front.svg
new file mode 100644
index 00000000..eed7d5bf
--- /dev/null
+++ b/media/characters/ranek/front.svg
@@ -0,0 +1,91 @@
+
+
+
diff --git a/media/characters/ranek/side.svg b/media/characters/ranek/side.svg
new file mode 100644
index 00000000..e416fd94
--- /dev/null
+++ b/media/characters/ranek/side.svg
@@ -0,0 +1,94 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index c98b8704..54e16c90 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5450,6 +5450,58 @@ characterMakers["Aurora"] = () => {
)
};
+characterMakers["Ranek"] = () => {
+ return makeCharacter(
+ "Ranek",
+ "Ranek",
+ {
+ front: {
+ height: math.unit(194, "cm"),
+ weight: math.unit(90, "kg"),
+ name: "Front",
+ image: {
+ source: "./media/characters/ranek/front.svg"
+ }
+ },
+ side: {
+ height: math.unit(194, "cm"),
+ weight: math.unit(90, "kg"),
+ name: "Side",
+ image: {
+ source: "./media/characters/ranek/side.svg"
+ }
+ },
+ back: {
+ height: math.unit(194, "cm"),
+ weight: math.unit(90, "kg"),
+ name: "Back",
+ image: {
+ source: "./media/characters/ranek/back.svg"
+ }
+ },
+ feral: {
+ height: math.unit(30, "cm"),
+ weight: math.unit(1.6, "lbs"),
+ name: "Feral",
+ image: {
+ source: "./media/characters/ranek/feral.svg"
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(194, "cm"),
+ default: true
+ },
+ {
+ name: "Macro",
+ height: math.unit(100, "meters")
+ },
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];