diff --git a/media/attribution.js b/media/attribution.js
index 1966832b..113bcfec 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -5399,6 +5399,42 @@ const attributionData = {
"fidchell"
]
},
+ {
+ prefix: "./media/characters/igantius/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Igantius" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/mei-li/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Mei_Li" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
+ {
+ prefix: "./media/characters/puru/",
+ files: [
+ { name: "front.svg", source: "https://fidverse.fandom.com/wiki/Puru" }
+ ],
+ authors: [
+ "fidchell"
+ ],
+ owners: [
+ "fidchell"
+ ]
+ },
//characters
{
prefix: "./media/landmarks/",
diff --git a/media/characters/ignatius/front.svg b/media/characters/ignatius/front.svg
new file mode 100644
index 00000000..aebe1893
--- /dev/null
+++ b/media/characters/ignatius/front.svg
@@ -0,0 +1,274 @@
+
+
+
diff --git a/media/characters/mei-li/front.svg b/media/characters/mei-li/front.svg
new file mode 100644
index 00000000..3272d725
--- /dev/null
+++ b/media/characters/mei-li/front.svg
@@ -0,0 +1,261 @@
+
+
+
diff --git a/media/characters/puru/front.svg b/media/characters/puru/front.svg
new file mode 100644
index 00000000..e9405ebc
--- /dev/null
+++ b/media/characters/puru/front.svg
@@ -0,0 +1,90 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 204cdacd..b180b357 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -13576,7 +13576,8 @@ characterMakers["Ashe"] = () => {
[
{
name: "Normal",
- height: math.unit(5 + 11/12, "feet")
+ height: math.unit(5 + 11/12, "feet"),
+ default: true
},
]
)
@@ -13588,8 +13589,8 @@ characterMakers["Beatrix"] = () => {
"Fidchell",
{
front: {
- height: math.unit(6, "feet"),
- weight: math.unit(150, "lb"),
+ height: math.unit(5 + 5/12, "feet"),
+ weight: math.unit(135, "lb"),
name: "Front",
image: {
source: "./media/characters/beatrix/front.svg",
@@ -13601,12 +13602,88 @@ characterMakers["Beatrix"] = () => {
[
{
name: "Normal",
- height: math.unit(6, "feet")
+ height: math.unit(6, "feet"),
+ default: true
+ },
+ ]
+ )
+};
+
+characterMakers["Ignatius"] = () => {
+ return makeCharacter(
+ "Ignatius",
+ "Fidchell",
+ {
+ front: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(150, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/ignatius/front.svg",
+ extra: 245/222 * (1 / (1 - 0.01)),
+ bottom: 0.01
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(5 + 5/12, "feet"),
+ default: true
},
]
)
};
+characterMakers["Mei Li"] = () => {
+ return makeCharacter(
+ "Mei Li",
+ "Fidchell",
+ {
+ front: {
+ height: math.unit(6 + 2/12, "feet"),
+ weight: math.unit(138, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/mei-li/front.svg",
+ extra: 237/229 * (1 / (1 - 0.03)),
+ bottom: 0.03
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(6 + 2/12, "feet")
+ },
+ ]
+ )
+};
+
+characterMakers["Puru"] = () => {
+ return makeCharacter(
+ "Puru",
+ "Fidchell",
+ {
+ front: {
+ height: math.unit(2 + 4/12, "feet"),
+ weight: math.unit(62, "lb"),
+ name: "Front",
+ image: {
+ source: "./media/characters/puru/front.svg",
+ extra: 206/149 * (1 / (1 - 0.06)),
+ bottom: 0.06
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(2 + 4/12, "feet")
+ },
+ ]
+ )
+};
//characters