diff --git a/media/attribution.js b/media/attribution.js
index 709a13bd..53d21f8d 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -288,6 +288,19 @@ const attributionData = {
"kurrikage"
]
},
+ {
+ prefix: "./media/characters/chiros/",
+ files: [
+ { name: "front.svg", source: "https://www.furaffinity.net/view/33799727/" },
+ { name: "side.svg", source: "https://www.furaffinity.net/view/33799727/" },
+ ],
+ authors: [
+ "kiguren"
+ ],
+ owners: [
+ "chiropica"
+ ]
+ },
{
prefix: "./media/characters/cibus/",
files: [
@@ -1118,6 +1131,10 @@ const attributionData = {
name: "Chesta",
url: "https://www.furaffinity.net/user/chesta"
},
+ "chiropica": {
+ name: "Chiropica",
+ url: "https://www.furaffinity.net/user/chiropica/"
+ },
"citrinelle": {
name: "Citrinelle",
url: "https://twitter.com/Citrinelle"
@@ -1242,6 +1259,10 @@ const attributionData = {
name: "KCLT",
url: "https://www.furaffinity.net/user/kclt"
},
+ "kiguren": {
+ name: "Kiguren",
+ url: "https://www.furaffinity.net/user/kiguren"
+ },
"kononiko": {
name: "Kononiko",
url: "https://www.furaffinity.net/user/konokono"
diff --git a/media/characters/chiros/front.svg b/media/characters/chiros/front.svg
new file mode 100644
index 00000000..221e09b7
--- /dev/null
+++ b/media/characters/chiros/front.svg
@@ -0,0 +1,169 @@
+
+
+
diff --git a/media/characters/chiros/side.svg b/media/characters/chiros/side.svg
new file mode 100644
index 00000000..5dcd72e8
--- /dev/null
+++ b/media/characters/chiros/side.svg
@@ -0,0 +1,88 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 786c18b9..ccd1ef87 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5674,6 +5674,40 @@ characterMakers["Daniel"] = () => {
)
};
+characterMakers["Chiros"] = () => {
+ return makeCharacter(
+ "Chiros",
+ "Chiropica",
+ {
+ front: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(88, "lbs"),
+ name: "Front",
+ image: {
+ source: "./media/characters/chiros/front.svg",
+ extra: 306/226
+ }
+ },
+ side: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(88, "lbs"),
+ name: "Side",
+ image: {
+ source: "./media/characters/chiros/side.svg",
+ extra: 306/226
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(6, "cm"),
+ default: true
+ },
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];