+
@@ -554,12 +555,10 @@ const [gpgKey, sshKey] = await Promise.all([
return;
}
- interface TippyTooltipEvent extends Event {
- detail: {
- target: HTMLElement;
- content: string;
- };
- }
+ type TippyTooltipEvent = CustomEvent<{
+ target: HTMLElement;
+ content: string;
+ }>;
document.addEventListener("tippyTooltip", (e: Event) => {
const { target, content } = (e as TippyTooltipEvent).detail;
diff --git a/src/pages/robots.txt.ts b/src/pages/robots.txt.ts
index f775342..fc27951 100644
--- a/src/pages/robots.txt.ts
+++ b/src/pages/robots.txt.ts
@@ -2,7 +2,13 @@ import type { APIRoute } from "astro";
import { AI_BOTS } from "@data/ai_bots";
export const GET: APIRoute = async () => {
- const robots = [AI_BOTS.map((bot) => `User-agent: ${bot}`), "Disallow: /", "", "User-agent: *", "Disallow: .htaccess"]
+ const robots = [
+ AI_BOTS.map((bot) => `User-agent: ${bot}`),
+ "Disallow: /",
+ "",
+ "User-agent: *",
+ "Disallow: /.htaccess",
+ ]
.flat()
.join("\n");
diff --git a/src/pages/sam_brendan.astro b/src/pages/sam_brendan.astro
index 0d8afb4..1dcfe15 100644
--- a/src/pages/sam_brendan.astro
+++ b/src/pages/sam_brendan.astro
@@ -7,16 +7,19 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
---
-
+
+
+
+
Sam Brendan
-
+
Sam Brendan (or
- simply Sam), also going by Bad Manners, is a mimic x maned wolf hybrid. The main color of his fur is lime green, with light teal and white details. His most noticeable feature,
- however, is the metal briefcase that he has in lieu of a face – the mimic portion of his body.
+ simply Sam), also going by Bad Manners, is
+ a mimic x maned wolf hybrid. The main color of his fur is lime green, with light
+ teal and white details. His most noticeable feature, however, is the metal briefcase that he has in lieu of a
+ face – the mimic portion of his body.
@@ -48,7 +51,7 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
>. Click to view a high quality version.
-
+
He has big, pointy, forward-facing ears, with big tufts in a light teal-to-white gradient coming out from the
inside. The rest of his head is different from a regular maned wolf's, however. Everything from the top of his
forehead down to the front of his neck is replaced by a metal briefcase ₋ including his eyes and snout –
@@ -57,12 +60,12 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
– all three clamp down towards the front. There is no discernible unlocking mechanism for the latches. On
the flat sides, the briefcase has several thin ridges across the width.
-
+
His mimic half can split in half longitudinally to reveal his green maw, with irregular and crooked white fangs,
muscular buccinators on the sides, and a long prehensile and sticky tongue that is pastel yellow at the tip. It
is connected to his lime-green digestive system.
-
+
Sam's body is slim, and his claws are short and white. His extremities are also white (instead of dark like most
maned wolves). His upper paws are similar to hands, his digitigrade feet have lime green pads, and his fluffy
tail is medium in size. These limbs connect to the lime green on his torso with a light teal gradient. The
@@ -101,12 +104,12 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
>. Click to view a high quality version.
-
+
Sam identifies as male, and uses he/him or and they/them
-
+
Due to his inability to display facial expressions, he usually resorts to stereotypical conveyances of emotions
by sticking adhesive accessories on the briefcase. For this purpose, he can make use of googly eyes (his
favorite accessories), removable paint and powder, stickers (e.g. to simulate smiles or expressions), and more.
He dislikes being nicknamed Briefcase or anything along those lines but is fine being called by either of his
species. It's very rare for him to ever open his case.
-
+
He's quite self-conscious about his mimic maw and normally avoids showing it in public. These factors lead to
him usually eating alone, as well as being confused and flustered by people who seem keenly interested in his
maw. However, in specific moods (such as vorish ones), he has no qualms about displaying and using his maw. He
@@ -133,7 +136,7 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
Abilities
-
+
-
Mimicking voices or simple sounds, and speak without moving his mouth.
@@ -156,14 +159,14 @@ import EnhancedTooltips from "@components/EnhancedTooltips.astro";
Sensorial report
-
+
His mimic parts (henceforth referred to as 'face') are mostly organic, but still contain traces of metallic
elements, making non-invasive examinations such as X-ray and MRI difficult. However, stimulation through short
electrical impulses at the junction between his head and his face results in messages reaching the brain,
indicating that there is a rich nervous network through the seam. The following data has been collected based on
empirical observations and Sam's self-reporting.
-
+
-
Sense of sight: Mimics' skins are photosensitive, and Sam's face similarly has almost
360° of vision, with minor loss of focus outside the center. This ability is restricted by perceiving the world
diff --git a/src/pages/terms_of_service.astro b/src/pages/terms_of_service.astro
index ff2c3e0..1132c07 100644
--- a/src/pages/terms_of_service.astro
+++ b/src/pages/terms_of_service.astro
@@ -8,6 +8,10 @@ import { TOS_COMMISSION_STATUS, TOS_UPDATED_AT } from "@data/tos";
+
@@ -32,23 +36,23 @@ import { TOS_COMMISSION_STATUS, TOS_UPDATED_AT } from "@data/tos";