diff --git a/media/attribution.js b/media/attribution.js
index c89c99fa..1c856f8c 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -64,6 +64,19 @@ const attributionData = {
]
},
+ {
+ prefix: "./media/characters/akane-sato/",
+ files: [
+ { name: "front.svg", source: "https://twitter.com/AkaneSato99/status/1191178914971951104" },
+ { name: "back.svg", source: "https://twitter.com/AkaneSato99/status/1191178914971951104" },
+ ],
+ authors: [
+ "collin-scorpio"
+ ],
+ owners: [
+ "akane-sato-99"
+ ]
+ },
{
prefix: "./media/characters/akari/",
files: [
@@ -997,6 +1010,10 @@ const attributionData = {
},
],
people: {
+ "akane-sato-99": {
+ name: "Akane Sato",
+ url: "https://twitter.com/AkaneSato99"
+ },
"alexander-madyankin": {
name: "Alexander Madyankin",
url: "https://madyankin.name/"
@@ -1061,6 +1078,10 @@ const attributionData = {
name: "clown-grin",
url: "https://www.furaffinity.net/user/clown-grin"
},
+ "collin-scorpio": {
+ name: "CollinScorpio",
+ url: "https://www.furaffinity.net/user/collinscorpio/"
+ },
"combat-raccoon": {
name: "CombatRaccoon",
url: "https://www.furaffinity.net/user/combatraccoon/"
diff --git a/media/characters/akane-sato/back.svg b/media/characters/akane-sato/back.svg
new file mode 100644
index 00000000..e73d7f8e
--- /dev/null
+++ b/media/characters/akane-sato/back.svg
@@ -0,0 +1,82 @@
+
+
+
diff --git a/media/characters/akane-sato/front.svg b/media/characters/akane-sato/front.svg
new file mode 100644
index 00000000..71532bdc
--- /dev/null
+++ b/media/characters/akane-sato/front.svg
@@ -0,0 +1,80 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 0bbb47c8..5647b064 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -5534,6 +5534,48 @@ characterMakers["Andrew Cooper"] = () => {
)
};
+characterMakers["Akane Sato"] = () => {
+ return makeCharacter(
+ "Akane Sato",
+ "Vonadi",
+ {
+ front: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(180, "lbs"),
+ name: "Front",
+ image: {
+ source: "./media/characters/akane-sato/front.svg",
+ extra: 1219/1140
+ }
+ },
+ back: {
+ height: math.unit(6, "feet"),
+ weight: math.unit(180, "lbs"),
+ name: "Back",
+ image: {
+ source: "./media/characters/akane-sato/back.svg",
+ extra: 1219/1170
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(2.5, "meters")
+ },
+ {
+ name: "Macro",
+ height: math.unit(250, "meters"),
+ default: true
+ },
+ {
+ name: "Megamacro",
+ height: math.unit(25, "km")
+ }
+ ]
+ )
+};
+
function makeCharacters() {
const results = [];