diff --git a/media/attribution.js b/media/attribution.js
index c5d0ea0a..c0c4c323 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -10030,6 +10030,45 @@ const attributionData = {
"maxene-sita"
]
},
+ {
+ prefix: "./media/characters/maia/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Maia" },
+ { name: "back.svg", source: "https://fidverse.fandom.com/wiki/Maia" },
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/jabaro/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Jabaro" },
+ { name: "back.svg", source: "https://fidverse.fandom.com/wiki/Jabaro" },
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/risa/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Risa" },
+ { name: "back.svg", source: "https://fidverse.fandom.com/wiki/Risa" },
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
//characters
{
prefix: "./media/dildos/chance/",
diff --git a/media/characters/jabaro/back.svg b/media/characters/jabaro/back.svg
new file mode 100644
index 00000000..af310477
--- /dev/null
+++ b/media/characters/jabaro/back.svg
@@ -0,0 +1,526 @@
+
+
+
diff --git a/media/characters/jabaro/front.svg b/media/characters/jabaro/front.svg
new file mode 100644
index 00000000..d2fe35da
--- /dev/null
+++ b/media/characters/jabaro/front.svg
@@ -0,0 +1,647 @@
+
+
+
diff --git a/media/characters/maia/back.svg b/media/characters/maia/back.svg
new file mode 100644
index 00000000..29fee2af
--- /dev/null
+++ b/media/characters/maia/back.svg
@@ -0,0 +1,174 @@
+
+
+
diff --git a/media/characters/maia/front.svg b/media/characters/maia/front.svg
new file mode 100644
index 00000000..899d7a86
--- /dev/null
+++ b/media/characters/maia/front.svg
@@ -0,0 +1,200 @@
+
+
+
diff --git a/media/characters/risa/back.svg b/media/characters/risa/back.svg
new file mode 100644
index 00000000..f8f7c5ea
--- /dev/null
+++ b/media/characters/risa/back.svg
@@ -0,0 +1,268 @@
+
+
+
diff --git a/media/characters/risa/front.svg b/media/characters/risa/front.svg
new file mode 100644
index 00000000..ed374e8c
--- /dev/null
+++ b/media/characters/risa/front.svg
@@ -0,0 +1,614 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index fe595b41..ebb2007d 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -24923,6 +24923,103 @@ characterMakers.push(() => makeCharacter(
]
))
+characterMakers.push(() => makeCharacter(
+ { name: "Maia", species: ["mew"], tags: ["feral"] },
+ {
+ front: {
+ height: math.unit(3 + 4/12, "feet"),
+ weight: math.unit(70, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/maia/front.svg",
+ extra: 227/219.5,
+ bottom: 40 / 267
+ }
+ },
+ back: {
+ height: math.unit(3 + 4/12, "feet"),
+ weight: math.unit(70, "lb"),
+ name: "Back",
+ image: {
+ source: "./media/characters/maia/back.svg",
+ extra: 237/225
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(3 + 4/12, "feet"),
+ default: true
+ },
+ ]
+))
+
+characterMakers.push(() => makeCharacter(
+ { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
+ {
+ front: {
+ height: math.unit(5 + 10/12, "feet"),
+ weight: math.unit(197, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/jabaro/front.svg",
+ extra: 225/216,
+ bottom: 5.06/230
+ }
+ },
+ back: {
+ height: math.unit(5 + 10/12, "feet"),
+ weight: math.unit(197, "lb"),
+ name: "Back",
+ image: {
+ source: "./media/characters/jabaro/back.svg",
+ extra: 225/219,
+ bottom: 1.9/227
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(5 + 10/12, "feet"),
+ default: true
+ },
+ ]
+))
+
+characterMakers.push(() => makeCharacter(
+ { name: "Risa", species: ["corvid"], tags: ["anthro"] },
+ {
+ front: {
+ height: math.unit(5 + 8/12, "feet"),
+ weight: math.unit(139, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/risa/front.svg",
+ extra: 270/260,
+ bottom: 11.2/282
+ }
+ },
+ back: {
+ height: math.unit(5 + 8/12, "feet"),
+ weight: math.unit(139, "lb"),
+ name: "Back",
+ image: {
+ source: "./media/characters/risa/back.svg",
+ extra: 264/255,
+ bottom: 4/268
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(5 + 8/12, "feet"),
+ default: true
+ },
+ ]
+))
//characters
function makeCharacters() {