diff --git a/media/attribution.js b/media/attribution.js
index 4fd434f7..75fe2be7 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -6329,6 +6329,42 @@ const attributionData = {
"flamestar"
]
},
+ {
+ prefix: "./media/characters/aspen/",
+ files: [
+ { name: "side.svg", source: "https://fidverse.fandom.com/wiki/Aspen" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/sheila-wolf/",
+ files: [
+ { name: "side.svg", source: "https://fidverse.fandom.com/wiki/Sheila" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/michelle/",
+ files: [
+ { name: "side.svg", source: "https://fidverse.fandom.com/wiki/Michelle" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
//characters
{
prefix: "./media/food/animals/",
diff --git a/media/characters/aspen/side.svg b/media/characters/aspen/side.svg
new file mode 100644
index 00000000..1a925dcb
--- /dev/null
+++ b/media/characters/aspen/side.svg
@@ -0,0 +1,108 @@
+
+
+
diff --git a/media/characters/michelle/side.svg b/media/characters/michelle/side.svg
new file mode 100644
index 00000000..802abbd4
--- /dev/null
+++ b/media/characters/michelle/side.svg
@@ -0,0 +1,144 @@
+
+
+
diff --git a/media/characters/sheila-wolf/side.svg b/media/characters/sheila-wolf/side.svg
new file mode 100644
index 00000000..9f8eb0cc
--- /dev/null
+++ b/media/characters/sheila-wolf/side.svg
@@ -0,0 +1,127 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 8cd95f6d..6ccdfb2c 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -15326,6 +15326,82 @@ characterMakers["Max Calore"] = () => {
]
)
};
+
+characterMakers["Aspen"] = () => {
+ return makeCharacter(
+ "Aspen",
+ "Fidchell",
+ {
+ side: {
+ height: math.unit(2 + 8/12, "feet"),
+ weight: math.unit(99, "lb"),
+ name: "Side",
+ image: {
+ source: "./media/characters/aspen/side.svg",
+ extra: 152/97,
+ bottom: 0.032
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(2 + 8/12, "feet")
+ },
+ ]
+ )
+};
+
+characterMakers["Sheila (Wolf)"] = () => {
+ return makeCharacter(
+ "Sheila (Wolf)",
+ "Fidchell",
+ {
+ side: {
+ height: math.unit(3 + 2/12, "feet"),
+ weight: math.unit(224, "lb"),
+ name: "Side",
+ image: {
+ source: "./media/characters/sheila-wolf/side.svg",
+ extra: 179/112,
+ bottom: 0.03
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(3 + 2/12, "feet")
+ },
+ ]
+ )
+};
+
+characterMakers["Michelle"] = () => {
+ return makeCharacter(
+ "Michelle",
+ "Fidchell",
+ {
+ side: {
+ height: math.unit(1 + 9/12, "feet"),
+ weight: math.unit(38, "lb"),
+ name: "Side",
+ image: {
+ source: "./media/characters/michelle/side.svg",
+ extra: 147/64,
+ bottom: 0.03
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(1 + 9/12, "feet")
+ },
+ ]
+ )
+};c
+
//characters
function makeCharacters() {