refactor(mystery): remove story.ts; endings live in markdown

This commit is contained in:
2026-05-09 09:36:28 -05:00
parent 1b992642ec
commit 506e36b801
-17
View File
@@ -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
},
}