diff --git a/media/attribution.js b/media/attribution.js
index 32fa0fd4..9a4d8721 100644
--- a/media/attribution.js
+++ b/media/attribution.js
@@ -20397,6 +20397,20 @@ const attributionData = {
                 "hungrybrook"
             ]
         },
+        {
+            prefix: "./media/characters/squishi/",
+            files: [
+                { name: "front.svg", source: "https://twitter.com/bootysquish/status/1436870520105017345" },
+                { name: "side.svg", source: "https://twitter.com/bootysquish/status/1436870520105017345" },
+                { name: "back.svg", source: "https://twitter.com/bootysquish/status/1436870520105017345" },
+            ],
+            authors: [
+                "scruff"
+            ],
+            owners: [
+                "bootysquish"
+            ]
+        },
         //characters
         {
             prefix: "./media/fiction/halo/halo/",
@@ -28456,6 +28470,10 @@ const attributionData = {
             "name": "trinity-fate62",
             "url": "https://twitter.com/trinityfate62"
         },
+        "bootysquish": {
+            "name": "bootysquish",
+            "url": "https://twitter.com/bootysquish"
+        },
     }
 }
 
diff --git a/media/characters/squishi/back.svg b/media/characters/squishi/back.svg
new file mode 100644
index 00000000..86a25cd7
--- /dev/null
+++ b/media/characters/squishi/back.svg
@@ -0,0 +1,442 @@
+
+
+
diff --git a/media/characters/squishi/front.svg b/media/characters/squishi/front.svg
new file mode 100644
index 00000000..d43f40b2
--- /dev/null
+++ b/media/characters/squishi/front.svg
@@ -0,0 +1,574 @@
+
+
+
diff --git a/media/characters/squishi/side.svg b/media/characters/squishi/side.svg
new file mode 100644
index 00000000..fd5535f6
--- /dev/null
+++ b/media/characters/squishi/side.svg
@@ -0,0 +1,345 @@
+
+
+
diff --git a/presets/characters.js b/presets/characters.js
index 709eaf98..5d1b4561 100644
--- a/presets/characters.js
+++ b/presets/characters.js
@@ -2133,6 +2133,10 @@ const speciesData = {
       name: "Serval",
       parents: ["cat"]
     },
+    "swampert": {
+      name: "Swampert",
+      parents: ["pokemon"]
+    },
 }
 
 //species
@@ -56476,6 +56480,73 @@ characterMakers.push(() => makeCharacter(
     ]
 ))
 
+characterMakers.push(() => makeCharacter(
+    { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
+    {
+        front: {
+            height: math.unit(4, "feet"),
+            weight: math.unit(150, "lb"),
+            name: "Front",
+            image: {
+                source: "./media/characters/squishi/front.svg",
+                extra: 1428/1271,
+                bottom: 30/1458
+            },
+            extraAttributes: {
+                "shoeSize": {
+                    name: "Shoe Size",
+                    power: 1,
+                    type: "length",
+                    base: math.unit(14, "ShoeSizeMensUS")
+                },
+            }
+        },
+        side: {
+            height: math.unit(4, "feet"),
+            weight: math.unit(150, "lb"),
+            name: "Side",
+            image: {
+                source: "./media/characters/squishi/side.svg",
+                extra: 1428/1271,
+                bottom: 30/1458
+            },
+            extraAttributes: {
+                "shoeSize": {
+                    name: "Shoe Size",
+                    power: 1,
+                    type: "length",
+                    base: math.unit(14, "ShoeSizeMensUS")
+                },
+            }
+        },
+        back: {
+            height: math.unit(4, "feet"),
+            weight: math.unit(150, "lb"),
+            name: "Back",
+            image: {
+                source: "./media/characters/squishi/back.svg",
+                extra: 1428/1271,
+                bottom: 30/1458
+            },
+            extraAttributes: {
+                "shoeSize": {
+                    name: "Shoe Size",
+                    power: 1,
+                    type: "length",
+                    base: math.unit(14, "ShoeSizeMensUS")
+                },
+            }
+        },
+    },
+    [
+        {
+            name: "Normal",
+            height: math.unit(4, "feet"),
+            default: true
+        },
+    ]
+))
+
 //characters
 
 function makeCharacters() {