diff --git a/media/attribution.js b/media/attribution.js
index 1ae3b7eb..9837660a 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -474,6 +474,19 @@ const attributionData = {
"flyhar"
]
},
+ {
+ prefix: "./media/characters/razinox/",
+ files: [
+ { name: "front.svg", source: "https://www.furaffinity.net/view/33242997/" },
+ { name: "back.svg", source: "https://www.furaffinity.net/view/33242997/" }
+ ],
+ authors: [
+ "lerchief2007"
+ ],
+ owners: [
+ "razinox"
+ ]
+ },
{
prefix: "./media/characters/regal/",
files: [
@@ -888,6 +901,10 @@ const attributionData = {
name: "labratkuma",
url: "https://www.furaffinity.net/user/labratkuma"
},
+ "lerchief2007": {
+ name: "lerchief2007",
+ url: "https://www.furaffinity.net/user/lerchief2007"
+ },
"little-big-x110": {
name: "LittleBig",
url: "https://www.furaffinity.net/user/LittlebigX110"
@@ -952,6 +969,10 @@ const attributionData = {
name: "Quake Yote",
url: "https://www.furaffinity.net/user/rokossovskiy"
},
+ "razinox": {
+ name: "Razinox",
+ url: "https://www.furaffinity.net/user/razinox"
+ },
"rebonica": {
name: "Rebonica",
url: "https://www.furaffinity.net/user/rebonica"
diff --git a/media/characters/razinox/back.svg b/media/characters/razinox/back.svg
new file mode 100644
index 00000000..9c279526
--- /dev/null
+++ b/media/characters/razinox/back.svg
@@ -0,0 +1,92 @@
+
+
+
diff --git a/media/characters/razinox/front.svg b/media/characters/razinox/front.svg
new file mode 100644
index 00000000..305e0a04
--- /dev/null
+++ b/media/characters/razinox/front.svg
@@ -0,0 +1,110 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 0aa5ea56..6d9cd006 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5178,6 +5178,56 @@ characterMakers["Gene Zeta"] = () => {
)
};
+characterMakers["Razinox"] = () => {
+ return makeCharacter(
+ "Razinox",
+ "Razinox",
+ {
+ front: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(350, "lbs"),
+ name: "Front",
+ image: {
+ source: "./media/characters/razinox/front.svg",
+ extra: 1686/1548
+ }
+ },
+ back: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(350, "lbs"),
+ name: "Back",
+ image: {
+ source: "./media/characters/razinox/back.svg",
+ extra: 1660/1590
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(10 + 8/12, "foot")
+ },
+ {
+ name: "Minimacro",
+ height: math.unit(15, "foot")
+ },
+ {
+ name: "Macro",
+ height: math.unit(60, "foot"),
+ default: true
+ },
+ {
+ name: "Megamacro",
+ height: math.unit(5, "miles")
+ },
+ {
+ name: "Gigamacro",
+ height: math.unit(6000, "miles")
+ },
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];