diff --git a/media/attribution.js b/media/attribution.js
index e16154cc..d7ca32c7 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -11647,6 +11647,19 @@ const attributionData = {
"immaturecontent"
]
},
+ {
+ prefix: "./media/characters/hydra/",
+ files: [
+ { name: "normal.svg", source: null },
+ { name: "smol.svg", source: null },
+ ],
+ authors: [
+ "hydra"
+ ],
+ owners: [
+ "hydra"
+ ]
+ },
//characters
{
prefix: "./media/dildos/chance/",
@@ -16042,6 +16055,10 @@ const attributionData = {
"name": "Follower of Dionysus",
"url": "https://www.furaffinity.net/user/followerofdionysus/"
},
+ "hydra": {
+ "name": "Hydra",
+ "url": "https://twitter.com/anuramous"
+ },
}
}
diff --git a/media/characters/hydra/normal.svg b/media/characters/hydra/normal.svg
new file mode 100644
index 00000000..26258aef
--- /dev/null
+++ b/media/characters/hydra/normal.svg
@@ -0,0 +1,222 @@
+
+
+
diff --git a/media/characters/hydra/smol.svg b/media/characters/hydra/smol.svg
new file mode 100644
index 00000000..1a452e64
--- /dev/null
+++ b/media/characters/hydra/smol.svg
@@ -0,0 +1,111 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index a28e26ad..95b6b3c6 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -29585,6 +29585,39 @@ characterMakers.push(() => makeCharacter(
]
))
+characterMakers.push(() => makeCharacter(
+ { name: "Hydra", species: ["frog"], tags: ["anthro"] },
+ {
+ normal: {
+ height: math.unit(4 + 6/12, "feet"),
+ weight: math.unit(150, "lb"),
+ name: "Normal",
+ image: {
+ source: "./media/characters/hydra/normal.svg",
+ extra: 2833/2634,
+ bottom: 68/2901
+ }
+ },
+ smol: {
+ height: math.unit(0.705, "inches"),
+ weight: math.unit(150, "lb"),
+ name: "Smol",
+ image: {
+ source: "./media/characters/hydra/smol.svg",
+ extra: 2715/2540,
+ bottom: 0/2715
+ }
+ },
+ },
+ [
+ {
+ name: "Normal",
+ height: math.unit(4 + 6/12, "feet"),
+ default: true
+ }
+ ]
+))
+
//characters
function makeCharacters() {