From 506e36b80188cb3b6663aaaeb1f534805a451915 Mon Sep 17 00:00:00 2001 From: Ethan J Lewis Date: Sat, 9 May 2026 09:36:28 -0500 Subject: [PATCH] refactor(mystery): remove story.ts; endings live in markdown --- src/world/story.ts | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/world/story.ts diff --git a/src/world/story.ts b/src/world/story.ts deleted file mode 100644 index 5fdcf9e..0000000 --- a/src/world/story.ts +++ /dev/null @@ -1,17 +0,0 @@ -import type { World } from './types' - -export const endings: World['endings'] = { - true: { - whenFlags: { ratGone: true }, - narration: - 'You stand at the top of the stair. The thing below has settled. The door behind you opens, and outside, finally, is morning.', - }, - wrong: { - whenFlags: {}, - narration: '', // unreachable in sample world - }, - bad: { - whenFlags: {}, - narration: '', // unreachable in sample world - }, -}