diff --git a/media/attribution.js b/media/attribution.js
index bc1d1ffe..fa94eb2f 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -8498,6 +8498,31 @@ const attributionData = {
"ruin"
]
},
+ {
+ prefix: "./media/characters/robin/",
+ files: [
+ { name: "front.svg", source: "https://www.furaffinity.net/view/16687024/" }
+ ],
+ authors: [
+ "starswirls"
+ ],
+ owners: [
+ "eremitic"
+ ]
+ },
+ {
+ prefix: "./media/characters/saian/",
+ files: [
+ { name: "side.svg", source: "https://www.furaffinity.net/view/29652291/ " },
+ { name: "maw.svg", source: "https://www.furaffinity.net/view/29652291/ " },
+ ],
+ authors: [
+ "kuppy"
+ ],
+ owners: [
+ "eremitic"
+ ]
+ },
//characters
{
prefix: "./media/fiction/halo/halo/",
@@ -11772,6 +11797,18 @@ const attributionData = {
"name": "Ruin",
"url": null,
},
+ "eremitic": {
+ "name": "Eremitic",
+ "url": "https://www.furaffinity.net/user/eremitic",
+ },
+ "starswirls": {
+ "name": "StarSwirls",
+ "url": " https://www.furaffinity.net/user/starswirls",
+ },
+ "kuppy": {
+ "name": "Kuppy",
+ "url": "https://www.furaffinity.net/user/kuppy",
+ },
}
}
diff --git a/media/characters/robin/front.svg b/media/characters/robin/front.svg
new file mode 100644
index 00000000..ce54dd5d
--- /dev/null
+++ b/media/characters/robin/front.svg
@@ -0,0 +1,150 @@
+
+
+
diff --git a/media/characters/saian/maw.svg b/media/characters/saian/maw.svg
new file mode 100644
index 00000000..fcb19095
--- /dev/null
+++ b/media/characters/saian/maw.svg
@@ -0,0 +1,198 @@
+
+
+
diff --git a/media/characters/saian/side.svg b/media/characters/saian/side.svg
new file mode 100644
index 00000000..6eafedae
--- /dev/null
+++ b/media/characters/saian/side.svg
@@ -0,0 +1,305 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 9570b489..e1befd4f 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -19094,6 +19094,59 @@ characterMakers.push(() => makeCharacter(
]
))
+characterMakers.push(() => makeCharacter(
+ { name: "Robin" },
+ {
+ front: {
+ height: math.unit(5, "feet"),
+ weight: math.unit(106, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/robin/front.svg",
+ extra: 862/799,
+ bottom: 42.4/914.8856
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(5, "feet"),
+ default: true
+ },
+ ]
+))
+
+characterMakers.push(() => makeCharacter(
+ { name: "Saian" },
+ {
+ side: {
+ height: math.unit(3, "feet"),
+ weight: math.unit(225, "lb"),
+ name: "Side",
+ image: {
+ source: "./media/characters/saian/side.svg",
+ extra: 566/356,
+ bottom: 79.7/643
+ }
+ },
+ maw: {
+ height: math.unit(2.85, "feet"),
+ name: "Maw",
+ image: {
+ source: "./media/characters/saian/maw.svg"
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(3, "feet"),
+ default: true
+ },
+ ]
+))
+
//characters
function makeCharacters() {