diff --git a/index.html b/index.html
index 05ebd27..eb21566 100644
--- a/index.html
+++ b/index.html
@@ -2,7 +2,7 @@
- Prototype 2
+ FLEDGLING
diff --git a/packaging/gif1.gif b/packaging/gif1.gif
new file mode 100644
index 0000000..b0f6cb5
Binary files /dev/null and b/packaging/gif1.gif differ
diff --git a/packaging/gif2.gif b/packaging/gif2.gif
new file mode 100644
index 0000000..49a5d6b
Binary files /dev/null and b/packaging/gif2.gif differ
diff --git a/packaging/gif3.gif b/packaging/gif3.gif
new file mode 100644
index 0000000..ef75391
Binary files /dev/null and b/packaging/gif3.gif differ
diff --git a/packaging/thumbnail.png b/packaging/thumbnail.png
new file mode 100644
index 0000000..72bb3d6
Binary files /dev/null and b/packaging/thumbnail.png differ
diff --git a/src/endgamemodal.ts b/src/endgamemodal.ts
index 3275773..6cba8ce 100644
--- a/src/endgamemodal.ts
+++ b/src/endgamemodal.ts
@@ -29,10 +29,7 @@ export class EndgameModal {
this.#selectedSuccessor = null;
this.#selectedWish = null;
this.#ending = null;
-
this.#playedSound = false;
-
- // this.show(getScorer().pickEnding());
}
get isShown(): boolean {
@@ -44,6 +41,7 @@ export class EndgameModal {
this.#selectedSuccessor = null;
this.#selectedWish = null;
this.#ending = ending;
+ this.#playedSound = false;
}
update() {
diff --git a/src/thralls.ts b/src/thralls.ts
index 2e26c8f..edbb45e 100644
--- a/src/thralls.ts
+++ b/src/thralls.ts
@@ -141,7 +141,7 @@ export let thrallParty = table.add({
itemPickupMessage:
"This antique wedding ring looks like it was worth at least fifty big blinds.",
deliveryMessage:
- '"Oh, that? Yeah, I won it." And then lost it, apparently.\n\nHe\'s elated. He will never leave.',
+ '"Oh, that? Yeah, I won it." And then lost it, apparently.\n\nHe\'s elated.',
rewardMessage: "Garrett showers you with INT!",
rewardCallback: (spawn) => {
for (let i = 0; i < 12; i++) {
@@ -217,7 +217,7 @@ export let thrallLore = table.add({
itemPickupMessage:
"You can't see yourself in this antique silver mirror. On the other hand, they say silver is effective against wolves.",
deliveryMessage:
- "Lupin looks at his own reflection -- with interest, confusion, dismissal, and then deep satisfaction. He loves it. He will never leave.",
+ "Lupin looks for his own reflection -- with interest, confusion, dismissal, and then deep satisfaction.",
rewardMessage: "Lupin showers you with AGI!",
rewardCallback: (spawn) => {
for (let i = 0; i < 12; i++) {
@@ -290,7 +290,7 @@ export let thrallBat = table.add({
itemPickupMessage:
"This particular instance of gator food resembles an infamous Aotearoan entree: colonial goose.",
deliveryMessage:
- 'Monica salivates. "This is... this is... simply exquisite!"\n\nShe is happy. She will never leave.',
+ 'Monica salivates. "This is... this is... simply exquisite!"',
rewardMessage: "Monica showers you with CHA and INT!",
rewardCallback: (spawn) => {
for (let i = 0; i < 8; i++) {
@@ -366,7 +366,7 @@ export let thrallCharm = table.add({
itemPickupMessage:
"Your photo is going to be in a lot of places if it gets out, but you've got the original.",
deliveryMessage:
- "Renfield inhales sharply and widens his stance, trying to hide his physical reaction to your face. He is elated and will never leave.",
+ "Renfield inhales sharply and widens his stance, trying to hide his physical reaction to your face. He is elated.",
rewardMessage: "Renfield showers you with PSI!",
rewardCallback: (spawn) => {
for (let i = 0; i < 12; i++) {
@@ -440,7 +440,7 @@ export let thrallStealth = table.add({
itemPickupMessage:
"The freezer is empty except for this frozen kobold, who mutters something about collecting blood for its master.",
deliveryMessage:
- "\"That? That's not mine.\" But she wants it. Now it's hers. She will never leave.",
+ "\"That? That's not mine.\" But she wants it. Now it's hers.",
rewardMessage: "Narthyss showers you with CHA and AGI!",
rewardCallback: (spawn) => {
for (let i = 0; i < 8; i++) {
@@ -517,7 +517,7 @@ export let thrallStare = table.add({
itemPickupMessage:
"This glinting gear would be perfect for a malfunctioning robot.",
deliveryMessage:
- "Ridley admires the gear but -- to your surprise -- refuses to jam it into its brain.\n\nThe pup is elated and will never leave.",
+ "Ridley admires the gear but -- to your surprise -- refuses to jam it into its brain.\n\nThe pup is elated.",
rewardMessage: "Ridley showers you with EXP!",
rewardCallback: (spawn) => {
for (let i = 0; i < 12; i++) {
diff --git a/tsconfig.json b/tsconfig.json
index a4883f2..e3bd1ba 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,9 +1,9 @@
{
"compilerOptions": {
- "target": "ES2020",
+ "target": "ES2023",
"useDefineForClassFields": true,
"module": "ESNext",
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "lib": ["ES2023", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
/* Bundler mode */
diff --git a/vite.config.js b/vite.config.js
new file mode 100644
index 0000000..4fd67e7
--- /dev/null
+++ b/vite.config.js
@@ -0,0 +1,10 @@
+// vite.config.js
+import { defineConfig } from "vite";
+
+export default defineConfig({
+ base: "",
+ minify: false,
+ build: {
+ target: "esnext",
+ },
+});