diff --git a/assets/typescript/misuzu.ts b/assets/typescript/misuzu.tsx
similarity index 90%
rename from assets/typescript/misuzu.ts
rename to assets/typescript/misuzu.tsx
index 5e570f75..29ae162c 100644
--- a/assets/typescript/misuzu.ts
+++ b/assets/typescript/misuzu.tsx
@@ -111,6 +111,23 @@ window.addEventListener('load', () => {
commentsInit();
forumPostingInit();
forumPollsInit();
+
+ if(Math.round(Math.random() * 1000) > 900)
+
{
+ let ffxPos: number = -1000;
+ const ffx: HTMLElement =
+
+ ;
+
+ const ffxInterval: number = setInterval(() => {
+ ffx.style.bottom = (ffxPos++).toString() + "px";
+ if(ffxPos >= 10)
+ clearInterval(ffxInterval);
+ }, 100);
+
+ document.body.append(ffx);
+ }}/>
});
function loginFormUpdateAvatar(avatarElement: HTMLElement, usernameElement: HTMLInputElement, force: boolean = false): void {
diff --git a/public/images/ffbxexy.png b/public/images/ffbxexy.png
new file mode 100644
index 00000000..b39f205f
Binary files /dev/null and b/public/images/ffbxexy.png differ
diff --git a/tsconfig.json b/tsconfig.json
index 703f692a..f0fa8e41 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -11,6 +11,6 @@
"sourceMap": false,
},
"files": [
- "./assets/typescript/misuzu.ts",
+ "./assets/typescript/misuzu.tsx",
]
}